32
votes
22answers
2k views
Amazing programming achievements
I recently found this article about how some guy managed to write a super mario game in just 14k of javascript code. Ok, it's not a full game, it's not even a full level, but still - 14k of …
30
votes
40answers
2k views
Too “careless” in programming?
I just feel so frustrated right now as I just finished one task.
Seems like every time I program (homework or other stuff), I make stupid mistakes that take me hours and hours to fix, sometimes it …
20
votes
8answers
2k views
Code Katas
How do you practice coding?
I've seen the great Code Katas and also Steve Yegge's Practicing Programming.
Can anyone recommend more interesting exercises?
Thanks!
18
votes
10answers
958 views
Mythical man month 10 lines per developer day - how close on large projects?
Everybody always says that they can beat the "10 lines per developer per day" from the "Mythical Man Month", and starting a project, I can usually get a couple hundred lines in in a day.
But at my …
16
votes
35answers
1k views
Improving the way we write code?
While thinking about software-engineering in general I came across the question why we don't see any improvements in the way we write/document code.
Think about it: There has not been a revolutionary …
14
votes
42answers
2k views
IDE or Text Editor?
Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ?
I heard strong arguments against IDE's (specially from dynamic language programmers) …
14
votes
42answers
2k views
Do you comment your code?
I usually comment "ifs" and write in "human language" what it means, like "checks if it's A or B".
I find it's better for junior programmers that read the code to read what it means first and then …
13
votes
25answers
1k views
What C++ features do you avoid?
Either due to lack of knowledge, fear, or first-hand experience (getting burned) and saying "You know what, just because it's in the language, you don't have to use it."
Quoting Chris Rock: "You can …
9
votes
10answers
351 views
How to get new Motivation after a bad code review
So i presented my code yesterday...after a lot of hard work i was happy to show it to my colleagues. After presentation all that was left was my projects name. Everything else has to change...
They …
8
votes
10answers
328 views
How to code via mental-models, in the absence of a keyboard.
I suffer periodically from carpel tunnel (The "carps" as I shall affectionately call it). In an effort to extend my ability to do programming at least into my thirties (after which I'll have made my …
7
votes
9answers
325 views
7 days of powercoding.
I have 7 free days to code in a row, does anyone have any advice on how I could code the most functional code in this time. I am hoping/willing to get a lot (i am working on a php framework), but …
7
votes
2answers
147 views
What kind-of stats does your company collect to define code / software product quality
Most programming houses / managers i know of can only define quality in terms of the no of bugs made / resolved in retrospect.
However most good programmers can innately sense quality once they …
7
votes
19answers
1k views
What’s the best way to kick ass in programming?
I've been programming since college, was a hobbyist programmer as a kid, but never got serious until I was a freshman. That was almost a decade and a half ago. One thing I've noticed is that when …
6
votes
9answers
350 views
Is it bad practice to nest 2 try catch statements in C#?
Is the following code bad practice?
try //Try Overall Operation
{
try //Try section 1 of operation
{
}
catch(exception ex)
{
…
6
votes
10answers
323 views
Where do you go to discuss programming stuff outside of work?
I've been wanting to brush up on my raw coding/algorithms skills but most of the people at my job aren't all that interested in that side of coding. I've been wanting to find a group of people who …
