74
votes
19answers
2k views
Is Disney’s FastPass Valid and/or Useful Queue Theory
At Disney World, they use a system called Fastpass to create a second, shorter line for popular rides. The idea is that you can wait in the standard line, often with a wait longer than an hour, or …
53
votes
26answers
2k views
What tools/techniques can benefit a solo developer?
Hello,
I am a solo developer, working in a very small web development firm. There is occasional support for development from contractors, but for the most part, if code is written in the office, I …
37
votes
13answers
3k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://beta.stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
20
votes
27answers
3k views
Energy efficient application development
Are there any tools techniques to build more energy efficient applications,
Any articles,rules or best practices for green programming?
14
votes
11answers
601 views
How do I know my XSL is efficient and beautiful?
As a programmer, I am developing programs in procedural and OOP languages for many years now, and I guess I know beautiful and efficient code when I see it (or when I write it).
Recently I started to …
13
votes
13answers
609 views
Efficient workday
What are people's tips for an efficient workday. For example, sometimes I find myself procrastinating over something, generally just putting it off (especially if there is no deadline breathing down …
12
votes
8answers
378 views
Becoming the most efficient one-man team
Like many here, I am a one-man development team. I'm responsible for everything from gathering project requirements, designing concept-screens, planning and developing databases, and writing all code.
…
11
votes
14answers
1k views
How to improve productivity when developing JEE based web applications.
I'd like to know how you address the seemingly low productivity of JEE-based web application development compared to other technology stacks (Seaside, Ruby on Rails, etc).
The constraints are:
The …
11
votes
11answers
727 views
Web-Developer’s Project Template Directory
IMPORTANT: The accepted answer was accepted post-bounty, not necessarily because I felt it was the best answer.
I find myself doing things over and over when starting new projects. I create a …
11
votes
32answers
1k views
What Simple Changes Made the Biggest Improvements to Your Delphi Programs
I have a Delphi 2009 program that handles a lot of data and needs to be as fast as possible and not use too much memory.
What small simple changes have you made to your Delphi code that had the …
11
votes
10answers
4k views
Size of a byte in memory - Java
I have heard mixed opinions over the amount of memory that a byte takes up in a java program.
I am aware you can store no more than +127 in a java byte, and the documentation says that a byte is only …
10
votes
6answers
311 views
Do valid web pages load faster?
I am a fan of valid web pages and always spend time passing new sites through the W3C validator.
When trying to make a case for why companies should validate web pages I quickly thought of …
10
votes
3answers
346 views
Minify an Entire Directory While Keeping Element/Style/Script Relationships?
Do any solutions currnetly exist that can minify an entire project directory? More importantly, do any solutions exist that can shorten classnames, id's, and keep them consistent throughout all …
9
votes
6answers
668 views
Does setting Java objects to null do anything anymore?
I was browsing some old books and found a copy of "Practical Java" by Peter Hagger. In the performance section, there is a recommendation to set object references to null when no longer needed.
In …
9
votes
7answers
1k views
Memory efficiency: One large dictionary or a dictionary of smaller dictionaries?
I'm writing an application in Python (2.6) that requires me to use a dictionary as a data store.
I am curious as to whether or not it is more memory efficient to have one large dictionary, or to …
