1
vote
2answers
48 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 …
0
votes
2answers
39 views
What is the difference between SSCLI 2.0 (ROTOR) and .NET?
Is there a large difference between the SSCLI 2.0 and .NET, I know that Microsoft wouldn't release their garbage collector or JIT compiler and simpler implementations are used, but as far as the rest …
3
votes
4answers
120 views
Preferred implementation of ‘<’ for multi-variable structures
Initially this may seem overly abstract or philosophical, but I am genuinely interested to see if someone has a convincing argument in favor of one implementation over the other.
Given operator< …
0
votes
2answers
38 views
Odd comparison problem in checking for anagram
I'm sorry, the title's awful; however, I couldn't think of any better way to summarize my plight.
In trying to solve a problem involving checking to see if one string is an anagram of another, I …
2
votes
0answers
79 views
Comparison between Erlang and nginx [closed]
Are there any comparisons between nginx and Erlang web servers. I found this http://www.joeandmotorboat.com/2009/01/03/nginx-vs-yaws-vs-mochiweb-web-server-performance-deathmatch-part-2/ but the tests …
1
vote
8answers
121 views
C++/CLI : Advantages over C#
Is there any major advantage of managed C++/CLI over C#. Definitely not the syntax I suppose as the following code in C++/CLI is real ugly,
C++/CLI code:
[Out]List<SomeObject^>^% someVariable
…
0
votes
6answers
286 views
How do I compare two Integers?
This sounds like a stupid question, but I'm kinda stuck here.
I have to compare two Integer (not int). How do I compare them?
Integer x = ...
Integer y = ...
I can think of this:
if (x == y)
…
2
votes
3answers
46 views
get NSDate today, yesterday, this Week, last Week, this Month, last Month… variables
what i am trying to do is to get NSDate today, yesterday, this Week, last Week, this Month, last Month variables ready for comparison
for headers to be added on UITableView's titleForHeaderInSection
…
2
votes
10answers
116 views
String Compare “Logic”
Can anybody please tell me why the string comparisons below deliver these results?
>>"1040"<="12000"
True
>> "1040"<="10000"
False
I've tried the string comparison in both C …
2
votes
2answers
37 views
How can you compare sets of numbers and get the most relevant results using MySQL and PHP?
Consider this:
set A: 1 2 3 4
set B: 3 4 5 6
set C: 4 5 6 7
set D: 1
I want to compare D with the rest and get as a result a set of numbers as most relevant.
The result should be in this …
0
votes
2answers
76 views
GridView vs DataList vs Repeater vs ListView
Hello all,
I have read some articles about this matter... and it seems that the Repeater is the one with best performance as explained in this other question:
I know that the GridView is the …
2
votes
1answer
85 views
Emacs Lisp: difference between (function (lambda …)) and (lambda …)?
What is the difference between
(function (lambda ...))
and
(lambda ...)
and
'(lambda ...)
?
It seems three are interchangeable in a lot of cases.
0
votes
2answers
66 views
Best way to write an or is equal statement
Hello $mostamazingforumforfastanswersever.
I have a quick silly question; what is the best way to write this :
if ($curpageurl == "www.mysite.com/this" || "www.mysite.com/this/")
{
echo 'this is …
0
votes
2answers
66 views
How to compare groups of tuples in sql
How to compare groups of tuples in sql: consider the following example:
TABLE T1
--------
GROUP VALUE
----- -----
A FOO
A BAR
X HHH
X ZOO
TABLE T2
--------
…
0
votes
3answers
99 views
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true?
I'm attempting to use reflection to determine the result of a call to .Equals on two different but "equal" instances of a type.
My method would be something like:
public static bool …
