Tagged Questions
2327
votes
108answers
446k views
List of freely available programming books
I'm trying to amass a list of programming books that are freely available on the Internet. The books can be about a particular programming language or about computers in general.
What are some ...
1414
votes
328answers
316k views
What is the single most influential book every programmer should read? [closed]
If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?
I expect this list to be varied and to cover a wide ...
1408
votes
296answers
207k views
Hidden Features of C#?
This came to my mind after I learned the following from this question:
where T : struct
We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.
Some ...
1358
votes
190answers
179k views
Hidden features of Python
What are the lesser-known but useful features of the Python programming language?
Try to limit answers to Python core.
One feature per answer.
Give an example and short description of the feature, ...
1000
votes
6answers
45k views
Flash CS4 refuses to let go
I have a Flash project, and it has many source files. I have a fairly heavily-used class, call it Jenine. I recently (and, perhaps, callously) relocated Jenine from one namespace to another. I thought ...
976
votes
123answers
207k views
What IDE to use for Python? [closed]
Caution!
This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
934
votes
38answers
423k views
RegEx match open tags except XHTML self-contained tags
I need to match all of these opening tags:
<p>
<a href="foo">
But not these:
<br />
<hr class="foo" />
I came up with this and wanted to make sure I've got it right. I am ...
915
votes
24answers
84k views
What is the name of this operator: “-->”?
After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code:
...
863
votes
43answers
84k views
The Definitive C++ Book Guide and List [closed]
Unlike many other programming languages, which are often picked up on the go from tutorials found on the Internet, few are able to quickly pick up C++ without studying a good C++ book. It is way too ...
802
votes
7answers
198k views
The *right* JSON content type?
Right I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (I know of), but I'd like to start doing things properly.
I have seen so many purported ...
777
votes
82answers
144k views
What are the lesser known but cool data structures? [closed]
There are some data structures around that are really cool but are unknown to most programmers. Which ones are they?
Everybody knows about linked lists, binary trees, and hashes, but what about Skip ...
751
votes
16answers
97k views
Cycles in family tree software
I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that he has two children with his own ...
711
votes
8answers
85k views
The Definitive Guide To Forms based Website Authentication
Form Based Authentication For Websites
Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, ...
678
votes
117answers
38k views
Most useful free .NET libraries? [closed]
I have used a lot of free .NET libraries, some from Microsoft itself!
Which ones have you found the most useful?
Mathematics
Math.NET Numerics - special functions, linear algebra, probability ...
671
votes
35answers
116k views
Git for beginners: The definitive practical guide [closed]
Ok, after seeing this post by PJ Hyett, I have decided to skip to the end and go with Git.
So what I need is a beginner's practical guide to Git. "Beginner" being defined as someone who knows how to ...
660
votes
6answers
128k views
How do I edit an incorrect commit message in git
I stupidly did a git commit while half asleep, and wrote totally the wrong thing in the commit message, How do I change the commit message? I have not yet pushed the commit to anyone
613
votes
90answers
70k views
Why not use tables for layout in HTML? [closed]
It seems to be the general opinion that tables should not be used for layout in HTML.
Why?
I have never (or rarely to be honest) seen good arguments for this. The usual answers are:
It's good to ...
600
votes
58answers
77k views
Learning to Write a Compiler
Preferred Languages : C/C++, Java, and Ruby
I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and ...
597
votes
15answers
46k views
Twitter image encoding challenge [closed]
If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?
Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that Boojum's ...
595
votes
13answers
102k views
How do emulators work and how are they written?
How do emulators work? When I see NES / SNES or C64 emulators, it astounds me.
Do you have to emulate the processor of those machines by interpreting its particular assembly instructions? What ...
590
votes
6answers
121k views
How to “add existing frameworks” in Xcode 4?
I can't find the good old "Add existing frameworks" option. How do I do this?
We're talking about Xcode 4 DP2 (in the context of iPhone development, as far as it matters...).
579
votes
354answers
238k views
New programming jargon you coined? [closed]
Question
What programming terms have you coined that have taken off in your own circles (i.e. have heard others repeat it)? It might be within your own team, workplace or garnered greater popularity ...
568
votes
10answers
211k views
How do you test if something is hidden with jQuery?
In jQuery, suppose you have an element of some kind that you're hiding and showing, using .hide(), .show() or .toggle(). How do you test to see if that element is currently hidden or visible on the ...
567
votes
41answers
174k views
What is your most productive shortcut with Vim?
I've heard a lot about Vim, both pros and cons.
It really seems you should be (as a developer) faster with Vim than with any other editor.
I'm using Vim to do some basic stuff and I'm at best 10 times ...
563
votes
41answers
55k views
Database development mistakes made by application developers [closed]
What are common database development mistakes made by application developers?
560
votes
14answers
103k views
Plain English explanation of Big O
What is a plain English explanation of Big O? With as little formal definition as possible and simple mathematics.
533
votes
23answers
95k views
What is the Difference Between Mercurial and Git?
I've been using git for some time now on Windows (with msysGit) and I like the idea of distributed source control. Just recently I've been looking at Mercurial (hg) and it looks interesting. However, ...
532
votes
43answers
41k views
What makes PHP a good language? [closed]
I made a tongue-in-cheek comment in another question thread calling PHP a terrible language and it got down-voted like crazy. Apparently there are lots of people here who love PHP.
So I'm genuinely ...
527
votes
19answers
27k views
Is 23,148,855,308,184,500 a magic number, or sheer chance?
News reports such as this one indicate that the above number may have arisen as a programming bug.
A man in the United States popped out
to his local petrol station to buy a
pack of ...
520
votes
10answers
118k views
The Python yield keyword explained
What is the use of the yield keyword in Python? What does it do?
For example, I'm trying to understand this code (**):
def node._get_child_candidates(self, distance, min_dist, max_dist):
if ...
516
votes
13answers
82k views
What and where are the stack and heap
Programming language books usually explain that value types are created on the stack, and reference types created on the heap, without really explaining what these two things are. With my only ...
504
votes
3answers
71k views
How do I find Waldo with Mathematica?
This was bugging me over the weekend: What is a good way to solve those Where's Waldo? ['Wally' outside of North America] puzzles, using Mathematica (image-processing and other functionality)?
Here ...
504
votes
48answers
52k views
I've found my software as cracked download on Internet, what to do?
So, after 6 months of hard work finally released my application. Today I found the first web site where people download it cracked, and I was wondering if any of you fellow programmers know how to ...
498
votes
40answers
28k views
jQuery Tips and Tricks [closed]
Syntax
Shorthand for the ready-event by roosteronacid
Line breaks and chainability by roosteronacid
Nesting filters by Nathan Long
Cache a collection and execute commands on the same line by ...
498
votes
162answers
36k views
What are Code Smells? What is the best way to correct them? [closed]
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
computer program ...
493
votes
7answers
151k views
Git undo last commit
I accidentally added the wrong directory containing my files. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
492
votes
126answers
31k views
Significant new inventions in computing since 1980 [closed]
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 ...
487
votes
18answers
89k views
Undo git add before commit
I mistakenly added files using the command
git add file
I have not yet run git commit.
Is there a way to undo this or remove these files from the commit?
479
votes
116answers
42k views
Common programming mistakes for .NET developers to avoid? [closed]
What are some common mistakes made by .NET developers, and how can we avoid them?
For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.
478
votes
81answers
20k views
Where can one find free software icons / images?
This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software.
I currently have the need for some type of "green checkmark image", and ...
473
votes
8answers
47k views
Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?
I am doing some numerical optimization on a scientific application. One thing I noticed is that, GCC will not recognize pow(a,6), and will call the library function pow, (although it recognizes ...
465
votes
11answers
142k views
How do I clone all remote branches with Git?
I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back.
I'm sure I'm missing something obvious, ...
455
votes
24answers
77k views
Understanding “randomness”
I can't get my head around this, which is more random?
rand()
OR
rand() * rand()
I´m finding it a real brain teaser, could you help me out?
EDIT:
Intuitively I know that the mathematical ...
447
votes
19answers
56k views
How do JavaScript closures work?
Like the old Albert said: "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well, I tried to explain JavaScript closures to a 27-year old friend and completely ...
443
votes
40answers
146k views
Which JavaScript framework (jQuery vs Dojo vs … )?
There are a few JavaScript frameworks/toolsets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient; and
others I'm sure.
It certainly seems that jQuery is ascendant in ...
439
votes
10answers
120k views
Using Git with Visual Studio
As a long-time Visual SourceSafe user (& hater) I was discussing switching to SVN with a colleague; he suggested using Git instead, since apparently it can be used peer-to-peer without a central ...
437
votes
100answers
26k views
Interview question: f(f(n)) == -n [closed]
A question I got on my last interview:
Design a function f, such that:
f(f(n)) == -n
Where n is a 32 bit signed integer; you can't use complex numbers arithmetic.
If you can't design ...
435
votes
11answers
77k views
“Debug certificate expired” error in eclipse android plugins
I am using eclipse android plugins to build a project, But i am
getting this error in the console window:
[2010-02-03 10:31:14 - androidVNC]Error generating final archive:
Debug certificate expired ...
435
votes
147answers
32k views
What are your favorite extension methods for C#? (codeplex.com/extensionoverflow)
Caution!
This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
431
votes
7answers
103k views
What's the difference between git pull and git fetch?
What's the difference between git pull and git fetch?