13,961 reputation
22956
bio website
location
age
visits member for 2 years
seen 20 hours ago
stats profile views 476

May
13
comment Programming Style in Large Scale C++ Applications
Great answer... additional point: age of the project. A vast majority of large C++ code bases have been around 10, 15 or even 20 years (QT began development in 1991). They date back to when C++ was not much more than "C with Classes" - and OO was a new paradigm. Much has changed, but that code remains....
May
13
comment Is .NET slowly becoming the language for old people?
@Robert: With you - Ruby/Python etc is so 00's. If .NET programmers are OLD, whats a C Programmer like me?
May
10
revised Who should support and maintain development infrastructure?
added 502 characters in body
May
10
answered Who should support and maintain development infrastructure?
May
9
comment Preventing Web Users From Using Their Location Bar Within An App
@MichaelT: I think you have hit the nail on the head - disabling the nav. bar is a band-aid on a broken bone. If you apply enough band-aids it might help for a short time, but better to put it in a cast......
May
6
comment Modify then sell another person's code
@MarkJ: Taking legal advise from strangers on the internet is questionable. Giving it more so, especially as you are wrong. A letter that "Gives you permision in writing" is quite a different proposition a contract that a lawyer will draw up. Will that permission spell out liabilty, accountability, declare right to give permission........ Think a poker game, "I'll see your letter and raise you a contract"
May
6
comment Why does gmail use java? Is there really a advantage over something like php or python?
Is this answer conjecture, or based on pubished or first hand knowledge?
May
3
comment What needs to change for Software Engineering to become a formal profession?
The similarity to Prostitution is mildly disconcerting....
May
3
comment Handling compiler bugs in Continuous Integration
Option 4: Change the source code so the error is not exposed. The build is broken, the normal way to fix a broken build is change the source code.
Apr
28
awarded  Yearling
Apr
23
comment Why is C so high in TIOBE index of popularity, while C++ is just under here too, but not as popular?
Add to this, most industrial control, most embedded systems, Automotive industry. The core of everything written before 1995 (That is not Cobol or Ada).....
Apr
21
comment Is GCC dying without threads support on Windows?
I would almost argue given the inability of average programmers to write reliable multi-threaded apps, no thread support is a bonus.....
Apr
21
comment Why are semicolons and commas interchanged in for loops?
"Why Not" will provide the answer - by having the same answer - "Because someone needed to make a choice, and that is the choice they made" Same as "Why did they choose "{" and "}" and 1000 other choices they made - "Because".
Apr
21
comment Is it possible to reach absolute zero bug state for large scale software?
Are we presuming defect free requirement?
Apr
21
comment Is it possible to reach absolute zero bug state for large scale software?
@Blrf: More importantly, If the end user does not know theres a bug, does it exist?
Apr
18
comment Is there any difference between pointers and references?
@blank: Under the bonnet (assuming a C++ style differentiation) they are the same. However the syntax differences make the difference in use significant.
Apr
18
comment Is there any difference between pointers and references?
Pointers and references are nothing to do with OOP vs Procedural.
Apr
17
comment How important is it to reduce the number of lines in code?
Studies that show (ref a)LOC===Bugs are a dime a dozen. Its a well known and accepted fact. What has not been shown (to my knowledge) is (ref b)"Reduce LOC in a code base === Reduce Bugs in that code base". Extrapolating (ref a) to claim (ref b) is unscientific. Publishing a paper that proves or disproves the relationship would be.
Apr
17
comment Possible solutions for sharing working copy of project between multiple computers?
I have used the model of central SVN and git-svn very successfully - including supporting remote development sites with it.
Apr
17
awarded  Nice Answer