Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

117
votes
64answers
6k views

What are programming lost arts?

Have you ever programmed raw machine code (not for class)? Examined a hex dump with just a hex editor (or, heck, without)? Written your own software floating-point library? Division library? Written a ...
87
votes
14answers
4k 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 ...
84
votes
6answers
9k views

How to grep in the git history?

I have deleted a file or some code in a file sometime in the past. Can I grep in the content (not in the commit messages)? A very poor solution is to grep the log: git log -p | grep However this ...
64
votes
9answers
9k 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 ...
41
votes
4answers
995 views

bool operator ++ and --

Today while writing some Visual C++ code I have come across something which has surprised me. It seems C++ supports ++ (increment) for bool, but not -- (decrement). It this just a random decision, or ...
39
votes
7answers
12k 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. ...
36
votes
7answers
12k views

Good tutorial for using HTML5 History API (Pushstate?)

I am looking into using the HTML5 History API to resolve deep linking problems with AJAX loaded content, but I am struggling to get off the ground. Does any one know of any good resources? I want to ...
35
votes
17answers
1k views

What are the programming religious wars of the generations before our current generation?

Being 32 years old, I did not follow debates in programming, language design, and platforms in the 1960s, 1970s, 1980s, and most of the 1990s. I sometimes hear glimpse of what the major debates were ...
35
votes
8answers
2k views

Why are many ports of languages to .net prefixed with 'Iron'?

