341
votes
599answers
119k views
What real life bad habits has programming given you? [closed]
Programming has given me a lot of bad habits and it continues to give me more everyday. But I have also gotten some bad habits from the mindset that I have put myself in. There sim …
3
votes
7answers
174 views
Casting ints to enums in C#
There is something that I cannot understand in C#. You can cast an out-of-range int into an enum and the compiler does not flinch. Imagine this enum:
enum Colour
{
Red = 1,
…
1
vote
15answers
396 views
What is the fastest sorting algorithm in C++?
If I need to sort 150,000 entries what would be the fastest way for a beginner in C++ to sort that data? All I have learned so far is bubble sort and I know that isn't that effici …
1
vote
6answers
74 views
When does technical documentation violate the DRY principle?
We had a project where things got in a bit of a mess a while ago because of inexperienced developers.
The main issue was the fact that the programmers rushed directly into writin …
84
votes
146answers
7k views
What are things that make a programmer’s life miserable?
What are things that make a programmer's life miserable?
0
votes
2answers
26 views
Where best to place alert/notifications on a website?
What do I mean by alert/notification?
Example is an instant-messaging application, on the event when a user/friend comes online, you receive an alert that they are online - this a …
136
votes
161answers
12k views
What is your longest-held programming assumption that turned out to be incorrect?
I am doing some research into common errors and poor assumptions made by junior (and perhaps senior) software engineers.
What was your longest-held poor assumption that was eventu …
4
votes
2answers
147 views
In your opinion, why is the Go Programming Language useful? [closed]
Possible Duplicate:
What’s your take on the programming language Go?
I was looking at Google's Go Programming Language (Website) and thought, How would this be usefu …
1
vote
5answers
148 views
What standards do you use? [closed]
This question recently came up in work, posed by directors and filtered down the chain
"What standards do you use on a daily basis?"
(This was actually posed to all engineers not …
2
votes
5answers
59 views
How to create the first administrator user of an application?
Consider a simple web application that accepts user logins. Each user can have a profile (read-only, normal, administrator etc) and each profile dictates the user’s rights (he can …
54
votes
321answers
8k views
What’s Your Motto As A Developer/Programmer?
Title says it all... Mine is "Never stop learning"... :)
2
votes
5answers
273 views
Does TDD really stop gold plating?
Questions that I want answers for...
1) Propose one or more mechanism, which could be used to extend TDD to estimate the level of gold plating that exists in an arbitrary Java pro …
69
votes
219answers
12k views
What development book made the most impact on you as a developer?
For me, Head First Design Patterns was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really he …
1
vote
4answers
110 views
What is your take on SPDY, Google’s experimental HTTP replacement?
Google is working on an experimental protocol called SPDY (pronounced "speedy") that supposedly makes the web twice as fast.
The problems with HTTP that SPDY tries to address are: …
56
votes
108answers
5k views
What software for your own personal use did you write?
I don't mean scripts or tools for your work project.
I mean actual software for your personal use, such as party organizer, CD administrator, whatever.
