226
votes
105answers
16k views
Significant new inventions in computing since 1980
This question arose from comments about different kinds of progress in computing over the last 50 years or so.
I was asked by some of the other participants to raise it as a question to the whole …
76
votes
71answers
8k views
Should I learn C?
Original Question: Should I Learn C?
In the theme of the stackoverflow podcast, here's a fun question: should I learn C? I expect Jeff & Joel will have something to say on this.
Some info on my …
37
votes
15answers
2k views
Why are we using i as a counter in loops
why are we using
for (int i = 0 ; i < count ; i++){ }
why the i
why not
for (int a = 0; a < count; a++){ }
I do it, you do it, everyone does it but WHY?
*edit
I found out an old …
27
votes
133answers
5k views
What dead programming languages do you know?
For the purpose of this question, let's define a dead programming language as one for which you cannot buy a newly manufactured piece of hardware and install an operating system which will let you run …
26
votes
9answers
4k views
History of Django’s popularity
What sequence of events made Django the most popular Python web framework .. and still so? Even though several other frameworks exist.
Note: This question is neither argumentative nor …
25
votes
75answers
3k views
Who in the software world do you admire the most?
In an effort to spark some discussion and to find interesting people that I didn't know about, is there anybody around the software industry that you really admire? Perhaps admire is the wrong choice …
21
votes
7answers
9k views
Help me remember a quote from Alan Kay
Alan Kay was quoted several years ago to the effect that there had been only three new things in software in the preceding 20 years (effectively the lifespan of PCs). One of them was Spreadsheets.
…
18
votes
82answers
2k views
Hello world: what did your first ever computer program do ?
If you can remember that far back, what did the first computer program you ever wrote do (once you had finished debugging it)?
16
votes
9answers
868 views
What _did_ the C operators /\ and \/ do?
Anyone can "declare" ones own operators in C.... that is if one is a C compiler guru and has the source code to the C compiler! ;-)
Further questions to puzzle:
How are these operations done in
…
16
votes
3answers
756 views
Where does ‘.’ and ‘..’ come from?
What's the story behind our massive repitition of './foo' and 'cd ..'. Where do these two '.' and '..' come from? Where could they be seen as a way of navigating a file system tree for the first time?
…
13
votes
8answers
534 views
Historic reason for using periods in version numbers?
Is there a historic reason that periods are used instead of any other separator for software versions?
One of our products was previously version 3.5, and now it's 3.08 -- I'm sure this was …
12
votes
4answers
223 views
History of public/private/protected
How did these keywords and concepts come to life? What were the forces and problems that made them appear? What was the first language to have them?
Actually, it's not just about …
12
votes
19answers
1k views
Why are floating point values so prolific?
So, title says it all. Why are floating point values so prolific in computer programming. Due to problems like rounding errors, and not being able to even accurately represent numbers such as 0.1, I …
12
votes
16answers
1k views
Where did all the java applets go?
When java was young, people were excited about writing applets. They were cool and popular, for a little while. Now, I never see them anymore. Instead we have flash, javascript, and a plethora of …
11
votes
2answers
334 views
Where is the source for Niman’s 13 Minimally Sufficient Commandments?
I have a page (page 1), dated February 2, 1989 that my former boss presented to me, outlining Niman's 13 Minimally Sufficient Commandments for programming. (He recognized that they were dated, making …
