Recently I been involved in project management and had a brush with MS Project. And I think it is a good tool. Good in the sense of presentation and information. But usability suffer because of the complexity and the flexibility.
I did some normalization of the data components and derived basically 3 things:
1) Users
2) Resource
3) Tasks
A combination of this 3 objects and its relationship basically describe the whole project.
Am I right?
The time factor is contain within the Tasks
The financial component is within the Resource and Task.
The users? Basically is the one overseeing the Tasks.
What do you think?
Simplicity is Elegance
A show case of my world thru the use of my photographs and some of my friends ones too. Picture tells a thousand words and picture don't like to lie.
Project Euler 5 in Python- Partial
def findFactor(num):
factors = []
x = 2
while x < num :
if num%x == 0 :
try:
if factors.index(x) >= 0 :
break
except ValueError:
factors.append(x)
altX = num/x
try:
if factors.index(altX) >= 0 :
break
except ValueError:
factors.append(altX)
x = x+1
factors.sort()
return factors
+Chi Hung Chan
factors = []
x = 2
while x < num :
if num%x == 0 :
try:
if factors.index(x) >= 0 :
break
except ValueError:
factors.append(x)
altX = num/x
try:
if factors.index(altX) >= 0 :
break
except ValueError:
factors.append(altX)
x = x+1
factors.sort()
return factors
+Chi Hung Chan
Subscribe to:
Posts (Atom)