1330
votes
36answers
746k 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 ...
2811
votes
49answers
352k 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 ...
1556
votes
25answers
217k 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 ...
326
votes
11answers
17k views

How to make a great R reproducible example?

When discussing performance with colleagues, teaching, sending a bug report or searching for guidance on mailing lists and here on SO, a reproducible example is often asked and always helpful. What ...
604
votes
29answers
84k views

Parsing and processing HTML/XML?

How can one parse HTML/XML and extract information from it? What libraries exist for that purpose? What are their strengths and drawbacks? This is a General Reference question for the php tag
237
votes
10answers
39k views

Headers already sent by PHP

When running my script I get several errors looking like this: Warning: Cannot modify header information - headers already sent by (output started at /some/file.php:12) in /some/file.php on line ...
260
votes
7answers
12k views

Why shouldn't I use mysql_* functions in PHP?

What are the technical reasons that I shouldn't use mysql_* functions? (like mysql_query(), mysql_connect() or mysql_real_escape_string())? Why should I move away from them as long as it works on my ...
70
votes
16answers
87k views

mysql_fetch_array() expects parameter 1 to be resource, boolean given in select

I am trying to select data from a table but get this error message: mysql_fetch_array() expects parameter 1 to be resource, boolean given.. This is my code: $username = $_POST['username']; ...
416
votes
22answers
50k views

How to avoid Java Code in JSP-Files?

I'm new to Java EE and I know that something like the following three lines <%= x+1 %> <%= request.getParameter("name") %> <%! counter++; %> is an oldschool way of coding and in ...
441
votes
6answers
34k views

What is The Rule of Three?

What does copying an object mean? What are the copy constructor and the copy assignment operator? When do I need to declare them myself? How can I prevent my objects from being copied?
747
votes
5answers
61k views

Reference - What does this symbol mean in PHP?

What is this? This is a collection of questions that come up every now and then about syntax in PHP. This is also a Community Wiki, so everyone is invited to participate in maintaining this list. ...
538
votes
21answers
156k views

What can I use to profile C++ code in Linux? [closed]

I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code?
137
votes
8answers
16k views

Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

