3
votes
What is your preferred tool stack for PHP development in the Windows Environment?
For source control in subversion I would only recommend tortoisesvn for small projects. When you start dealing with large repositories, SmartSVN is much faster and easier to use, it integrates with …
27
votes
Good excuses NOT to use version control
It can give a false sense of security. Using a VCS does not imply that your data is safeguarded against system failures, because you need real backups for that.
For small toy project …
5
votes
What should every programmer know?
If you want to be the best possible programmer, you need to understand how the "magic" works. Others have suggested learning about compilers, and that's a good start. I would even say every serious …
1
vote
Humor in code
One of my favorites was a file with in the header something like
// Author: Mike
and a bit later, in a function, something like
// Mike: whoever wrote this code should be put against th …
0
votes
I can learn either C or Java, which one should I choose first? Should I take them concurrently?
You don't want to start with C, because you'll get bogged down in low level details, while you want to focus on the essentials of programming: algorithms, data structures, OO, ... For an absolute b …
3
votes
Is Delphi still a viable choice for development?
The company I work for has a product that's a 2 million line code base, written in Delphi. This product was started in '95, and it has been developed by less than a skeleton crew (average number of …
0
votes
Do you think a software company should impose developers a coding-style?
I would agree that consistency is key. You can't rely on IDE pretty-printing to save the day, because some of your developers may not like using an IDE, and because when you're trawling through a c …
0
votes
The Future of Web Programming Languages
The current trend is towards javascript applications that have offline support, with client-side storage. This is already mostly the model that the google apps use. You can do this today quite easi …
1
vote
What do you do if you cannot resolve a bug?
I've had bugs that took weeks or months before a solution was found, but eventually all bugs do get fixed. Aside from the classical non-debugger bug-tracking techniques like disabling parts of the …
2
votes
What is the single hardest programming skill or concept you have learned?
I would say it's a toss-up between floating point arithmetic (truly comprehending how IEEE-754 works), and theoretical verification (especially of parallel algorithms). But, if I had to pick, I'd p …
8
votes
What’s the toughest bug you ever found and fixed?
The two toughest bugs that come to mind were both in the same type of software, only one was in the web-based version, and one in the windows version.
This product is a floorplan viewer/edi …
0
votes
How many parameters are too many?
It heavily depends on the environment you're working in. Take for example javascript. In javascript the best way to pass in parameters is using objects with key/value pairs, which in practice means …
41
votes
What is your single favorite development tool?
Firebug. Doing web development without it is like typing with one hand instead of two.
…
1
vote
Framework/Language for new web 2.0 sites (2008 and 2009)
Don't get stuck in the mindset of server-side page layout. Consider technologies like SproutCore, GWT or ExtJS which put the layouting code fully on the client, making the server responsible only f …
0
votes
Which programming blog entry opened your eyes and made you do something different as a developer from that moment on?
Mark Pilgrim's excellent blog series dive into accessibility.
It really opened my eyes towards what it means to build accessib …
