quant_dev

1,046
Reputation
313 views

Registered User

Name quant_dev
Member for 10 months
Seen 20 hours ago
Website
Location
Age 29
Nov
27
comment How to train junior programmers in code review?
OVERTONE, hitting him will get you fired and possibly sentenced to jail/damages payments.
Nov
22
comment How to train junior programmers in code review?
Do it US style: waterboarding.
Nov
21
comment Great programming quotes
+1 for a quote from a great book.
Nov
21
comment Great programming quotes
Yeah, java.util.Date should be buried. No -- burned, dissolved in acid and ejected into outer space.
Nov
21
comment Great programming quotes
It applies to the Java system I work on, too ;-)
Nov
21
comment Why is argc an ‘int’ (rather than an ‘unsigned int’)?
The times when C ruled are over, and that's what I meant.
Nov
20
answered Why is argc an ‘int’ (rather than an ‘unsigned int’)?
Nov
8
answered How to get the name of the calling class in Java?
Nov
1
comment Open Source Java Profilers
I've never been able to set TPTP up. Perhaps I'm too dumb to use it.
Nov
1
answered Java: Double Value Comparison
Nov
1
comment Java: Double Value Comparison
@KG I disagree. quantdev.blog.co.uk/2009/09/…
Oct
25
answered Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
Oct
25
comment Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
System time is not an entropy source, because it's predictable. I'm not sure about the number of free bytes, but I doubt it's a high-quality entropy source either. By sending more requests to the server, the attacker can cause the number of free bytes to decrease, making it partially deterministic. You application becomes an attack vector because by depleting the entropy pool, it forces the other, security-critical application to use less-random random numbers -- or wait until the entropy source is replenished.
Oct
20
comment In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
I have clarified the question. I was using G++ 4.3.x. Thanks.
Oct
20
revised In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
clarifying
Oct
18
comment In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
Hmm, I don't know which answer should I accept :)
Oct
18
comment In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
Thank you, kind Sir.
Oct
18
revised In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
edited tags
Oct
18
asked In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
Oct
15
comment g++ doesn’t like template method chaining on template var?
After the edit, this discussion doesn't make sense anymore :)
Oct
15
comment g++ doesn’t like template method chaining on template var?
This works. See also: publib.boulder.ibm.com/infocenter/comphelp/…
Oct
15
comment g++ doesn’t like template method chaining on template var?
I think one should file a bug report when one is certain that valid code is not being compiled. You may file a bug report about an unhelpful error message, though.
Oct
15
comment g++ doesn’t like template method chaining on template var?
That's a waste of their time.
Oct
12
comment deleting char ** correctly?
I don't know the answer, but why don't you simply use nested std::vector<double>?
Oct
9
comment Setting up a new Java development shop
It was working like that when I joined the team, so I don't know whether there were any transition period problems. But now, nobody complains. The benefits are obvious - it is easy to track what task a particular commit relates to.
Sep
21
comment Setting up a new Java development shop
Put a pre-commit hook into SVN to check for the commit ticket number in the commit message and then check whether the ticket is in the required state and is owned by the commiter.
Sep
19
comment Should programmers be excellent typists?
He is a man with a lot of opinions.
Sep
17
comment Array access optimization
PS. Same question about the lest paragraph... I wrote that the null check itself should be cheap.
Sep
17
comment Array access optimization
Did you read the first two sentences of my answer, Soonil?
Sep
16
comment Best way to judge the performance of a tester
The one who you hate the most is the best one :)
Sep
15
revised Array access optimization
i can't spell
Sep
15
revised Array access optimization
language
Sep
15
accepted Array access optimization
Sep
15
answered Array access optimization
Sep
15
comment Array access optimization
On the other hand, code branches may decrease performance, so he may be better off with a solution which avoids conditional execution of the code.
Sep
15
comment Array access optimization
With a modern JVM, null checks are very fast, so this is not a problem. He only needs to remember to check for them.
Sep
12
answered How to break circle of evening stupidity?
Sep
10
comment What are five things you hate about your favorite language?
Not true. "final" for methods and classes has different meaning than "final" for variables. For variables, "final" is not the same as "const" in C++, see stackoverflow.com/questions/502430/… There is simply no "const correctness" in Java, you can declare an array as "final" and modify its contents.
Sep
9
comment Are there libraries for Square Root over BigDecimal?
OK, so using BigDecimal you can have more digits in your final result (the square root). Did you verify that these digits make any sense?
Sep
8
comment Detecting if two number ranges clash
I have edited my answer to reflect your illustrious comments.
Sep
8
revised Detecting if two number ranges clash
added 64 characters in body
Sep
8
comment Are there libraries for Square Root over BigDecimal?
Well, dude, I commented the question in my first comment, and then you came over and hijacked the topic.
Sep
8
comment Detecting if two number ranges clash
@Matthew: Right @jeffamaphone: Well, that's what you mean by a "range", isn't it?
Sep
8
answered Does removing comments improve code performance? JavaScript.
Sep
8
answered Detecting if two number ranges clash
Sep
6
answered Are there libraries for Square Root over BigDecimal?
Sep
6
revised How lean do my C++ exception classes really need to be?
clarification; edited body
Sep
6
revised How lean do my C++ exception classes really need to be?
added 11 characters in body
Sep
6
answered How lean do my C++ exception classes really need to be?
Sep
6
accepted Naming convention for a variable that works like a constant