Tagged Questions
The comparison tag has no wiki summary.
534
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, ...
162
votes
16answers
59k views
SQLite vs MySQL
SQLite is a single-file based database and MySQL is a normal database. That's great, but I'm not sure which is faster where or better for what...what are the pros and cons of each option?
103
votes
16answers
61k views
What is “missing” in the Visual Studio 2008 Express Editions? [closed]
In particular,
what functionality is not available?
what restrictions are there on its use?
87
votes
10answers
2k views
Why are the built in functions in PHP named so randomly?
It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some.
Why is this the case?
EDIT - this wasn't meant as a "troll" type ...
61
votes
8answers
2k views
Why does >= return false when == returns true for null values?
I have two variables of type int? (or Nullable<int> if you will). I wanted to do a greater-than-or-equal (>=) comparison on the two variables but as it turns out, this returns false if both ...
54
votes
28answers
11k views
What's the advantage of using C over C++ or is there one? [closed]
Since C++ seems to have all of C's features, why learn C over C++?
54
votes
9answers
10k views
Haskell, Lisp, and verbosity
For those of you experienced in both Haskell and some flavor of Lisp, I'm curious how "pleasant" (to use a horrid term) it is to write code in Haskell vs. Lisp.
Some background: I'm learning Haskell ...
53
votes
8answers
5k views
Python - doctest vs. unittest
I'm trying to get started with unit testing in Python and I was wondering if someone could inform me of the advantages and disadvantages of doctest and unittest. What conditions would you use each ...
52
votes
19answers
7k views
What can be done in R that can't be done with Python/Numpy/SciPy
I've been recently wondering about the over-proliferation of DSLs like R - and thinking whether this is good or bad. Specifically, I wonder what right has R as a stand-alone language and environment? ...
50
votes
6answers
7k views
Python “is” operator behaves unexpectedly with integers
Why does the following behave unexpectedly in Python?
>>> a = 256
>>> b = 256
>>> a is b
True # this is an expected result
>>> a = 257
>>> b = ...
49
votes
9answers
26k views
Image comparison - fast algorithm
I'm looking to create a base table of images and then compare any new images against that to determine if the new image is an exact (or close) duplicate of the of the base. For example: if you want ...
49
votes
10answers
26k views
Differences in string compare methods in C#
Comparing string in C# is pretty simple. In fact there are several ways to do it. I have listed some in the block below. What I am curious about are the differences between them and when one should ...
48
votes
4answers
67k views
How do I compare strings in objective c?
I want to compare the value of an NSString to the string "Wrong". Here is my code:
NSString *wrongTxt = [[NSString alloc] initWithFormat:@"Wrong"];
if( [statusString isEqualToString:wrongTxt]){
...
48
votes
11answers
72k views
Advantages of SQL Server 2008 over SQL Server 2005?
What are the key differences between Microsoft's SQL Server 2005 and SQL Server 2008?
Are there any compelling reasons for upgrading (any edition, as I have a customer with multiple editions)? Or ...
44
votes
29answers
4k views
Why Do You Use Delphi?
Nick Bradbury (the author of HomeSite, TopStyle and FeedDemon) just posted a fascinating explanation of why he uses Delphi:
http://nick.typepad.com/blog/2009/07/why-i-use-delphi.html
I'd like to ...
43
votes
12answers
14k views
Common Lisp or Scheme? [closed]
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to each other?
41
votes
15answers
24k views
Object comparison in JavaScript [closed]
Possible Duplicate:
How do you determine equality for two JavaScript objects?
What is the best way to compare Objects in JavaScript?
Example:
var user1 = {name : "nerd", org: "dev"};
var ...
39
votes
12answers
1k views
Is floating-point == ever OK?
Just today I came across a third party software we're using and in their sample code there was something along these lines:
// defined in somewhere.h
static const double BAR = 3.14;
// code ...
39
votes
13answers
5k views
Which key value store is the most promising/stable?
I'm looking to start using a key/value store for some side projects (mostly as a learning experience), but so many have popped up in the recent past that I've got no idea where to begin. Just listing ...
39
votes
9answers
21k views
Best way to compare 2 XML documents in Java
I'm trying to write an automated test of an application that basically translates a custom message format into an XML message and sends it out the other end. I've got a good set of input/output ...
38
votes
4answers
11k views
C# vs Java generics
I have heard that the Java implementation of Generics is not as good as the C# implementation. In that the syntax looks similar, what is it that is substandard about the Java implementation, or is it ...
35
votes
7answers
1k views
Analogues of Java and .NET technologies/frameworks
I work in a shop that is a mix of mostly Java and .NET technologists. When discussing new solutions and architectures we often encounter impedance in trying to compare the various technologies, ...
34
votes
2answers
2k views
D versus Go comparison
It would be interesting to contrast these two new languages by several aspects:
What are their design influences?
Where do they intersect in their goals / where do they rival?
Where are they ...
33
votes
5answers
8k views
How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?
Can you explain the difference between == and ===, giving some useful examples?
31
votes
4answers
4k views
What’s the difference between ScalaTest and Scala Specs unit test frameworks?
Both are BDD (Behavior Driven Development) capable unit test frameworks for Scala written in Scala. And Specs is built upon may also involve the ScalaTest framework. But what does Specs offer ...
31
votes
24answers
26k views
Array Vs. Linked List
I apologize--this question may be a bit open-ended but I think there are probably definite, quantifiable answers to it so I'll post it anyway.
A person I know is trying to learn C++ and software ...
31
votes
16answers
9k views
Comparison between Centralized and Distributed Version Control Systems
What are the benefits and drawbacks with using Centralized versus Distributed Version Control Systems (DVCS)? Have you run into any problems in DVCS and how did you safeguard against these problems? ...
30
votes
4answers
13k views
Jackson Vs. Gson
After searching through some existing libraries for JSON, I have finally ended up with these two:
Jackson
Google GSon
I am a bit partial towards GSON, but word on the net is that GSon suffers from ...
29
votes
16answers
4k views
Samples of Scala and Java code where Scala code looks simpler/has fewer lines?
I need some code samples (and I also really curious about them) of Scala and Java code which show that Scala code is more simple and concise then code written in Java (of course both samples should ...
29
votes
9answers
9k views
Are there any Fuzzy Search or String Similarity Functions libraries written for C#?
There are similar question, but not regarding C# libraries I can use in my source code.
Thank you all for your help.
I've already saw lucene, but I need something more easy to search for similar ...
28
votes
6answers
2k views
Why do we need RESTful Web Services?
I'm going to learn RESTful web services (it's better to say that I'll have to do this because it's a part of CS master degree program).
I've read some info in Wikipedia and I've also read an article ...
28
votes
7answers
32k views
How do I do a case insensitive string comparison in Python?
What's the best way to do case insensitive string comparison in Python?
I would like to encapsulate comparison of a regular strings to a repository string using in a very simple and pythonic way. I ...
28
votes
12answers
15k views
Comparing two collections for equality
I would like to compare two collections (in C#), but I'm not sure of the best way to implement this efficiently.
I've read the other thread about Enumerable.SequenceEqual, but it's not exactly what ...
27
votes
2answers
524 views
Why the compiler emits box instructions to compare instances of a reference type?
Here is a simple generic type with a unique generic parameter constrained to reference types:
class A<T> where T : class
{
public bool F(T r1, T r2)
{
return r1 == r2;
}
}
...
26
votes
18answers
2k views
Is there any use for Bash scripting anymore?
I just finished my second year as a university CS student, so my "real-world" knowledge is lacking. I learned Java my first year, continued with Java and picked up C and simple Bash
scripting my ...
25
votes
4answers
7k views
Protocol Buffers versus JSON or BSON
Does anyone have any information on the performance characteristics of Protocol Buffers versus BSON (binary JSON) or versus JSON in general?
Wire size
Serialization speed
Deserialization speed
...
24
votes
5answers
10k views
Looking for pros/cons of using GWT or JSF [closed]
I'm a long time Java developer who has been building UI with Adobe Flex for the past few years. I'm looking to broaden my repertoire with a RIA technology that runs in a plain-old browser, no ...
24
votes
6answers
1k views
php == vs === operator
What is the difference between == and === in php. I am unsure when to use both.
Updated note: So that it shows up in StackOverflow search, the difference between == and === is the same as the ...
23
votes
15answers
13k views
Best graphical source code diff viewer/editor for code comparison and merging?
The options for source code diff viewing/editing/merging seem to be:
Free:
Tortoise Merge
Meld *
WinDiff
WinMerge *
DiffMerge *
KDiff3 *
AJC Diff
Diffuse
Commercial:
Total Commander's Diff ...
23
votes
14answers
10k views
When to use an interface instead of an abstract class and vice versa?
This may be a generic OOP question. I wanted to do generic comparison between an interface and an abstract class on the basis of their usage. When would one want to use and interface and when would on ...
22
votes
7answers
3k views
Scala versus F# question: how do they unify OO and FP paradigms?
What are the key differences between the approaches taken by Scala and F# to unify OO and FP paradigms?
EDIT
What are the relative merits and demerits of each approach? If, in spite of the support ...
22
votes
7answers
10k views
Eclipse PDT vs. NetBeans for PHP development
How does Eclipse PDT compare to NetBeans for PHP development?
I just bought a new computer with Windows 7 and I'm starting to set up a development environment for PHP. Has anyone used both IDEs ...
22
votes
14answers
16k views
Which PHP framework should I choose between ZendFramework and YII?
Which PHP framework should I choose between ZendFramework or YII?
Points I need to consider:
Performance (assuming an accelerator is used)
Documentation
stability of framework
less to code.
22
votes
15answers
5k views
Is Drupal ready for the enterprise?
Is anyone out there using Drupal for large scale, business critical enterprise applications?
Does Drupal's lack of database transaction support dissuade potential users?
Are there any other ...
21
votes
4answers
3k views
.net ORM Comparison
I was talking with someone about the Entity Framework, and I'm not really into it yet, but I'd like to learn it. However, I'm still kinda confused whether I should learn it or not. I've heard a lot of ...
21
votes
2answers
2k views
How does Python compare string and int?
The following snippet is annotated with the output (as seen on ideone.com):
print "100" < "2" # True
print "5" > "9" # False
print "100" < 2 # False
print 100 < "2" ...
21
votes
24answers
7k views
Is C faster than C++? [closed]
I've heard many opinions on this subject, but never saw any good proofs that C is faster than C++. So, ...is C faster than C++?
EDIT: This is a Runtime comparison.
21
votes
14answers
6k views
Tool or library for comparing xml files
I am looking for an XML comparing tool that understands xml. It cannot be a line by line comparision like WinMerge or Beyond Compare.
An ideal solution would be one that shows changes similar to the ...
20
votes
7answers
5k views
Why would you use Oracle database?
I'm curious for technical reasons why you choose Oracle database versus the latest flavors of:
1) Microsoft SQL Server
2) MySQL
3) PostgreSQL
What features or functionality justify the extra cost.
...
19
votes
2answers
5k views
Comparison of Clojure web frameworks
There are a few web frameworks for Clojure
Compojure
Webjure
Conjure
Moustache
and also some libraries for dealing with certain web development subtasks, such as
Enlive for templating
Hiccup for ...