40
votes
17answers
11k views
What is “missing” in the Visual Studio Express Editions?
In particular,
what functionality is not available?
what restrictions are there on its use?
36
votes
9answers
1k 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 …
28
votes
25answers
2k 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 …
26
votes
24answers
3k views
What’s the advantage of using C over C++ or is there one?
Since C++ seems to have all of C's features, why learn C over C++?
24
votes
13answers
3k 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, …
20
votes
9answers
9k views
Advantages of MS SQL Server 2008 over MS SQL Server 2005?
What are the key differences between MS SQL Server 2005 and 2008?
Are there any compelling reasons for upgrading (any edition, as I have a customer with multiple editions)? Or can you point to a …
18
votes
6answers
2k 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 = …
17
votes
3answers
795 views
What’s the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, …)
Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between "leg" and "cmp"? Or "eqv" and ===?
Does anyone have a good summary?
16
votes
18answers
1k 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? …
16
votes
16answers
2k 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? …
15
votes
5answers
579 views
Can I convert the following code to use generics?
I'm converting an application to use Java 1.5 and have found the following method:
/**
* Compare two Comparables, treat nulls as -infinity.
* @param o1
* @param o2
* @return -1 if …
14
votes
6answers
488 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 …
13
votes
13answers
1k 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 …
13
votes
8answers
1k 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 …
13
votes
11answers
2k views
Common Lisp or Scheme?
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to eachother?