Was discussing over lunch why several ports of languages to the .net framework are prefixed with 'Iron'. e.g. IronPython IronRuby IronLisp IronScheme IronPHP Anyone out there know? (language ...
34
votes
2answers
9k views

Is it possible to move/rename files in git and maintain their history?

I would like to rename/move a project subtree in git moving it from '/project/xyz' to '/components/xyz' If I use a plain 'git mv project components' then all the file history for the xyz project ...
33
votes
3answers
798 views

If registers are so blazingly fast, why don't we have more of them?

In 32bit, we got 8 "general purpose" registers. With 64bit, the amount doubles, but it seems independent from the 64bit change itself. Now, if registers are so fast (no memory access), why aren't ...
33
votes
5answers
11k views

How do I combine the first two commits of a Git repository?

Suppose you have a history containing the three commits A, B and C: A-B-C I would like to combine the two commits A and B to one commit AB: AB-C I tried git rebase -i A which opens up my ...
31
votes
4answers
3k views

What happened to Dojo in 2008?

Many of you have seen this graph of Google Trends of popular AJAX frameworks (Dojo, jQuery, YUI). The graph seems to make it clear that interest in Dojo collapsed in the second quarter of 2008, ...
29
votes
27answers
1k views

Programming Concepts That Were “Automated” By Modern Languages

Weird question but here it is. What are the programming concepts that were "automated" by modern languages? What I mean are the concepts you had to manually do before. Here is an example: I have just ...
25
votes
3answers
3k views

How can I view a git log of just one user's commit's?

When using 'git log' how can I filter by user so that I see only commits from that user?
25
votes
13answers
3k views

Why should files end with a newline?

I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?
25
votes
15answers
4k 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 ...
24
votes
8answers
956 views

System where 1 byte != 8 bit?

All the time I read sentences like don't rely on 1 byte being 8 bit in size use CHAR_BIT instead of 8 as a constant to convert between bits and bytes et cetera. What real life systems are ...
24
votes
11answers
2k views

What Java feature(s) historically started as a pattern and is now a language feature?

I'll be honest. I need help with a homework question that I'm stumped with... Describe something that historically started as a pattern and is now supported with a language feature in Java.
24
votes
9answers
1k 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 ...
23
votes
18answers
3k views

(For what) Are Fortran, Cobol and Co. used today?

I'm a relatively young programmer and so I don't really know much about languages like Fortran or Cobol that have their origins in the beginning of modern informatics. I'm a bit confused because it ...
22
votes
15answers
1k views

Most expressive algorithm for the history of computing class?

For a history of computing class, it would be useful-and-entertaining to demonstrate a simple algorithm, implemented in different languages. Thus, one will see how programming languages evolve. Such ...
22
votes
21answers
2k 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 ...
21
votes
1answer
185 views

What is the reason for having unreserved identifiers as built-in macros in gcc?

Today I stumbled upon a rather interesting compiler error: int main() { int const unix = 0; // error-line return unix; } Gives the following message with gcc 4.3.2 (yes, ancient...): error: ...
21
votes
10answers
1k views

Are design patterns really language weaknesses?

Should today's patterns be seen as defects or missing features in Java and C++? Subroutine was a design pattern for machine language in the 50s and 60s. Object-Oriented Class was a design pattern ...
21
votes
5answers
1k views

Why are regular expressions called “regular” expressions?

Why are regular expressions called regular expressions?
21
votes
9answers
853 views

The History Behind the Definition of a 'String'

I've never thought about until just now, but I'm not sure why we call strings 'strings'. I'm a .Net programmer, but I know the concept of strings exist in virtually every language. Outside of ...
20
votes
2answers
2k views

Git: How to split up a commit buried in history

I flubbed up my history and want to do some changes to it. Problem is, I have a commit with two unrelated changes, and this commit is surrounded by some other changes in my local (non-pushed) history. ...
20
votes
11answers
1k views

What are the worst examples of moral failure in the history of software engineering? [closed]

Many computer science curricula include a class or at least a lecture on disasters caused by software bugs, such as the Therac-25 incidents or Ariane 5 Flight 501. Indeed, Wikipedia has a list of ...
18
votes
3answers
435 views

Is std::string part of the STL?

(When I say STL, I'm talking about the template library that revolves around containers, iterators, algorithms and functors.) This question came to mind after thinking that a std::string mostly ...
18
votes
7answers
2k views

Why do stacks typically grow downwards?

I know that in the architectures I'm personally familiar with (x86, 6502, etc), the stack typically grows downwards (i.e. every item pushed onto the stack results in a decremented SP, not an ...
18
votes
2answers
4k views

How do I change bash history completion to complete what's already on the line?

I found a command a couple of months ago that made my bash history auto-complete on what's already on the line when pressing the up arrow: $ vim fi [press up] $ vim file.py I'd like to set this ...
18
votes
7answers
15k views

jQuery UI Tabs back button history

Has anyone been able to get jQuery UI Tabs 3(Latest version) working with the back button? I mean if the user hits the back button they should go to the previously visited tab on the page, not a ...
18
votes
5answers
4k views

Why are “control” characters illegal in XML?

There are a variety of characters that are not legally encodeable in XML, e.g. U+0007 ('bell') and U+001B ('escape'). Most of the interesting ones are non-whitespace 'control' characters. It's ...
18
votes
3answers
864 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? ...
16
votes
1answer
207 views

How did malloc and calloc end up with different signatures? [closed]

Possible Duplicate: Why calloc takes two arguments while malloc only one? There are lots of resources describing the difference in functionality between malloc and calloc, but I can't ...
16
votes
4answers
2k views

iPhone call log / history

I'm doing some research on the feasibility of an iPhone application, and can't find any indication in Apple's documentation that an iPhone app can read the call history of the phone, specifically the ...
16
votes
13answers
1k views

What factors led to the development of C# in spite of Java

I wasn't around when all this was happening. But when I look at it now, I see Java appeared in 1995 whereas C# appeared in 2001. And the history section for C# on Wikipedia says only the following. ...
16
votes
3answers
639 views

When did the idea of macros (user-defined code transformation) appear?

I have read McCarthy's 1960 paper on LISP and found no reference to anything that's similar to user-defined macros or normal order evaluation. I was wondering when marcos first appeared in programming ...
16
votes
4answers
455 views

Why is RAISERROR misspelled? Or is it not?

Why isn't RAISERROR spelled RAISEERROR? Where is the second E? I could understand if it were some ancient keyword length constraint, but I wouldn't expect it to be a nine-character limit. Is RAIS ...
16
votes
4answers
452 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 ...
15
votes
30answers
1k views

Significant events in Computer Science [closed]

What were the most significant events or milestones in the history of computer science? I haven't been able to find a potted history, so I thought I'd see what views the SO community had on the ...
15
votes
5answers
1k views

Why are x86 registers named the way they are?

For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there are bytes called CL and DH. I know there must be a convention to all of the names, ...
15
votes
11answers
1k views

WordPerfect programmers refusing to use anything but assembler

There is a version (popularised by Joel Spolsky) attributing the demise of WordPerfect to a refusal of its programmers to use anything but assembler that led to delay of the first WPwin release and as ...
15
votes
8answers
733 views

Programming language history

I'd like to know a little more about the overall development and history of programming. Things like how they came up with syntax and the overall thought process during the design of the older ...
15
votes
3answers
388 views

Where does the term “escaping” originate from?

Does anyone know where the term escaping -- as in "escaping a character in a string" -- originates from? Update: Paul Tomblin's answer, although rather brief, lead to the most compelling evidence. ...
14
votes
2answers
694 views

How to get notified about changes of the history via history.pushState?

So now that HTML5 introduces history.pushState to change the browsers history, websites start using this in combination with Ajax instead of changing the fragment identifier of the URL. Sadly that ...
14
votes
2answers
580 views

Programming Constructs History

Let us research and trace back the origins of language constructs. For example: Constructs Introduced from LISP If-Else Block :"The ubiquitous if-then-else structure, now taken for granted as an ...
14
votes
4answers
3k views

CSS/JavaScript/hacking: Detect :visited styling on a link *without* checking it directly OR do it faster than me

This is for research purposes on http://cssfingerprint.com Consider the following code: <style> div.csshistory a { display: none; color: #00ff00;} div.csshistory a:visited { display: ...
14
votes
8answers
668 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 ...

1 2 3 4 5 15