0
votes
6answers
39 views
Convert dates to hours
Hello all,
I'm trying to work with dates for the first time, I did it something about that with Flash but it's different.
I have two different dates and I'd like to see the differ …
0
votes
6answers
2k views
Calculate elapsed time in Java / Groovy
I have...
Date start = new Date()
...
...
...
Date stop = new Date()
I'd like to get the years, months, days, hours, minutes and seconds ellapsed between these two dates.
-- …
1
vote
3answers
44 views
Comparing ruby hashes
Hi
I have two ruby hashes (which are essentially models) and am trying to find the differences between them, one is an old instance of an object where the other has new values ass …
1
vote
6answers
69 views
Difference between \n and \r?
Whats the difference between \n (newline) and \r (carriage return)?
Edited to add: All the answers are fairly predictable, but I'd be interested to know if there are any PRACTICAL …
0
votes
1answer
17 views
How do I choose between innerText or nodeValue?
Hi,
When I need to change a text within a span element, which one should I use and what is the difference:
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnD …
3
votes
5answers
59 views
Is there a difference between using “this” and “prototype” in Javascript here?
Hi,
Is there a difference between the two codes below, I presume not.
function Agent(bIsSecret)
{
if(bIsSecret)
this.isSecret=true;
this.isActive = true;
this.i …
0
votes
1answer
70 views
how are wpf and silverlight different?
can anyone tell me what is the difference in wpf and silverlight, what features has been added and removed from wpf in order to get silverlight.
0
votes
2answers
52 views
Using ‘diff’ (or anything else) to get character-level diff between text files
Hi everyone,
I'd like to use 'diff' to get a both line difference between and character difference.
For example, consider:
File 1
abcde
abc
abcccd
File 2
abcde
ab
abccc
Usi …
6
votes
7answers
1k views
Difference between Enum and Define Statements
What's the difference between using a define statement and an enum statement in C/C++? (and is there any difference when using them with either C or C++?)
Thanks
1
vote
2answers
32 views
What’s the difference between “::” and “sys” schemas?
As far as I know, BOL exmaple on fn_trace_getinfo used to use
:: instead of sys schema in the example like following
From
SELECT * FROM ::fn_trace_getinfo(default)
To
SEL …
-2
votes
12answers
352 views
Saying “C & C# are equal by functionality, but not by concept”
An argument has been raised in my class regarding C and C#.
I stated that it's correct to say that C & C# are the same (meant: same by functionality, but not by concept).
Dif …
1
vote
2answers
145 views
What is the difference between ~ and ! operator?
Please let me know the difference between ~ and ! operator in java.
0
votes
1answer
54 views
Difference in compiler design for OOP languages
Hello. I'm doing a research on how the design compiler for an OOP language differs from traditional imperative languages. I'd just like some topics to send me on my way, and if you …
0
votes
8answers
127 views
What is the advantages an interpreted language has over a compiled language? [closed]
Possible Duplicate:
What’s with the love of dynamic Languages
I have already read this, but I do not get it.
What use is making your own interpreter. Also, it says …
0
votes
2answers
78 views
Readable way of knowing if there is at least one difference between two Map<Long, Integer> in Java ?
I have two maps of type Map<Long, Integer>, one named "old" representing the old state of an object, and the other named "new" representing the new state of the same object.
…
