Tagged Questions

8
votes
14answers
394 views

What are the five priorities for software development?

At another development company I recently saw some project management/workload prioritisation graphs on the wall. I'm used to the maxim "Good, Fast, Cheap: Pick two". But this system used five …
7
votes
12answers
306 views

Priorities for writing code

I've been following SO for a while now, and every so often I see people asking about the fastest way to do something. I certainly acknowledge that code must be well written and even tuned every now …
2
votes
3answers
231 views

Need tips on how to prioritize and schedule a bunch of work items

It took me some time, but I've finally managed to write down all the tasks that need to go into Version 1.0 of the software product I'm working on. The list is almost 1000 items long. We are a …
0
votes
2answers
58 views

Prioritize JavaScript Scripts: Defer Not Working

I need to prioritize scripts so jQuery, Cufon, and my .js files come before Twitter does. I've tried defer="defer" as well as placing scripts in the bottom in the order I want them to execute but all …
0
votes
1answer
83 views

mysql row priority

I have a database table full of some really ugly and messy data. In a seperate table i have a cleaner version of the data and they are linked by an id, but I need to keep the messy dataset and can't …
0
votes
3answers
149 views

How do I extend infix and stack priorities to additional operators?

How would the infix and stack priorities be extended to include the operators <, >, <=, >=, ==, !=, !, &&, and ||? When parsing an infix expression, for example: P + (Q – F) / Y#, …
0
votes
6answers
256 views

What are your top priorities for features in a general purpose programming language?

My definition of general purpose is a bit specific: a general purpose programming language should be able to handle all problem domains, including implementing operating system kernels, device drivers …