Greatest Hits

617
votes
34answers
206k views

Android SDK installation doesn't find JDK

I'm trying to install the Android SDK on my Windows 7 x64 System. jdk-6u23-windows-x64.exe is installed, but the Android SDK setup refuses to proceed, because it doesn't find the JDK installation. Is ...
784
votes
10answers
391k views

Difference between inner and outer join

What is the difference between INNER JOIN and OUTER JOIN?
2658
votes
15answers
632k 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?
1400
votes
15answers
706k views

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

How can I redirect the user from one page to another using jQuery?
4844
votes
11answers
248k 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 ...
110
votes
16answers
222k views

WAMP error: Forbidden You don't have permission to access /phpmyadmin/ on this server

I am new to WAMP and I have just installed it today. The setup went well and localhost seems to work, but when I try to access phpMyAdmin I get this error: Forbidden You don't have permission ...
353
votes
64answers
366k views

R cannot be resolved - Android error

I just downloaded and installed the new Android SDK. I wanted to create a simple application to test drive it. The wizard created this code: package eu.mauriziopz.gps; import android.app.Activity; ...
680
votes
10answers
90k views

Why does this code print “hello world”?

I came across this piece of code, and found it rather interesting. The following print statement would print "hello world". Could anyone explain this? System.out.println(randomString(-229985452) + " ...
472
votes
12answers
469k views

UPDATE from SELECT using SQL Server

In SQL Server you can insert into a table using a select statement: INSERT INTO table(col,col2,col3) SELECT col,col2,col3 FROM other_table WHERE sql = 'cool' How can I update via a select as well ...
1198
votes
15answers
863k 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 ...
1722
votes
15answers
315k 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 ...
973
votes
11answers
215k 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 ...
212
votes
9answers
629k views

How to get the selected value of dropdownlist using JavaScript?

How do I get the selected value from a dropdown list using JavaScript? I have tried the methods below, but each of them only returns the selected index instead of the value. var as = ...
202
votes
8answers
168k views

Access restriction on class due to restriction on required library rt.jar?

I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should ...
493
votes
3answers
48k views

How do I “think in AngularJS” if I have a jQuery background?

Suppose I'm familiar with developing client-side applications in jQuery, but now I'd like to start using AngularJS. Can you describe the paradigm shift that is necessary? Here are a few questions ...
1614
votes
47answers
566k 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?
899
votes
8answers
698k 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 ...
195
votes
11answers
107k views

The Android emulator is not starting, showing “invalid command-line parameter”

I made a simple "Hello World" program in Eclipse. I added nothing to a Java file and only added a text view in file main.xml as //main.xml file <?xml version="1.0" encoding="utf-8"?> ...
950
votes
25answers
671k 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 ...
444
votes
23answers
516k views

Generating random number in a range with Java

I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
446
votes
16answers
507k views

Add column, with default value, to existing table in SQL Server

How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?
1118
votes
38answers
621k 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 ...
1149
votes
22answers
107k 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 ...
221
votes
27answers
240k views

Failed to load the JNI shared Library (JDK)

When I try opening Eclipse, a pop-up dialog states: Failed to load the JNI shared library "C:/JDK/bin/client/jvm.dll"`. Following this, Eclipse force closes. Here's a few points I'd like to ...
3049
votes
17answers
428k 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.
582
votes
4answers
49k views

Obfuscated C Code Contest 2006. Please explain sykes2.c

How does this C program work? main(_){_^448&&main(-~_);putchar(--_%64?32|-~7[__TIME__-_/8%8][">'txiZ^(~z?"-48]>>";;;====~$::199"[_*2&8|_/64]/(_&2?1:8)%8&1:10);} It ...
658
votes
39answers
529k views

Splitting a string in C++

What's the most elegant way to split a string in C++? The string can be assumed to be composed of words separated by whitespace. (Note that I'm not interested in C string functions or that kind of ...
1793
votes
14answers
268k 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 ...
1015
votes
8answers
140k 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 ...
1859
votes
18answers
530k 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?
461
votes
10answers
334k views

Get selected text from dropdownlist using jQuery

How can I get an ASP dropdownlist selected text in jQuery, not using the selected value?
126
votes
7answers
54k views

Eclipse cannot load SWT libraries

Every time I try to open Eclipse in Ubuntu 12.04 I get an Unsatisfied Link Error and it will not open. I have recently installed the java JDK and Android SDK, could this be the problem? I followed ...
906
votes
15answers
515k 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?
126
votes
14answers
113k views

LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt after installing VS2012 release preview

I've installed VS2012 Release Preview, and it appears to be fine, but now when I try to use VS2010 to compile C++ projects, I get the following error message: LINK : fatal error LNK1123: failure ...
281
votes
8answers
685k views

SQL Insert into … values ( SELECT … FROM … )

I am trying to insert into a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle to remember the correct syntax for the ...
289
votes
6answers
132k views

How to create an AVD for Android 4.0

Android 4.0 is now released. I have just updated my ADT plugin and downloaded the 4.0 SDK. But when I try to create an AVD for Android 4.0, Eclipse tells me 'Unable to find a 'userdata.img' file for ...
454
912
votes
22answers
609k 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?
519
votes
16answers
585k views

Change an element's CSS class with JavaScript

How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
1078
votes
14answers
178k 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 ...
675
votes
19answers
585k views

How to center a div in a div - horizontally?

How do I horizontally center a div in a div with CSS (if it's possible at all)? The outer div has 100%: <div id="outer" style="width:100%"> <div id="inner">Foo foo</div> ...
326
732
votes
21answers
373k views

Differences between HashMap and Hashtable?

What is the difference between a HashMap and a Hashtable in Java? Which is more efficient for non-threaded applications?
140
votes
10answers
328k views

How to convert string to int in Java?

How does one convert a String to an int in Java? I have a string which contains only numbers (1-4 numbers to be specific), and I want to return the number which it represents. (Actually I have it ...
247
412
votes
20answers
479k views

How to get the current URL in jQuery?

I am using jQuery. I'd like to get the path of the current URL and assign it to a variable. Example URL: http://localhost/menuname.de?foo=bar&amp;number=0
487
votes
7answers
462k views

Using global variables in a function other than the one that created them

If I create a global variable in one function, how can I use that variable in another function? Do I need to store the global variable in a local variable of the function which needs its access?
298
votes
32answers
262k views

Working copy XXX locked and cleanup failed in SVN

I get this error when I do an svn update: Working copy XXXXXXXX locked Please execute "Cleanup" command When I run cleanup, I get Cleanup failed to process the following paths: XXXXXXXX ...
406
votes
49answers
231k views

“Conversion to Dalvik format failed with error 1” on external JAR

In my Android application in Eclipse I get the following error. UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added: Lorg/xmlpull/v1/XmlPullParser; .... ...
720
votes
29answers
594k views

Validate numbers in JavaScript - IsNumeric()

What's the cleanest, most effective way to validate decimal numbers in JavaScript? Bonus points for: Clarity. Solution should be clean and simple. Cross-platform. Test cases: 01. ...
339
votes
11answers
197k views

In Java, what's the difference between public, default, protected, and private?

Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
3042
votes
19answers
476k 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 ...
593
votes
15answers
558k views

CSS: semi-transparent background, but not text

Is it possible, using CSS alone, to make the background of an element semi-transparent, but have the text of the element be non-transparent? I would like to accomplish this without having the text and ...

1 2 3 4 5 20