User T.E.D. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:50:18Zhttp://stackoverflow.com/feeds/user/29639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1835465/where-did-the-octal-hex-representations-come-from/1840855#18408551Answer by T.E.D. for Where did the octal/hex representations come from?T.E.D.2009-12-03T15:56:35Z2009-12-03T15:56:35Z<blockquote>
<p>Is there a natural progression for base-32?</p>
</blockquote>
<p>This is parth of why Ada uses the form 16# to introduce hex constants, 8# for octal, 2# for binary, etc.</p>
<p>I wouldn't concern myself too much over needing space for "future growth" in basing though. This isn't like RAM or addressing space where you need an order of magnitude more every generation.</p>
<p>In fact, studies have shown that octal and hex are pretty much the <em>sweet spot</em> for human-readable representations that are binary-compatible. If you go any lower than octal, it starts to require a rediculous number of digits to represent larger numbers. If you go any higher than hex, the math tables get rediculously large. Hex is actually a bit too much already, but Octal has the problem that it doesn't evenly fit in a byte.</p>
http://stackoverflow.com/questions/1840179/what-was-the-first-programming-language-to-allow-arbitrary-length-variable-names/1840297#18402970Answer by T.E.D. for What was the first programming language to allow arbitrary length variable names?T.E.D.2009-12-03T14:43:07Z2009-12-03T15:02:12Z<p>I'm having trouble finding a good language reference, but I'm pretty sure the first widely known general-purpose programming language to specify no identifier limit in the language would be Algol. </p>
<p>The language was created in 1958, one year before the first Lisp and Cobol implementations, and one year after Fortran II (which had an identifier limit).</p>
<p>Bonus trivia tidbit: Backus-Naur form (BNF) was created specifically to describe the syntax of Algol.</p>
http://stackoverflow.com/questions/1829266/proper-layout-of-a-c-header-file/1829373#18293731Answer by T.E.D. for Proper layout of a C++ header fileT.E.D.2009-12-01T22:24:21Z2009-12-01T22:24:21Z<p>It depends on what you mean by <em>proper</em>. If you mean language-enforced, there really isn't one. In fact, you don't even have to name it ".h". I've seen ".c" files <code>#include</code>'d in working commercial code (name withheld to protect the guilty). #include is just a preprocessor hack to get some kind of rough modularity in the language by allowing files to textually include other files. Anything else you tend to see as standard practice is just useful idioms people have developed over time.</p>
<p>That doesn't help your current issue though.</p>
<p>I'd guess that what you are actually seeing is a lot of missing symbols due to platform differences. Nothing due to weirdly-formed .h files at all.</p>
<p>It is possible that the old code was written to work with an old K&R-style C compiler. They had oddities like implicit function declarations (any reference to an undeclared routine assumed it returned int and all its parameters were int). You could try seeing if your compiler has a K&R flag, but a lot of the flagged stuff may actually be latent errors in the old code.</p>
http://stackoverflow.com/questions/1828021/storing-variable-sized-strings-in-structures/1828159#18281590Answer by T.E.D. for Storing variable sized strings in structuresT.E.D.2009-12-01T19:01:09Z2009-12-01T19:01:09Z<p>This is really a <em>parsing</em> problem you are describing. Once you realise what the problem is, you are already most of the way to the solution.</p>
<p>It is tough to get more specific with you, as you don't really describe what you need done with the data. But typically you can do simple parsing inlne. In this case, perhaps you'd want a little routine that recognizes "blah" and EOL and "end", and tells you which it found at a given string location.</p>
<p>Then you can have a parse_line routine that recognizes an entire line (expecting any number of "blah"s ending with a EOL).</p>
<p>Then you can have a parse routine that calls parse_line your given number of times (10?), and then errors if "end" isn't found.</p>
http://stackoverflow.com/questions/1820174/forcing-c-compilers-to-check-for-exception-handling/1820436#18204360Answer by T.E.D. for Forcing C++ compilers to check for exception handlingT.E.D.2009-11-30T15:21:09Z2009-11-30T15:21:09Z<p>One thing you <em>can</em> do in C++ with exceptions is use exception specifications on your functions. That doesn't actively <em>prevent</em> non-listed exceptions from being thrown from that function, but it makes them errors (and maps them all to the predefined <code>unexpected()</code>.</p>
<p>So <code>int f() throw ();</code> is C++ for "treat any exception being raised from function f as an error". </p>
http://stackoverflow.com/questions/1820106/when-can-a-design-pattern-make-your-software-worse/1820403#18204030Answer by T.E.D. for When can a design pattern make your software worse?T.E.D.2009-11-30T15:16:35Z2009-11-30T15:16:35Z<p>In general, when a coder takes the attitude that patterns are the lego-like bricks one builds software out of, you get some really odd code.</p>
http://stackoverflow.com/questions/1820103/why-use-lexical-analyzers/1820306#18203061Answer by T.E.D. for Why Use Lexical Analyzers?T.E.D.2009-11-30T14:57:39Z2009-11-30T14:57:39Z<p>Any time you are converting an input string into space-separated strings and/or numeric values, you are performing lexical analysis. Writing a cascading series of <code>else if (strcmp (..)=0) ...</code> statements counts as lexical analysis. Even such nasty tools as sscanf and strtok are lexical analysis tools.</p>
<p>You'd want to use a tool like flex instead of one of the above for one of several reasons:</p>
<ul>
<li>The error handling can be made much better.</li>
<li>You can be much more flexible in what different things you recognize with flex. For instance, it is tough to parse a C-format hexidecimal value properly with scanf routines. scanf pretty much has to <em>know</em> the hex value is comming. Lex can figure it out for you.</li>
<li>Lex scanners are faster. If you are parsing a lot of files, and/or large ones, this could become important.</li>
</ul>
http://stackoverflow.com/questions/1799670/morris-internet-worm-anyone-knows-how-did-they-manage-to-stop-it/1799689#17996894Answer by T.E.D. for Morris Internet Worm - anyone knows how did they manage to stop it?T.E.D.2009-11-25T20:18:00Z2009-11-25T20:42:55Z<p>It used a vulnerability in older versions of sendmail, finger, and rsh (primarily sendmail though, IIRC). The fix was as simple as going out and getting yourself the latest versions of those servers.</p>
<p>What would have stopped the initial spread is precisely what stops the spread of human viruses: Lack of new uninfected vulnerable hosts reachable from the infected ones. It could only infect old Sun3 systems or Vaxen with one of the right versions of Unix (many if not most Vaxes at the time ran VMS instead) and unpatched versions of finger or sendmail or rsh servers.</p>
http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1799084#17990841Answer by T.E.D. for Using a "take-home" coding component in interview processT.E.D.2009-11-25T18:41:16Z2009-11-25T18:41:16Z<p>I've never encountered this myself, but I have heard of people requesting interviewees bring a sample of their work to the interview (or to submit it with the resume'). It would be sort of like asking an artist (or model) to see their portfolio.</p>
<p>I'd think asking that up front would be more effective than assigning your interviewees "homework". It also keeps the candidate from feeling like they are possibly being used to do your coding for free.</p>
http://stackoverflow.com/questions/1797810/a-phrase-as-catchy-as-feature-creep-but-for-underestimated-projects/1798037#17980371Answer by T.E.D. for A phrase as catchy as 'Feature Creep' but for underestimated projectsT.E.D.2009-11-25T16:13:08Z2009-11-25T17:00:03Z<p>I once interviewed for a position on what had to be the ultimate Death March project. I was at Lockheed Martin at the time. Here's what I discovered <em>at the interview</em>:</p>
<ul>
<li>The project was almost entirely staffed by engineers pulled off of the layoff list. Pretty much the dregs of the company.</li>
<li>They were using castoff equipment from the rest of the company for their software development.</li>
<li>15 hours a week of overtime was mandatory, and would be for the foreseeable future.</li>
<li>They didn't even have cubicles. Everyone worked in one great big open bullpen with wires strung everywhere.</li>
<li>They had attempted to deliver this project once before, but the customer rejected it and made them try again.</li>
<li>They were so far over budget and so late that nobody was even bothering to track it anymore.</li>
<li>They wanted to cancel the project, but their customer was the government of Egypt and they were threatening to stop a large order of F-15s until this project was delivered. (The project had nothing whatsoever to do with F-15s). So now they were getting pressure to finish from the Chairman of Lockheed Martin on down.</li>
<li>Engineers visiting the customer site in Egypt had come down with nasty staph infections. One had to be medevacted out to Europe.</li>
</ul>
<p>I swear I practically <em>ran</em> from the room.</p>
http://stackoverflow.com/questions/1797328/programming-languages-that-compile-to-native-code-and-have-the-batteries-included/1797466#17974660Answer by T.E.D. for Programming languages that compile to native code and have the batteries includedT.E.D.2009-11-25T14:55:16Z2009-11-25T15:49:09Z<p>Hmmm. The funny thing is, most OSes have native APIs for all that stuff. So all you really need is a language that can link in OS calls. Pretty much any compiled language worth its salt will do that.</p>
http://stackoverflow.com/questions/1797341/how-to-log-exceptional-situations-in-c/1797435#17974352Answer by T.E.D. for How to log exceptional situations in C++?T.E.D.2009-11-25T14:52:15Z2009-11-25T14:52:15Z<p>If you always want to handle your exceptional conditions immediately after the call, then there is no real advantage.</p>
<p>The advantage comes when you want to handle the condition several layers up the call chain. To do that with your success flag, you'd have to bubble the flag up several layers of subroutine calls. Every layer would have to be written with the knowldege that it has to keep track of the special flag from way down in the bowels of the code. This is just a major primo PITA.</p>
<p>For instance, for realtime work we typically build our applications around an iteration loop. Any error during the loop generally just aborts that iteration of the loop (excepting "fatal" errors, which abort the entire app). The easiest way to handle this is to just throw exceptions from wherever they occur, and handle them all in their own catch blocks at the very outermost of the application.</p>
http://stackoverflow.com/questions/1790431/how-do-you-estimate-a-roi-for-clearing-technical-debt/1790551#17905510Answer by T.E.D. for How do you estimate a ROI for clearing technical debt?T.E.D.2009-11-24T14:48:43Z2009-11-24T14:48:43Z<p>It might be easier to estimate the amount it has cost you <em>in the past</em>. Once you've done that, you should be able to come up with an estimate for the future with ranges and logic even your bosses can understand.</p>
<p>That being said, I don't have a lot of experience with this kind of thing, simply because I've never yet seen a manager willing to go this far in fixing up code. It has always just been something we fix up when we have to modify bad code, so refactoring is effectively a hidden cost on all modifications and bug fixes.</p>
http://stackoverflow.com/questions/1790291/using-boost-on-windows-visual-studio/1790526#17905260Answer by T.E.D. for Using Boost on Windows (Visual Studio)T.E.D.2009-11-24T14:45:38Z2009-11-24T14:45:38Z<p>We actually create our own installer, with just the parts of Boost that we use in our jobs, and give that out to the IT folks to install on developer machines. We also keep that copy of boost in revision control, so we can track dependencies between it and the rest of our system properly, and build it ourselves.</p>
<p>I suppose work-wise this is the worst of both worlds. But it does give us the maximum control.</p>
http://stackoverflow.com/questions/1785572/why-should-one-bother-with-preprocessor-directives/1785728#17857281Answer by T.E.D. for Why should one bother with preprocessor directives?T.E.D.2009-11-23T20:30:01Z2009-11-23T20:36:01Z<p>Generally, preprocessor directives should not be used. Sadly, sometimes you have to in C and C++.</p>
<p>C originally defined the language in such a way that you really couldn't do anything serious with it without using the preprocessor. The language had no other built in support for creating modular programs, constants, inlined code, or to do generic programming.</p>
<p>C++ gets rid of most of these issues but the facility is still there, so it still gets used. (Interestingly, not the modularization one. We're still stuck with <code>#define</code>), </p>
<p>If you want to compare with a language built at a similar-level of abstraction for similar tasks that does not have a preprocessor, go take a look at <a href="http://www.adaic.org/" rel="nofollow">Ada</a>.</p>
http://stackoverflow.com/questions/1784806/does-the-visual-studio-c-compiler-have-an-equivalent-to-gccs-m/1785198#17851980Answer by T.E.D. for Does the Visual Studio C compiler have an equivalent to GCC's -M?T.E.D.2009-11-23T18:52:45Z2009-11-23T18:52:45Z<p>We had the exact same issue with Fortran, and ended up having to write our own mini-compiler to scan the source code and traverse all the <code>#includes</code>.</p>
http://stackoverflow.com/questions/1784975/thread-local-storage-used-anywhere-else/1785165#17851650Answer by T.E.D. for Thread local storage used anywhere else?T.E.D.2009-11-23T18:48:50Z2009-11-23T18:48:50Z<p>These days <code>errno</code> is typically put in thread-local storage.</p>
<p>There are some situations (eg: shared libraries like DLLs that require startup code) where using thread-local storage can be a problem.</p>
http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772596#17725960Answer by T.E.D. for C - the most useful user-made C-macros (in GCC, also C99) ?T.E.D.2009-11-20T19:01:59Z2009-11-20T19:01:59Z<p>TRUE and FALSE seem to be popular.</p>
http://stackoverflow.com/questions/1772395/c-bool-array-as-bitfield/1772556#17725561Answer by T.E.D. for C++ bool array as bitfield?T.E.D.2009-11-20T18:55:11Z2009-11-20T18:55:11Z<p>You may be able to get your compiler to do what you want, but sadly it isn't required. For example, even a nice compiler that accepts the above might end up allocating an entire 32-bit word for your <code>myStruct</code> objects.</p>
<p>If you have the option, and you want that level of control over your types and how they are aligned and allocated, you should probably consider using Ada. For example, the following works just fine in Ada:</p>
<pre><code>type Bit_Set is array (1..8) of Boolean;
for Bit_Set'size use 8;
High_Mask : constant Bit_Set := (1..7 => false, 8 => true);
</code></pre>
<p>...and you now have a single-byte bitmask, and the operators "and", "or", "xor", etc. that work bitwise with it.</p>
http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/1772457#177245724Answer by T.E.D. for What are the worst working conditions you have written code in?T.E.D.2009-11-20T18:38:58Z2009-11-20T18:51:03Z<p>In a 20 year career, the worst jobs for me haven't had anything to do with how late the project was, how good its budget, how many extra hours were required, travel, or how unstable or ridiculous the requirements were. I can still find ways to get things done and have a reasonably enjoyable time in any of those circumstances.</p>
<p>What really makes a job suck for me is when things get <em>political</em>. Management exists to protect us developers from such concerns. When we are instead used as tools or shields for the manager's concerns, then engineers start having to worry about protecting themselves. That often means turning on each other. When you can't trust anyone, you can't have real friends. That destroys the rapport you need to work with any kind of "team", prevents you from losing yourself in "the flow", and just generally sucks any and all enjoyment out of life.</p>
http://stackoverflow.com/questions/1772374/compiling-historical-information-esp-slocs-about-a-project/1772398#17723980Answer by T.E.D. for Compiling historical information (esp. SLOCs) about a projectT.E.D.2009-11-20T18:29:34Z2009-11-20T18:29:34Z<p>If it were me writing software to do that kind of thing, I think I'd dump metrics results for the project into a single file, and revision control that. Then the "historical analysis" tool would have to pull out old versions of just that one file, rather than having to pull out every old copy of the entire repository and rerun all the tests every time.</p>
http://stackoverflow.com/questions/1771366/binary-compatibility-between-linux-distributions/1771515#17715151Answer by T.E.D. for Binary compatibility between Linux distributionsT.E.D.2009-11-20T16:10:37Z2009-11-20T16:19:47Z<p>Windows has it problems with compatability between different realeases, service packs, installed SDKs, and DLLs in general (DLL Hell, anyone?). Linux is not immune to the same kinds of issues.</p>
<p>The compatability issues I have seen include:</p>
<ul>
<li>Runtime library changes</li>
<li>Link library changes</li>
<li>Kernel changes</li>
<li>Compiler technology changes (eg: pre and post EGCS gcc versions. This might be your issue).</li>
<li>Packager issues (RPM vs. APT)</li>
</ul>
<p>In your particular case, I'd have them do a "gcc -v" on their system and report to you the gcc version number. Compare that to what you are using.</p>
<p>You might have to get hold of that version of the compiler to build your half with.</p>
http://stackoverflow.com/questions/1766729/what-is-the-most-complicated-complex-block-of-code-youve-ever-written-for-a-leg/1766825#17668250Answer by T.E.D. for What is the most complicated, complex block of code you've ever written for a legitimate purpose in a real project (up to 20 lines)?T.E.D.2009-11-19T21:51:31Z2009-11-19T21:51:31Z<p>Actually, that's a tough one as I don't tend to <em>allow</em> my code to get complicated. That's a failure of the coder.</p>
<p>However, sometimes I have something rather complicated to accomplish. For example, there is this code which performs a picewise linear interpolation of the value for a given coordinate from a two-dimensional array of coordinate values. Note how long the comment is. With me, that's a bad sign. Also note that this call is recursive.</p>
<pre><code> --------------------------------------------------------------------------------
-- Compute the interpolated value for the given input value base on the
-- values read into the table.
--
-- The actual algorithm used is a piecewise linear interpolation. There is an
-- explanation of this algorithm using hypercubes in the SDF. Scaling factors
-- were added to support the general case of non-equal sides.
--
-- This routine is built for speed. But I do see two things that could be done
-- to further speed it up if nessecary.
-- o Change the Table parameter to an "in out". The compiler may be able to
-- do a much better job optimizing the code when it is not dealing with
-- an aliased object. This would require the function to be changed to a
-- a procedure though. Yuk!
-- o Change the "zone search algorithm". Currently it uses a kind of linear
-- (although the top level is binary). A full binary search could speed
-- things up when the correct zone is far from the last zone. However, if the
-- zones don''t change much (which is probably the case) then a binary
-- search could actually slow it down.
--------------------------------------------------------------------------------
function Interpolate( X,Y : in Float;
Table : access Instance )
return Float is
X_Independent : Float := X;
Y_Independent : Float := Y;
begin
-- Make sure the table has been initialized
if (Table.X_Count = 0 or Table.Y_Count = 0) then
raise Invalid_Table;
end if;
-- Find the lower points of the enclosing zones for the given coordinates
Zone_Index (Independents => Table.Independent_X(1..Table.X_Count),
Value => X_Independent,
Old_Zone => Table.Start_X_Zone,
New_Zone => Table.Start_X_Zone);
Zone_Index (Independents => Table.Independent_Y(1..Table.Y_Count),
Value => Y_Independent,
Old_Zone => Table.Start_Y_Zone,
New_Zone => Table.Start_Y_Zone);
return Interpolate
(Input_X => X_Independent,
Input_Y => Y_Independent,
X_Start => Table.Start_X_Zone,
Y_Start => Table.Start_Y_Zone,
Table => Table.all
);
end Interpolate;
</code></pre>
http://stackoverflow.com/questions/1751322/malloc-and-heap-memory/1751609#17516092Answer by T.E.D. for malloc() and heap memoryT.E.D.2009-11-17T20:39:11Z2009-11-17T20:39:11Z<p>No, it <em>can</em> give a segfault, but only if the memory is outside your process. Otherwise it will just modify some other area of your program memory. C doesn't check for this, or protect you in any way, even in obvious cases like the above. Many many software crackers use this "feature" of C to essentially rewrite a program that has elevated privs, and give themselves control over your machine. It is called a <a href="http://en.wikipedia.org/wiki/Buffer%5Foverflow" rel="nofollow">buffer overflow exploit</a>.</p>
<p>This is why C (and C++) should really be avoided for new software in preference for safer languages like Ada.</p>
http://stackoverflow.com/questions/1751376/memory-leak-in-c/1751483#17514830Answer by T.E.D. for memory leak in c++T.E.D.2009-11-17T20:19:29Z2009-11-17T20:19:29Z<p>It is debatable. For example, in the following code:</p>
<pre><code>void foo () {
char a[20] = "array 1";
char b[20] = "array 2";
b = a;
}
</code></pre>
<p>Some would say this leaks. I'd say it doesn't. The reason why not is because a and b are allocated on the <em>stack</em> when foo is called, and their memory is popped back off the stack properly when foo is finished, even if a and/or b no longer point there.</p>
<p>This is still a <strong>Bad Thing</strong>, since the storage allocated for b is essentially lost to you for the remainder of the function call. I'd even call it an error. But you won't leak memory if foo is called repeatedly.</p>
<p>However, if you instead allocated the memory for b using "malloc", that <strong>would</strong> cause a leak.</p>
http://stackoverflow.com/questions/1749263/which-handset-for-university-android-programming-classes/1749558#17495580Answer by T.E.D. for Which handset for university Android programming classes?T.E.D.2009-11-17T15:15:56Z2009-11-17T15:15:56Z<p>If I were going to be debugging things on it, I'd think I'd prefer a phone with a physical keyboard, like the Samsung Moment.</p>
<p>Then again, probably the smartest thing to do would be to find out what the instructor is using and get the same phone. That way you can be fairly sure you won't get any compatability issues that nobody running the course has ever seen.</p>
http://stackoverflow.com/questions/1749311/friend-function-within-a-namespace/1749384#17493845Answer by T.E.D. for friend function within a namespaceT.E.D.2009-11-17T14:50:45Z2009-11-17T15:05:27Z<p>When implementing cpp's for namespaces I don't do the "using namespacename;" thing. Instead, I declare the namespace just like in the .h file and embed all the namespace code in that. Like so:</p>
<pre><code>namespace Namespacename {
classname::methodname () { ... };
...etc.
}
</code></pre>
<p>It avoids a lot of confusion, both for you and the compiler.</p>
<p>So your code should look like:</p>
<pre><code>#include "test.h"
namespace TestNamespace {
void TestClass::setValue(int &aI)
{
i=aI;
}
int TestClass::value()
{
return i;
}
void testFunc(TestClass &myObj)
{
int j = myObj.i;
}
}
</code></pre>
<p>Just as a matter of policy, I try to avoid "using" in general. It is probably acceptable for "std", but for everything else I want the reader to <em>know</em> where stuff came from. This isn't that much of a hardship as long as you take the attitude that the namespace should be part of the object's name when you are naming things. </p>
<p>For example, in your above code I'd name the namespace "Test" and take the word "Test" out of all its methods and classes. That way instead of doing a <code>using TestNamespace;</code> and declaring a <code>TestClass</code>, your client will simply declare a <code>Test::Class</code>. This way Test is actually a piece of compiler-imposed structure to your objects, rather than just a piece of unstructured metadata that you have to chuck onto the front of your names to imply a relationship.</p>
http://stackoverflow.com/questions/1745450/c-compile-error/1745505#17455050Answer by T.E.D. for C++ compile errorT.E.D.2009-11-16T23:17:38Z2009-11-17T14:42:35Z<p>I think what you are looking for is </p>
<pre><code>char firstName[1024]
fin.getline (firstName, 1024, '\n')
</code></pre>
http://stackoverflow.com/questions/1744538/is-it-confusing-to-call-this-class-a-factory/1744583#17445830Answer by T.E.D. for Is it confusing to call this class a "factory"?T.E.D.2009-11-16T20:15:51Z2009-11-16T20:15:51Z<p>You could call it a "Wizard".</p>
http://stackoverflow.com/questions/1742696/do-you-think-learning-go-language-may-help-my-career-as-a-programmer/1742851#17428511Answer by T.E.D. for Do you think learning go language may help my career as a programmer?T.E.D.2009-11-16T15:20:49Z2009-11-16T15:20:49Z<p>For someone fresh out of school, the most important thing I'd look for in a Resume is that they know several different <em>kinds</em> of languages (functional, procedural, OO, declarative, assembly, etc.). After that, its more a matter of quantity to me. The more the better. </p>
<p>However, don't go learn yet another C-like OO langauge on your own time if you can't yet say you've mastered a functional langauge like Lisp or Caml.</p>
http://stackoverflow.com/questions/1842187/how-is-each-byte-in-an-integer-stored-in-cpu-memory/1842199#1842199Comment by T.E.D. on How is each byte in an integer stored in CPU / memory?T.E.D.2009-12-03T19:17:20Z2009-12-03T19:17:20ZLol. Picking stupid_idiot as your screen name means never having to say "I'm sorry".http://stackoverflow.com/questions/1835465/where-did-the-octal-hex-representations-come-from/1835579#1835579Comment by T.E.D. on Where did the octal/hex representations come from?T.E.D.2009-12-03T15:45:20Z2009-12-03T15:45:20ZC was created to help build the first Unix OSes. So early on the C "world" and the Unix "world" were the same world.http://stackoverflow.com/questions/1835465/where-did-the-octal-hex-representations-come-from/1835584#1835584Comment by T.E.D. on Where did the octal/hex representations come from?T.E.D.2009-12-03T15:43:10Z2009-12-03T15:43:10ZSame. This is precisely how the rest of C was "designed".http://stackoverflow.com/questions/1468535/ada-ada-containers-clear-procedure-problem/1473426#1473426Comment by T.E.D. on Ada Ada.Containers Clear Procedure ProblemT.E.D.2009-12-02T22:40:30Z2009-12-02T22:40:30ZActually, your Ada compiler can return data however it likes. If you <i>require</i> 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.http://stackoverflow.com/questions/1835465/where-did-the-octal-hex-representations-come-fromComment by T.E.D. on Where did the octal/hex representations come from?T.E.D.2009-12-02T20:13:59Z2009-12-02T20:13:59ZGotta love someone who talks about C++ like its ancient history.http://stackoverflow.com/questions/1834245/what-question-should-be-asked-to-test-the-interview-candidates-knowledge-of-refe/1834278#1834278Comment by T.E.D. on What question should be asked to test the interview candidate's knowledge of references in C++ ?T.E.D.2009-12-02T17:01:19Z2009-12-02T17:01:19ZI'm not sure a true 7/10 would know that. If you are trying to catch someone lying, ask a 5/10 question.http://stackoverflow.com/questions/1462761/character-column-parsing-in-boostspirit/1578799#1578799Comment by T.E.D. on Character column parsing in Boost::SpiritT.E.D.2009-12-01T14:53:31Z2009-12-01T14:53:31ZFYI: This is Spirit 2.1 code, which means it works with the newly-released Boost (1.41) but might not compile with earlier versions.http://stackoverflow.com/questions/1820103/why-use-lexical-analyzers/1820154#1820154Comment by T.E.D. on Why Use Lexical Analyzers?T.E.D.2009-11-30T15:09:36Z2009-11-30T15:09:36ZYou can write your own lexer, yes. However, to do it <i>right</i> 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.http://stackoverflow.com/questions/1799670/morris-internet-worm-anyone-knows-how-did-they-manage-to-stop-it/1799689#1799689Comment by T.E.D. on Morris Internet Worm - anyone knows how did they manage to stop it?T.E.D.2009-11-25T20:41:59Z2009-11-25T20:41:59ZYou might wanna look at some of the resources linked on the bottomw of the wiki page <a href="http://en.wikipedia.org/wiki/Morris_worm" rel="nofollow">en.wikipedia.org/wiki/Morris_worm</a> . 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.http://stackoverflow.com/questions/1797328/programming-languages-that-compile-to-native-code-and-have-the-batteries-included/1797466#1797466Comment by T.E.D. on Programming languages that compile to native code and have the batteries includedT.E.D.2009-11-25T18:48:37Z2009-11-25T18:48:37ZFor 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.http://stackoverflow.com/questions/1798820/ultra-simple-version-control/1798866#1798866Comment by T.E.D. on Ultra simple version controlT.E.D.2009-11-25T18:44:47Z2009-11-25T18:44:47ZClearCase is pretty much the <b>opposite</b> of ultra-simple.http://stackoverflow.com/questions/1797810/a-phrase-as-catchy-as-feature-creep-but-for-underestimated-projects/1797833#1797833Comment by T.E.D. on A phrase as catchy as 'Feature Creep' but for underestimated projectsT.E.D.2009-11-25T16:17:57Z2009-11-25T16:17:57ZIt still applies to succesful projects. The term is about the jouney, not the destination.http://stackoverflow.com/questions/1797341/how-to-log-exceptional-situations-in-c/1797435#1797435Comment by T.E.D. on How to log exceptional situations in C++?T.E.D.2009-11-25T15:47:32Z2009-11-25T15:47:32ZNo, 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.http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/1772457#1772457Comment by T.E.D. on What are the worst working conditions you have written code in?T.E.D.2009-11-23T23:32:30Z2009-11-23T23:32:30ZPerhaps. 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. http://stackoverflow.com/questions/1785572/why-should-one-bother-with-preprocessor-directives/1786205#1786205Comment by T.E.D. on Why should one bother with preprocessor directives?T.E.D.2009-11-23T22:23:10Z2009-11-23T22:23:10Z<code>#include</code>, and the associated <code>#ifdef...#define</code> 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.