Most Popular

1500 questions
25791
votes
27 answers

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

Here is a piece of C++ code that shows some very peculiar behavior. For some strange reason, sorting the data (before the timed region) miraculously makes the loop almost six times faster. #include #include #include…
ASTRTHTIS
  • 464,910
  • 50
  • 468
  • 534
23089
votes
96 answers

How do I undo the most recent local commits in Git?

I accidentally committed the wrong files to Git, but didn't push the commit to the server yet. How can I undo those commits from the local repository? The only way seems to be to copy the edits in some kind of GUI text editor, then wipe the whole…
HNNNANRDI
  • 47,869
  • 38
  • 136
  • 231
18322
votes
41 answers

How do I delete a Git branch locally and remotely?

I want to delete a branch both locally and remotely. Failed Attempts to Delete a Remote Branch $ git branch -d remotes/origin/bugfix error: branch 'remotes/origin/bugfix' not found. $ git branch -d origin/bugfix error: branch 'origin/bugfix' not…
SSRHIEHTR
  • 408,264
  • 38
  • 116
  • 157
12728
votes
38 answers

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

What are the differences between git pull and git fetch?
TOISRAORN
  • 260,082
  • 116
  • 328
  • 550
11409
votes
40 answers

What does the "yield" keyword do?

What is the use of the yield keyword in Python? What does it do? For example, I'm trying to understand this code1: def _get_child_candidates(self, distance, min_dist, max_dist): if self._leftchild and distance - max_dist < self._median: …
TDONARDON
  • 128,997
  • 17
  • 50
  • 61
10845
votes
36 answers

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 "standards" for the JSON content…
ISHSODRD
  • 219,637
  • 61
  • 208
  • 288
9964
votes
37 answers

How do I undo 'git add' before commit?

I mistakenly added files to Git using the command: git add myfile.txt I have not yet run git commit. Is there a way to undo this, so these files won't be included in the commit?
ARRHOAIRR
  • 137,723
  • 26
  • 86
  • 125
9761
votes
110 answers

How can I remove a specific item from an array?

I have an array of numbers and I'm using the .push() method to add elements to it. Is there a simple way to remove a specific element from an array? I'm looking for the equivalent of something like: array.remove(number); I have to use core…
TISNNSOSH
  • 108,287
  • 23
  • 65
  • 94
9633
votes
34 answers

How do I rename a local Git branch?

I don't want to rename a remote branch, as described in Rename master branch for both local and remote Git repositories. How can I rename a local branch which hasn't been pushed to a remote repository? In case you need to rename a remote branch as…
TRODDTDTE
  • 105,059
  • 20
  • 69
  • 107
9495
votes
29 answers

What is the "-->" operator in C/C++?

After reading Hidden Features and Dark Corners of C++/STL on comp.lang.c++.moderated, I was completely surprised that the following snippet compiled and worked in both Visual Studio 2008 and G++ 4.4. Here's the code: #include int main() { …
ASTRTHTIS
  • 464,910
  • 50
  • 468
  • 534
8667
votes
28 answers

What and where are the stack and heap?

Programming language books explain that value types are created on the stack, and reference types are created on the heap, without explaining what these two things are. I haven't read a clear explanation of this. I understand what a stack is. But,…
8461
votes
58 answers

Can comments be used in JSON?

Can I use comments inside a JSON file? If so, how?
RIHARDNSS
  • 96,390
  • 11
  • 35
  • 39
8195
votes
10 answers

Why does HTML think “chucknorris” is a color?

Why do certain random strings produce colors when entered as background colors in HTML? For example: test ...produces a document with a red background across all browsers and platforms. On the other hand,…
IAIOOAEEE
  • 80,831
  • 11
  • 70
  • 105
8195
votes
47 answers

Git: How do I force "git pull" to overwrite local files?

How do I force an overwrite of local files on a git pull? The scenario is the following: A team member is modifying the templates for a website we are working on They are adding some images to the images directory (but forgets to add them under…
OSNEENTES
  • 86,741
  • 10
  • 36
  • 50
8165
votes
60 answers

How do I check if an element is hidden in jQuery?

Is it possible to toggle the visibility of an element, using the functions .hide(), .show() or .toggle()? How would you test if an element is visible or hidden?
OHIHEINIE
  • 122,409
  • 36
  • 84
  • 97
1
2 3
99 100