4635
votes
11answers
240k views

Why is processing a sorted array faster than an unsorted array?

Here is a piece of C++ code that shows some very peculiar performance. For some strange reason, sorting the data miraculously speeds up the code by almost 6x: #include <algorithm> #include ...
2886
votes
17answers
405k views

How do I edit an incorrect commit message in Git?

I stupidly did a Git commit while half asleep, and wrote the totally wrong thing in the commit message. How do I change the commit message? I have not yet pushed the commit to anyone.
2884
votes
19answers
451k views

What is the *correct* JSON content type?

I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (that I know of), but I'd like to start doing things properly. I have seen so many purported ...
2668
votes
50answers
329k views

The Definitive C++ Book Guide and List

This question attempts to collect the few pearls among the dozens of bad C++ books that are released every year. Unlike many other programming languages, which are often picked up on the go from ...
2477
votes
15answers
592k views

How to undo the last Git commit?

I accidentally added the wrong directory containing my files in Git. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
2014
votes
17answers
135k views

What is the name of this operator: “-->”? [closed]

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: ...
1916
votes
12answers
197k views

The definitive guide to forms based website authentication

Form based authentication for websites We believe that Stack Overflow should not just be a resource for very specific technical questions, but also for general guidelines on how to solve ...
1790
votes
17answers
506k views

Testing if something is hidden with jQuery

In jQuery, it is possible to toggle the visibility of an element. You can use the functions .hide(), .show() or .toggle(). How you would test if an element has been hidden or shown using jQuery?
1760
votes
6answers
57k 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 ...
1716
votes
14answers
255k 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 are created on the heap, without really explaining what these two things are. With my only ...
1670
votes
6answers
151k views

Why is subtracting these two times (in 1927) giving a strange result?

