T.E.D.

7,615
reputation
1179 views

Registered User

name T.E.D.
member for 1 year
seen 2 days ago
website
location
age
18h
awarded  Good Answer
2d
comment Header inclusion optimization
Include files are pretty much by definition poorly organized. For instance: If I'm suddenly missing symbol foo from an API three #includes deep, how am I to know that foo happens to be defined in jobob.h somewhere in one of the include subdirectories under the Windows distribution? Other than searching the whole harddrive (or Googling "foo" and hoping I get lucky), I'm not.
2d
comment Header inclusion optimization
I'm a big fan of #pragma once
2d
answered Header inclusion optimization
Dec
4
awarded  Necromancer
Dec
4
awarded  Great Answer
Dec
3
comment How is each byte in an integer stored in CPU / memory?
Lol. Picking stupid_idiot as your screen name means never having to say "I'm sorry".
Dec
3
answered Where did the octal/hex representations come from?
Dec
3
comment Where did the octal/hex representations come from?
C was created to help build the first Unix OSes. So early on the C "world" and the Unix "world" were the same world.
Dec
3
comment Where did the octal/hex representations come from?
Same. This is precisely how the rest of C was "designed".
Dec
3
revised What was the first programming language to allow arbitrary length variable names?
added 105 characters in body
Dec
3
revised What was the first programming language to allow arbitrary length variable names?
added 265 characters in body
Dec
3
answered What was the first programming language to allow arbitrary length variable names?
Dec
2
comment Ada Ada.Containers Clear Procedure Problem
Actually, your Ada compiler can return data however it likes. If you require a reference passing mechanisim, you must either pass the parameter using the "access" method, or you should use pass a reference to the data type instead. I think the only exception is tagged types, which have to be passed by reference.
Dec
2
comment Where did the octal/hex representations come from?
Gotta love someone who talks about C++ like its ancient history.
Dec
2
comment What question should be asked to test the interview candidate’s knowledge of references in C++ ?
I'm not sure a true 7/10 would know that. If you are trying to catch someone lying, ask a 5/10 question.
Dec
1
answered Proper layout of a C++ header file
Dec
1
answered Storing variable sized strings in structures
Dec
1
revised “Missing full declaration for private type..” in Ada
Fixed miscapitalization of the language name "Ada"
Dec
1
comment Character column parsing in Boost::Spirit
FYI: This is Spirit 2.1 code, which means it works with the newly-released Boost (1.41) but might not compile with earlier versions.
Nov
30
answered Forcing C++ compilers to check for exception handling
Nov
30
answered When can a design pattern make your software worse?
Nov
30
comment Why Use Lexical Analyzers?
You can write your own lexer, yes. However, to do it right like flex does, fast and efficient, you have to check each character against every character at that token position in your entire grammar one by one until one (and only one) is regognized. Implementing a state machine like that is most efficiently done with extensive use of gotos. That may be OK for someone who knows what they are doing on a simple grammar, but generally such things are best left to tools.
Nov
30
answered Why Use Lexical Analyzers?
Nov
25
accepted Morris Internet Worm - anyone knows how did they manage to stop it?
Nov
25
revised Morris Internet Worm - anyone knows how did they manage to stop it?
added 20 characters in body
Nov
25
comment Morris Internet Worm - anyone knows how did they manage to stop it?
You might wanna look at some of the resources linked on the bottomw of the wiki page en.wikipedia.org/wiki/Morris_worm . If I had to guess, it would be that the patch recognized an attack and made itself unresponsive to the system on the other side in that case. One of those links might talk about it in detail though.
Nov
25
revised Morris Internet Worm - anyone knows how did they manage to stop it?
added 183 characters in body; added 47 characters in body
Nov
25
answered Morris Internet Worm - anyone knows how did they manage to stop it?
Nov
25
comment Programming languages that compile to native code and have the batteries included
For most UI work, I've found I'm much happier using the native OS GUI support. Portable frameworks never look quite right, and they always manage to abstract away something I want.
Nov
25
comment Ultra simple version control
ClearCase is pretty much the opposite of ultra-simple.
Nov
25
answered Using a “take-home” coding component in interview process
Nov
25
comment A phrase as catchy as ‘Feature Creep’ but for underestimated projects
It still applies to succesful projects. The term is about the jouney, not the destination.
Nov
25
answered A phrase as catchy as ‘Feature Creep’ but for underestimated projects
Nov
25
revised Programming languages that compile to native code and have the batteries included
added 3 characters in body; edited body
Nov
25
comment How to log exceptional situations in C++?
No, I'm saying nothing of the sort. For example, our standard exception class has a log message as a member. That can get thrown with the exception. The the catch handler has the choice of logging the exception with either its own message, the thrown message, or both.
Nov
25
answered Programming languages that compile to native code and have the batteries included
Nov
25
answered How to log exceptional situations in C++?
Nov
24
answered How do you estimate a ROI for clearing technical debt?
Nov
24
answered Using Boost on Windows (Visual Studio)
Nov
23
comment What are the worst working conditions you have written code in?
Perhaps. But unless the company's objectives are to conduct a study in stress reactions in software developers, the manager had better make it their job to make sure that their people can do theirs as efficiently as possible.
Nov
23
comment Why should one bother with preprocessor directives?
#include, and the associated #ifdef...#define are only required because neither C nor C++ has seen fit to create a proper interface facility, as can be found in Pascal, Modula-2, Ada, and pretty much every modern language. This is just a preprocessor hack that everyone has gotten used to.
Nov
23
comment Why should one bother with preprocessor directives?
...or by creating a proper language construct for handling interfaces to other compilation units, rather than relying on this 40 year old preprocessor hack. (Let's not forget the extra #ifdef everybody has to put around everything in their included file to get the proper desired behavior of a real interface).
Nov
23
comment Adsense not displaying on HTC Hero
No upvote for you, but +1 for the HTC Hero. :-)
Nov
23
revised Why should one bother with preprocessor directives?
added 35 characters in body
Nov
23
comment Why should one bother with preprocessor directives?
Actually, I hate this style. When I'm reading someone else's code to track down a problem, I'm never really sure if I should be seeing those debug messages or not.
Nov
23
answered Why should one bother with preprocessor directives?
Nov
23
comment Does the Visual Studio C compiler have an equivalent to GCC’s -M?
Does that work with gcc's -M flag? Most compiler flag mappings would be trivial, but that one pretty much requires the pre-processor (or something like it) to run.
Nov
23
answered Does the Visual Studio C compiler have an equivalent to GCC’s -M?
Nov
23
answered Thread local storage used anywhere else?