int main(int argc, char ** argv) { int i = 0; i = i++ + ++i; printf("%d\n", i); // 3 i = 1; i = (i++); printf("%d\n", i); // 2 Should be 1, no ? volatile int u = 0; u = u++ ...
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?
337
votes
25answers
265k views

How do I compare strings in Java?

I've been using the == operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug. Is == bad? When should it ...
573
votes
17answers
246k views

How do I do a lazy load of images in ListView

I am using a ListView to display some images and captions associated with those images. I am getting the images from the Internet. Is there a way to lazy load the images so while the text displays, ...
832
votes
43answers
240k views

Using a regular expression to validate an email address

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is: ...
224
votes
10answers
15k views

Do I cast the result of malloc?

In this question, someone suggested in a comment that I should not cast the results of malloc, i.e: int *sieve = malloc(sizeof(int)*length); rather than: int *sieve = (int ...
74
votes
4answers
6k views

The Use of Multiple JFrames, Good/Bad Practice?

I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
130
votes
9answers
14k views

What is a NullReferenceException in .NET?

I have some code and when it executes, it throws a NullReferenceException, saying, "Object reference not set to an instance of an object.". What does this mean, and what can I do about it?
756
votes
34answers
196k views

Is Java “pass-by-reference”?

I always thought Java was pass-by-reference; however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
1557
votes
30answers
188k 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 ...
354
votes
12answers
28k views

How does the SQL injection from the “Bobby Tables” XKCD comic work?

Just looking at: (Source: http://xkcd.com/327/) What does this SQL do: Robert'); DROP TABLE STUDENTS; -- I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
434
votes
19answers
23k views

“Least Astonishment” in Python: The Mutable Default Argument

Anyone tinkering with python long enough has been bitten (or torn to pieces) by the following issue: def foo(a=[]): a.append(5) return a Python novices would expect this function to always ...
253
votes
4answers
17k views

Undefined Behavior and Sequence Points

What are "Sequence Points"? What is the relation between Undefined Behaviour and Sequence Points? I often use funny and convoluted expressions like a[++i] = i;, to make myself feel better. Why ...
266
votes
7answers
54k views

What are the rules about using an underscore in a C++ identifier?

It's common in C++ to name member variables with some kind of prefix to denote the fact that they're member variables, rather than local variables or parameters. If you've come from an MFC background, ...
55
votes
9answers
83k views

PHP: “Notice: Undefined variable” and “Notice: Undefined index”

I am running a PHP script, and keep getting errors like: Undefined variable: user_location in C:\wamp\www\mypath\index.php on line 12 Line 12 looks like this: $greeting = "Hello, ".$user_name." ...
296
votes
30answers
206k views

Strange out of memory issue while loading an image to a Bitmap object

I have a list view with a couple of image buttons on each row. When you click the list row, it launches a new activity. I have had to build my own tabs because of an issue with the camera layout. The ...
536
votes
3answers
228k views

How to use java.net.URLConnection to fire and handle HTTP requests?

URLConnection is pretty often asked here and the Oracle tutorial is too concise about it. So how do I use it to fire and handle HTTP requests? Are there other hints and best practices on this that ...
82
votes
2answers
7k views

How to return the response from an AJAX call?

I have a function foo with makes an AJAX request. How can I return the response from foo? I tried to return the value from the success callback as well as assigning the response to a local variable ...
165
votes
10answers
19k views

Javascript closure inside loops - simple practical example

Closures are one of those things which has been discussed a lot on SO, but this situation pops up a lot for me and I'm always left scratching my head what to do. var funcs = {}; for (var i = 0; i ...
116
votes
7answers
38k views

Alternatives to gprof [closed]

What other programs do the same thing as gprof?
150
votes
9answers
31k views

Why can templates only be implemented in the header file?

Quote from The C++ standard library: a tutorial and handbook: The only portable way of using templates at the moment is to implement them in header files by using inline functions. Why is this?
107
votes
20answers
8k views

Reference - What does this error mean in PHP?

What is this? This is a number of answers about warnings, errors and notices you might encounter while programming PHP and have no clue how to fix. This is also a Community Wiki, so everyone is ...
174
votes
12answers
27k views

Is JavaScript's Floating-Point Math Broken?

> 0.1 + 0.2 == 0.3 false > 0.1 + 0.2 0.30000000000000004 Any ideas why this happens?
67
votes
7answers
7k views

What is an undefined reference/unresolved external symbol error and how do I fix it?

What are undefined reference/unresolved external symbol errors? What are common causes and how to fix them? Feel free to edit/add your own.
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 ...
81
votes
7answers
5k views

Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing?

Several times I've been criticized for having suggested the use of the following methods: setPreferredSize setMinimumSize setMaximumSize on Swing components. I don't see any alternative to their ...
326
votes
34answers
31k views

Performance optimization strategies of last resort

There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature ...
66
votes
4answers
37k views

h:commandLink / h:commandButton is not being invoked

I found a problem when using the <h:commandLink> or <h:commandButton> in an include page, the action and actionlistener associated with the UICommand component is simply not being invoked. ...
416
votes
17answers
87k views

What are valid values for the id attribute in HTML?

When creating the id attributes for HTML elements, what rules are there for the value?
450
votes
6answers
152k views

Operator overloading

What are the basic rules and idioms for operator overloading in C++? Note: The answers were given in a specific order, but since many users sort answers according to votes, rather than the time they ...
220
votes
8answers
144k views

android.os.NetworkOnMainThreadException

In the below code I got an error when running my android project for RssReader. URL url= new URL(urlToRssFeed); SAXParserFactory factory =SAXParserFactory.newInstance(); SAXParser ...
174
votes
2answers
14k views

Where and why do I have to put the “template” and “typename” keywords?

In templates, where and why do I have to put typename and template on dependent names? What exactly are dependent names anyway? I have the following code: template <typename T, typename Tail> ...
240
votes
17answers
106k views

Can a local variable's memory be accessed outside its scope? [duplicate]

Possible Duplicate: Returning the address of local or temporary variable I have the following code. int * foo() { int a = 5; return &a; } int main() { int* p = foo(); ...
1040
votes
20answers
160k 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 == ...
593
votes
14answers
228k views

Saving Activity state in Android

I've been playing around with the Android SDK, and I am a little unclear on saving an applications state. So given this minor re-tooling of the 'Hello, Android' example: package com.android.hello; ...
118
votes
3answers
88k views

How to upload files to server using JSP/Servlet?

How can I parse an uploaded file using Apache Common FileUpload? I tried this: FileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(factory); List ...
867
votes
14answers
158k views

JavaScript: var functionName = function() {} vs function functionName() {}

I've recently started maintaining someone else's JavaScript code. I'm fixing bugs, adding features and also trying to tidy up the code and make it more consistent. The previous developer uses two ...
363
votes
12answers
75k views

Secure hash and salt for PHP passwords

It is currently said that MD5 is partially unsafe. Taking this into consideration, I'd like to know which mechanism to use for password protection. Is “double hashing” a password less secure than ...

15 30 50 per page
1 2 3 4 5 10586