0
votes
4answers
51 views
Simple read vs write boolean variable performance comparison question
What should be the preferred way by programmers:
1) Only Write:
SomeBoolean = True
2) Read but write only if necessary
If Not SomeBoolean Then SomeBoolean = True
34
votes
26answers
3k views
Why use Ruby instead of Smalltalk?
Ruby is becoming popular, largely from the influence Ruby on Rails, but it feels like it is currently struggling through its adolescence. There are a lot of similarities between Ru …
86
votes
27answers
12k views
Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever?
It seems that jQuery has taken the throne for JavaScript frameworks and I was wondering exactly why. Is there a technical reason for this or is it just that they have evangelists? …
0
votes
2answers
67 views
Is EXE locked (vs DLL)?
If I put all my controls inside the EXE, is it accessible from outside like it would be accessible when it's placed in a DLL?
66
votes
25answers
5k views
What does Ruby have that Python doesn’t, and vice versa?
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y …
1
vote
4answers
303 views
Devexpress ExpressQuantumTreeList vs. Virtual Treeview ?
From experience, what is the best general purpose tree list for Delphi: Virtual Treeview or Devexpress ExpressQuantumTreeList ? I'm currently using the Virtual Treeview, which is f …
0
votes
7answers
468 views
Boo vs C# vs Python? [closed]
I was (yes, was) a Python (and before VB6) lover until tried to create GUI applications. It is very (very) difficult to create a GUI, and making executables (A hello world app was …
1
vote
4answers
256 views
Boost - “static” vs “shared” libraries
Hello,
I am building "boost" libraries from boost source code and I have two options: to build it "static" or to build it "shared" (e.g. dynamic). Which is better idea?
I prefer d …
5
votes
5answers
480 views
AnkhSVN vs VisualSVN
We're thinking of switching to SVN at my work, so I was wondering about SVN plugins for VS2008 (and 2010 when it comes out). After a bit of research I found AnkhSVN and VisualSVN, …
1
vote
2answers
205 views
SQLDataSource vs ObjectDataSource
If a web page needs some data, why not just have a SQLDataSource call a stored procedure? Why use an ObjectDataSource to call a business object that then calls the stored procedure …
7
votes
5answers
324 views
Reporting vs. Coding - thoughts?
Recently I had a project in which I had to get some data from particular software system to a portlet. The software used a database, and I spent a fair bit of time modeling the da …
10
votes
5answers
1k views
Aspect Oriented Programming vs. Object-Oriented Programming
Like most developers here and in the entire world, I have been developing software systems using object-oriented programming (OOP) techniques for many years. So when I read that as …
1
vote
3answers
368 views
Website Analytics - haveamint.com or Google Analytics?
Is there a comparative analysis available for Mint and Google Analytics which can help me decide which one to implement in my situation?
1
vote
6answers
312 views
Need help converting C# to vb. “array initializer is missing 1 elements”
Hello people,
I am trying to convet the following code from C# to Vb using 3.5 framework.
Here is the code in C# that I am having trouble with.
MethodInfo mi = typeof(Page).GetMe …
3
votes
5answers
602 views
Java vs .NET Platform [closed]
Which is a better platform between Java and .NET in terms of:
The ability to migrate from one platform version to another version (binary incompatibility)
The frequency of versio …
