Tagged Questions
929
votes
38answers
422k 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 ...
671
votes
35answers
115k 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 ...
531
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, ...
482
votes
20answers
88k 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?
410
votes
6answers
57k 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 ...
367
votes
8answers
185k views
How do I fix merge conflicts in Git?
Is there a good way to explain how to resolve merge conflicts in Git?
359
votes
31answers
148k views
How to avoid “!= 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, to avoid a NullPointerException of course. But the code ...
358
votes
27answers
11k views
Using a piano keyboard as a computer keyboard
I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
328
votes
27answers
129k views
When do you use Java's @Override annotation and why?
What are the best practices for using Java's @Override annotation and why?
It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there ...
317
votes
32answers
52k views
Creating a memory leak with Java
I just had an interview, and I was asked to create a memory leak with Java.
Needless to say I felt pretty dumb having no clue on how to even start creating one.
What would an example be?
314
votes
7answers
4k views
Java += operator
until today I thought that for example:
i += j;
is just a shortcut for:
i = i + j;
But what if we try this:
int i = 5;
long j = 8;
Then i = i + j; will not compile but i += j; will compile ...
310
votes
20answers
86k views
What do “branch”, “tag” and “trunk” really mean? [closed]
I've seen these words a lot around subversion (and I guess general repository) discussions.
Myself I have been using svn for my projects the last few years, but I've never grasped the complete concept ...
306
votes
37answers
58k views
How to use a regular expression to validate an email addresses?
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:
...
295
votes
56answers
12k views
Do you source control your databases?
I feel that my shop has a hole because we don't have a solid process in place for versioning our database schema changes. We do a lot of backups so we're more or less covered, but it's bad practice to ...
290
votes
100answers
84k views
Hidden Features of Java [closed]
After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
274
votes
7answers
19k views
Why is char[] preferred over string for passwords?
In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
272
votes
57answers
22k views
Is it just me or are interfaces overused? [closed]
Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…
So, after just ...
269
votes
8answers
18k views
Git and Mercurial - Compare and Contrast
For a while now I've been using subversion for my personal projects.
More and more I keep hearing great things about Git and Mercurial, and DVCS in general.
I'd like to give the whole DVCS thing a ...
261
votes
14answers
43k views
Regular expression to search for Gadaffi
I'm trying to search for the word Gadaffi. What's the best regular expression to search for this?
My best attempt so far is:
\b[KG]h?add?af?fi$\b
But I still seem to be missing some journals. Any ...
257
votes
23answers
140k views
A better Java JSON library? [closed]
Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
242
votes
27answers
55k 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 ...
236
votes
28answers
173k views
Free online private SVN repositories
What good free online SVN repository can be recommended?
I found OpenSVN.csie.org, but the message in red is a bit scary.
235
votes
27answers
24k views
Interview question: Check if one string is a rotation of other string [closed]
A friend of mine was asked the following question today at interview for the position of software developer:
Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ?
Example: ...
235
votes
6answers
169k views
Regular expression to match string not containing a word?
I know it is possible to match for the word and using tools options reverse the match. (eg. by grep -v) However I want to know if it is possible using regular expressions to match lines which does not ...
231
votes
26answers
9k views
Why does this go into an infinite loop?
I'm a teacher, and yesterday a student wrote the following code:
public class Tests {
public static void main(String[] args) throws Exception {
int x = 0;
while(x<3) {
...
231
votes
9answers
33k views
Examples of GoF Design Patterns
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries).
Thank ...
230
votes
28answers
50k views
Fastest way to determine if an integer's square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but ...
227
votes
29answers
34k views
What's the proper way to test a class with private methods using JUnit?
How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
226
votes
19answers
15k views
Pacman: how do the eyes find their way back to the monster hole?
I found a lot of references to the AI of the ghosts in Pacman, but none of them mentioned how the eyes find their way back to the central ghost hole after a ghost is eaten by Pacman.
In my ...
224
votes
32answers
128k views
SVN plugins for Eclipse - Subclipse vs. Subversive
SVN in Eclipse is spread into 2 camps. The SVN people have developed a plugin called Subclipse. The Eclipse people have a plugin called Subversive. Broadly speaking they both do the same things. What ...
214
votes
12answers
134k 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?
209
votes
55answers
42k views
Check if at least 2 out of 3 booleans is true
An interviewer recently asked me this question: given 3 boolean variables a, b, c, return true if at least 2 out of the 3 are true.
My solution follows:
boolean atLeastTwo(boolean a, boolean b, ...
202
votes
13answers
137k views
In Java, how do I read/convert an InputStream to a String?
If you have java.io.InputStream object, how should you process that object and produce a String?
Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
189
votes
23answers
11k views
Mercurial for Beginners: The Definitive Practical Guide
Inspired by Git for beginners: The definitive practical guide.
This is a compilation of information on using Mercurial for beginners for practical use.
Beginner - a programmer who has touched source ...
184
votes
34answers
158k views
Best subversion client for Mac OS [closed]
On Windows, Tortoise SVN is the daddy, no question. On the Mac there is nothing as simple and integrated, but there is a fair choice of tools. Which GUI clients are worth checking out and why?
182
votes
92answers
16k views
Good excuses NOT to use version control
This question may seem backwards to all logical reasoning, but I encountered a team member who was working on a side project out of the main tree, and had decided ( rephrased )
I'm the only ...
172
votes
5answers
97k views
How to create ArrayList (ArrayList<T>) from array (T[]) in Java
I have an array that is initialised like:
Element[] array = {new Element(1),new Element(2),new Element(3)};
I would like to convert this array into an object of the ArrayList class.
...
169
votes
9answers
25k views
Accurracy of technical arguments in JWZ's 1997 “java sucks” article with today's Java?
I'm currently using Java in a larger project and was curious which of the technical arguments in JWZ's famous "java sucks" article were still valid ten years later. The article starts like this:
I ...
168
votes
12answers
49k views
How do I tell Git to ignore “.gitignore”?
I just did a git init on the root of my new project.
Then I created a .gitignore file.
Now, when I type "git status", ".gitignore" appears in the list of untracked files. Why is that?
165
votes
18answers
72k views
When to use LinkedList<> over ArrayList<>?
I've always been one to simply use List<String> names = new ArrayList<String>();
I use the interface as the type name for portability, so that when I ask questions such as these I can ...
163
votes
8answers
36k views
git workflow and rebase vs merge questions
I've been using git now for a couple months on a project with one other developer. I have several years of experience with svn, so I guess I bring a lot of baggage to the relationship.
I have heard ...
162
votes
2answers
76k views
How to use java.net.URLConnection to fire and handle HTTP requests?
This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
162
votes
15answers
24k views
Should I add the Visual Studio .suo and .user files to source control
Visual Studio solutions contain two types of hidden user files. One is the solution .suo file which is a binary file. The other is the project .user file which is a text file. Does anyone know ...
161
votes
35answers
13k views
What to do about a 11000 lines C++ source file?
So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe :-)
As this file is so central and large, it keeps accumulating more ...
158
votes
9answers
75k views
What GUIs exist for Git on Windows
I use Subversion via TortoiseSVN but I hear good things about Git.
Are there any similar tools available for Git on Windows?
Feel free to answer with tools which still in early development.
158
votes
22answers
146k views
How to deal with “java.lang.OutOfMemoryError: PermGen space” error
Recently I ran into this error in my web application:
java.lang.OutOfMemoryError: PermGen space
It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.
Apparently ...
156
votes
6answers
49k views
How do you get git to always pull from a specific branch?
I'm not a git master, but I have been working with it for some time now, with several different projects. In each project, I always git clone [repository] and from that point, can always git pull, so ...
154
votes
5answers
39k views
'Must Override a Superclass Method' Errors after importing a project into Eclipse
Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
151
votes
12answers
42k views
How do I change the author of a commit in git?
I was writing a simple script in the school computer, and commiting the changes to git (in a repo that was in my pendrive, cloned from my computer at home). After several commits I realized I was ...
148
votes
15answers
164k views
How to call SOAP web service with Android
I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...