If I run the following program, which parses two date strings referencing times one second apart and compares them: public static void main(String[] args) throws ParseException { SimpleDateFormat ...
1654
votes
14answers
302k 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 ...
1564
votes
13answers
310k views

What's the difference between 'git pull' and 'git fetch'?

What's the difference between git pull and git fetch?
1547
votes
49answers
540k views

How can I get query string values?

Is there a plugin-less way of retrieving query string values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
1491
votes
11answers
399k views

How do I delete a Git branch both locally and in GitHub?

I created a bugfix branch to fix a bug on a project that I had forked on GitHub. I issued a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix ...
1483
votes
28answers
177k views

How do JavaScript closures work?

Like the old Albert Einstein 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 ...
1457
votes
25answers
268k 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?
1456
votes
24answers
200k views

How to prevent SQL injection in PHP?

If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example: $unsafe_variable = $_POST['user_input']; mysql_query("INSERT ...
1438
votes
5answers
191k views

What does “use strict” do in JavaScript, and what is the reasoning behind it?

Recently, I ran some of my JavaScript code through Crockford's JSLint, and it gave the following error: Problem at line 1 character 1: Missing "use strict" statement. Doing some searching, I ...
1414
votes
16answers
188k 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.
1330
votes
36answers
725k 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 ...
1327
votes
12answers
670k views

How can I make a redirect page in jQuery/JavaScript?

How can I redirect the user from one page to another using jQuery?
1237
votes
16answers
316k 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, ...
1176
votes
8answers
503k views

How do I fix merge conflicts in Git?

Is there a good way to explain how to resolve merge conflicts in Git?
1144
votes
18answers
118k 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 ...
1138
votes
15answers
824k views

Method like String.contains() in JavaScript

How can I check if one string contains another substring in JavaScript? Usually I would expect a String.contains() method, but there doesn't seem to be one. Update: It seems that I have another ...
1127
votes
8answers
150k views

What is a metaclass in Python?

I've mastered almost all the Python concepts (well, let's say they're just OO concepts :-)) but this one is tricky. I know it has something to do with introspection but it's still unclear to me. So ...
1121
votes
22answers
105k views

How to pair socks from a pile efficiently?

Yesterday I was pairing the socks from the clean laundry, and figured out the way I was doing it is not very efficient. I was doing a naive search — picking one sock and "iterating" the pile in ...
1097
votes
3answers
212k views

How do I get started with Node.js [closed]

Are there any good resources to get started with Node.JS? Any good tutorials, blogs or books? Of course, I have visited its official website http://nodejs.org/, but I didn't think the documentation ...
1074
votes
38answers
595k views

Href attribute for JavaScript links: “#” or “javascript:void(0)”?

When building a link that has the sole purpose to run JavaScript code, there are 2 ways to write the code. Which is better, in terms of functionality, page load speed, validation purposes, etc? <a ...
1068
votes
9answers
218k views

What is the maximum length of a URL in different browsers?

What is the maximum length of a URL in different browsers? Does it differ between browsers? Does the HTTP protocol dictate it?
1057
votes
30answers
267k views

Most efficient way to clone an object?

What is the most efficient way to clone a JavaScript object? I've seen: obj = eval(uneval(o)); but that's not cross platform (FF only). I've done (in Mootools 1.2) things like this: obj = ...
1052
votes
13answers
174k 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 ...
1021
votes
8answers
165k views

How can I pass the string “Null” through WSDL (SOAP) from AS3 to ColdFusion web service without receiving a “missing parameter error”?

We have an employee whose last name is Null. He kills our employee lookup application when his last name is used as the search term (which happens to be quite often now). The error received (thanks ...
1017
votes
11answers
118k views

How do I remove a Git submodule?

How do I remove a Git submodule? And by the way, is there a reason I can't simply do git submodule rm whatever ?
1001
votes
7answers
214k 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...).
990
votes
4answers
175k 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 ...
988
votes
10answers
178k views

How do you make an existing Git branch track a remote branch?

I know how to make a new branch that tracks remote branches. But how do I make an existing branch track a remote branch. I know I can just edit the .git/config file, but it seems there should be an ...
975
votes
20answers
146k views

JavaScript === vs == : Does it matter which “equal” operator I use?

I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing idSele_UNVEHtype.value.length == ...
969
votes
7answers
234k views

Difference of px, dp, dip and sp in Android?

Can anyone explain the differences between the px, dip, dp and sp units in Android?
962
votes
7answers
138k views

Proper use cases for Android UserManager.isUserAGoat()?

I was looking at the new APIs introduced in Android 4.2. While looking at the UserManager class I came across the following method: public boolean isUserAGoat () Used to determine whether the ...
937
votes
10answers
207k views

How can I make a chain of function decorators in Python?

How can I make two decorators in Python that would do the following. @makebold @makeitalic def say(): return "Hello" which should return <b><i>Hello</i></b> I'm not ...
936
votes
15answers
131k 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 ...
904
votes
24answers
635k views

Check checkbox checked property using jQuery

I need to check the checked property of a checkbox and perform an action based on the checked property using jQuery. For example, if the age checkbox is checked, then I need to show a textbox to ...
877
votes
8answers
679k views

$(this) selector and children?

I have a layout similar to this <div id="..."><img src="..."></div> I would like to use a jQuery selector to select the child img inside of the div on click To get the div, I've ...
874
votes
40answers
283k views

Avoiding “!= null” statements in Java?

I work with Java all day long. The most used idiom (code snippet) I'm programming in Java, is to test if an object != null before I use it. This is to avoid a NullPointerException. I find the code ...
865
votes
13answers
490k views

How to set cellpadding and cellspacing in CSS?

In inline HTML, the table styles cellpadding and cellspacing can be set <table cellspacing="1" cellpadding="1"> How would this be accomplished using a CSS stylesheet?
865
votes
14answers
232k views

PUT vs POST in REST

According to the HTTP/1.1 Spec: The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the ...
861
votes
22answers
576k views

How do I check a checkbox with jQuery or JavaScript?

I want to do something like this $(".myCheckBox").checked(true); or $(".myCheckBox").selected(true); I wish to set the value. Is such a thing built into jQuery?
854
votes
31answers
138k views

What's the difference between String and string?

In C#, what is the difference between String and string? (note the case) Example: string s = "Hello, World"; String S = "Hello, World"; Also, what are the guidelines for the use of each?

15 30 50 per page
1 2 3 4 5 101407