User James Curran - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:48:57Z http://stackoverflow.com/feeds/user/12725 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935777/c-design-how-to-cache-most-recent-used/1935818#1935818 1 Answer by James Curran for C++ design: How to cache most recent used James Curran 2009-12-20T13:18:48Z 2009-12-20T13:18:48Z <p>Create a std:priority_queue&lt;map&lt;int, CacheEntry>::iterator>, with a comparer for the access stamp.. For an insert, first pop the last item off the queue, and erase it from the map. Than insert the new item into the map, and finally push it's iterator onto the queue.</p> http://stackoverflow.com/questions/1683944/removing-duplicates-from-a-list-with-priority 1 Removing duplicates from a list with "priority" James Curran 2009-11-05T22:01:23Z 2009-11-05T23:52:15Z <p>Given a collection of records like this:</p> <pre><code>string ID1; string ID2; string Data1; string Data2; // : string DataN </code></pre> <p>Initially Data1..N are null, and can pretty much be ignored for this question. ID1 &amp; ID2 both uniquely identify the record. All records will have an ID2; some will also have an ID1. Given an ID2, there is a (time-consuming) method to get it's corresponding ID1. Given an ID1, there is a (time-consuming) method to get Data1..N for the record. Our ultimate goal is to fill in Data1..N for all records as quickly as possible.</p> <p>Our immediate goal is to (as quickly as possible) eliminate all duplicates in the list, keeping the one with more information.</p> <p>For example, if Rec1 == {ID1="ABC", ID2="XYZ"}, and Rec2 = {ID1=null, ID2="XYZ"}, then these are duplicates, --- BUT we must specifically remove Rec2 and keep Rec1. </p> <p>That last requirement eliminates the standard ways of removing Dups (e.g. HashSet), as they consider both sides of the "duplicate" to be interchangeable.</p> http://stackoverflow.com/questions/381542/in-c-arrays-why-is-this-true-a5-5a/381554#381554 34 Answer by James Curran for In C arrays why is this true? a[5] == 5[a] James Curran 2008-12-19T17:07:17Z 2009-10-07T15:52:31Z <p>And, of course</p> <pre><code> "ABCD"[2] == 2["ABCD"] == 'C' </code></pre> <p>The main reason for this was that back in the 70's when C was designed, computers didn't have much memory (64KB was a lot), so the C compiler didn't do much syntax checking. Hence "<code>X[Y]</code>" was rather blindly translated into "<code>*(X+Y)</code>" </p> <p>This also explains the "<code>+=</code>" and "<code>++</code>" syntaxes. Everything in the form "<code>A = B + C</code>" had the same compiled form. But, if B was the same object as A, then an assembly level optimization was available. But the compiler wasn't bright enough to recognize it, so the developer had to (<code>A += C</code>). Similarly, if <code>C</code> was <code>1</code>, a different assembly level optimization was available, and again the developer had to make it explicit, because the compiler didn't recognize it. (More recently compilers do, so those syntaxes are largely unnecessary these days)</p> http://stackoverflow.com/questions/350860/how-bad-is-ignoring-oracle-dupvalonindex-exception 1 How bad is ignoring Oracle DUP_VAL_ON_INDEX exception? James Curran 2008-12-08T20:55:32Z 2009-09-30T18:31:03Z <p>I have a table where I'm recording if a user has viewed an object at least once, hence:</p> <pre><code> HasViewed ObjectID number (FK to Object table) UserId number (FK to Users table) </code></pre> <p>Both fields are NOT NULL and together form the Primary Key.</p> <p>My question is, since I don't care how many times someone has viewed an object (after the first), I have two options for handling inserts.</p> <ul> <li>Do a SELECT count(*) ... and if no records are found, insert a new record.</li> <li>Always just insert a record, and if it throws a DUP_VAL_ON_INDEX exceptions (indicating that there already was such a record), just ignore it.</li> </ul> <p>What's the downside of choosing the second option?</p> <p>UPDATE:</p> <p>I guess the best way to put it is : "Is the overhead caused by the exception worse than the overhead caused by the initial select?"</p> http://stackoverflow.com/questions/1382104/whats-the-difference-between-jquery-1-3-2-vsdoc-js-jquery-1-3-2-min-vsdoc-js/1382119#1382119 3 Answer by James Curran for Whats the difference between jquery-1.3.2-vsdoc.js & jquery-1.3.2.min-vsdoc.js James Curran 2009-09-05T00:59:06Z 2009-09-05T00:59:06Z <p>Is there a difference in the contents of the files?</p> <p>I think the names may have to match the js file name (with vsdoc added)</p> http://stackoverflow.com/questions/1351483/what-format-is-this-time-value-in/1351501#1351501 1 Answer by James Curran for What format is this time value in? James Curran 2009-08-29T13:56:59Z 2009-08-29T13:56:59Z <p>It would help if you told us was date it represented. It 2009 at the start suggests it may be YYYYMMDDHHMMSS.FFFFFF+TZ</p> <p>(F= fraction of seconds, and TZ being difference from UTC in minute, so here, 6 hours)</p> http://stackoverflow.com/questions/1351452/linq-or-stored-proc-which-should-i-choose/1351477#1351477 0 Answer by James Curran for Linq or Stored proc - Which should I choose? James Curran 2009-08-29T13:44:37Z 2009-08-29T13:44:37Z <p>In Linq2Sql, the designer would automatically create relationships in the L2S classes (but would not display them in the designer)</p> <p>In Linq2Entities, the designer will display foreign key relationships, but will not automatically create them -- that has to be done manually. (that statement was based on a beta of Linq2Entities --- it may no longer be true).</p> http://stackoverflow.com/questions/1351201/castle-nvelocity-gettemplate-method-wont-work/1351466#1351466 0 Answer by James Curran for Castle Nvelocity GetTemplate method won't work James Curran 2009-08-29T13:39:01Z 2009-08-29T13:39:01Z <p>Since you mention Server.MapPath, I'm going to guess that this is far a web page. In case, is this in a MonoRail Website? If so, then there are methods on the Controller object for sending emails from a webpage, which make it much simpler (and the templates go in Views/email folder.)</p> http://stackoverflow.com/questions/189172/c-templates-turing-complete/189204#189204 9 Answer by James Curran for C++ templates Turing-complete? James Curran 2008-10-09T21:01:29Z 2009-08-28T15:31:58Z <p>My C++ is a bit rusty, so the may not be perfect, but it's close.</p> <pre><code>template &lt;int N&gt; struct Factorial { enum { val = Factorial&lt;N-1&gt;::val * N }; }; template &lt;&gt; struct Factorial&lt;0&gt; { enum { val = 1 }; } const int num = Factorial&lt;10&gt;::val; // num set to 10! at compile time. </code></pre> <p>The point is to demonstrate that the compiler is completely evaluating the recursive definition until it reaches an answer.</p> http://stackoverflow.com/questions/753453/linq-to-sql-and-extension-method-in-subquery/753494#753494 4 Answer by James Curran for LINQ-to-SQL and Extension method in subQuery James Curran 2009-04-15T20:10:30Z 2009-08-17T10:38:15Z <p>The signature of your method is fine. The problem is, as stated, it "has no supported translation to SQL".</p> <p>DLINQ is attempting to convert that statement into a line of SQL which it will send to the database. That method has no translation.</p> <p>I'd suggest rewriting the filter using a Where clause.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234114#234114 302 Answer by James Curran for What is your best programmer joke? James Curran 2008-10-24T15:53:10Z 2009-08-15T21:23:20Z <pre><code>char*lie; double time, me= !0XFACE, not; int rested, get, out; main(ly, die) char ly, **die ;{ signed char lotte, dear; (char)lotte--; for(get= !me;; not){ 1 - out &amp; out ;lie;{ char lotte, my= dear, **let= !!me *!not+ ++die; (char*)(lie= "The gloves are OFF this time, I detest you, snot\n\0sed GEEK!"); do {not= *lie++ &amp; 0xF00L* !me; #define love (char*)lie - love 1s *!(not= atoi(let [get -me? (char)lotte- (char)lotte: my- *love - 'I' - *love - 'U' - 'I' - (long) - 4 - 'U' ])- !! (time =out= 'a'));} while( my - dear &amp;&amp; 'I'-1l -get- 'a'); break;}} (char)*lie++; (char)*lie++, (char)*lie++; hell:0, (char)*lie; get *out* (short)ly -0-'R'- get- 'a'^rested; do {auto*eroticism, that; puts(*( out - 'c' -('P'-'S') +die+ -2 ));}while(!"you're at it"); for (*((char*)&amp;lotte)^= (char)lotte; (love ly) [(char)++lotte+ !!0xBABE];){ if ('I' -lie[ 2 +(char)lotte]){ 'I'-1l ***die; } else{ if ('I' * get *out* ('I'-1l **die[ 2 ])) *((char*)&amp;lotte) -= '4' - ('I'-1l); not; for(get=! get; !out; (char)*lie &amp; 0xD0- !not) return!! (char)lotte;} (char)lotte; do{ not* putchar(lie [out *!not* !!me +(char)lotte]); not; for(;!'a';);}while( love (char*)lie);{ register this; switch( (char)lie [(char)lotte] -1s *!out) { char*les, get= 0xFF, my; case' ': *((char*)&amp;lotte) += 15; !not +(char)*lie*'s'; this +1s+ not; default: 0xF +(char*)lie;}}} get - !out; if (not--) goto hell; exit( (char)lotte);} </code></pre> <p><a href="http://www0.us.ioccc.org/1990/westley.c" rel="nofollow">This entry</a> is the Obfuscated C Contest for 1990, is a true classic. Ignoring that fact that it's a C program that actually compiles &amp; runs, the source code is in the form of a hilarious conversation between a man &amp; a woman.</p> http://stackoverflow.com/questions/183336/what-was-the-funnest-programming-challenge-you-were-ever-tasked-with/183458#183458 14 Answer by James Curran for What was the funnest programming challenge you were ever tasked with? James Curran 2008-10-08T15:45:52Z 2009-08-13T08:32:41Z <p>Well, there was the time when a friend asked me to help her design a website where she could sell naked pictures of herself.</p> http://stackoverflow.com/questions/1066550/is-there-a-tool-to-generate-c-classes-based-off-a-json-string/1066578#1066578 2 Answer by James Curran for Is there a tool to generate C# classes based off a JSON string? James Curran 2009-06-30T23:21:09Z 2009-06-30T23:26:49Z <p>Nothing that I know of, but it shouldn't be that hard using one of the code generator out there (<a href="http://sourceforge.net/projects/mygeneration/" rel="nofollow">MyGeneration</a> / <a href="http://www.codesmithtools.com/" rel="nofollow">CodeSmith</a> / <a href="http://steelbluesolutions.com/Summary/CodeBreeze/" rel="nofollow">CodeBreeze</a>).</p> <p>The trick is that Javascript is rather loosely typed, so JSON doesn't always have enough information to decide what's the base C# data type to make a property. Also, one of the advantages of JSON is that you can freely add new properties, or leave out properties not needed for that message. So, for the message used to generate the code has all the properties that it is going to use.</p> http://stackoverflow.com/questions/1066424/how-to-write-linq-to-get-a-single-object-with-an-assoicate-object-instance/1066436#1066436 3 Answer by James Curran for how to write LINQ to get a single object with an assoicate object instance? James Curran 2009-06-30T22:35:09Z 2009-06-30T22:43:36Z <p>If the foreign key relationship is defined in the database, then it should be automatically added to the Linq object. Hence, the <code>Employee</code> object returned will have a fully populated <code>Department</code> property on it.</p> <p>Update: I don't get to fix something that Jon Skeet wrote often, so here's me chance:</p> <pre><code> var query = from employee in db.Employee where employee.empid == id select new { Employee = employee, Department = employee.department }; </code></pre> <p>Linq2Sql will automatically do the join!</p> http://stackoverflow.com/questions/1017767/what-preconceptions-did-you-have-about-professional-programming-when-you-first-st/1017799#1017799 0 Answer by James Curran for What preconceptions did you have about professional programming when you first started your career that later were proven to be wrong? James Curran 2009-06-19T12:49:09Z 2009-06-19T12:49:09Z <p>In school, you are taught the programming is "read input, process data, write output". In reality, there is rarely a processing step -- Most coding is just "read input, output"</p> <p>Generally, it's either "read from user, write to database" or "read from database, display on screen". Those two cases cover about 95% of the work you'll ever do.</p> http://stackoverflow.com/questions/1014518/right-way-to-conditionally-initialize-a-c-member-variable/1014540#1014540 4 Answer by James Curran for Right way to conditionally initialize a C++ member variable? James Curran 2009-06-18T18:56:26Z 2009-06-18T19:27:58Z <pre><code> MyClass(int xyz) : m_class(xyz==42 ? 12 : 32) {} </code></pre> <p>To answer your revised question, that get a bit tricky. The simplest way would be to make <code>m_class</code> a pointer. If you really want it as a data member, then you have to get creative. Create a new class (it's best if it's defined internal to MyClass). Have it's ctor be the function that needs to be called. Include it <em>first</em> among the declarations of data members (this will make it the first instaniated).</p> <pre><code>class MyClass { class initer { public: initer() { // this must happen before m_class is created do_something(); } } initer dummy; public: MemberClass m_class; MyClass(int xyz) : m_class(xyz==42? 12 : 43) { // dummy silently default ctor'ed before m_class. } }; </code></pre> http://stackoverflow.com/questions/1014396/using-with-counter-controlled-loops/1014513#1014513 4 Answer by James Curran for Using != with counter controlled loops James Curran 2009-06-18T18:51:23Z 2009-06-18T18:51:23Z <p>The main advantage of use "!=" over "&lt;" is that is something is going to fail, it should fail <strong>big</strong>.</p> <p>For example, if a bug somewhere caused x to enter the loop set to 110, then <code>x &lt; 100</code> will never enter the loop --- a fact you might miss in debugging. OTOH, if you use <code>x!=100</code>, it will never exit the loop -- something which could not be missing in debugging.</p> http://stackoverflow.com/questions/1014094/accessing-overrriden-public-property-in-c/1014112#1014112 1 Answer by James Curran for Accessing overrriden public property in C# James Curran 2009-06-18T17:38:21Z 2009-06-18T17:38:21Z <pre><code>BaseClass baseInstance = instance as BaseClass; Console.WriteLine(baseInstance .Prop); //accessing BaseClass.Prop </code></pre> http://stackoverflow.com/questions/1008888/is-there-an-easier-way-than-using-ifdef-in-c/1008965#1008965 0 Answer by James Curran for Is there an easier way than using #ifdef in C? James Curran 2009-06-17T19:04:23Z 2009-06-17T19:11:39Z <p>Well, the problem with the PRINT_DEBUG type macros as given here, is that they only allow one parameter. For a proper printf() we'll need several, but C macros don't (presently) allow variable arguments.</p> <p>So, to pull this off, we've got to get creative.</p> <pre><code>#ifdef debugmode #define PRINTF printf #else #define PRINTF 1 ? NULL : printf #endif </code></pre> <p>Then when you write <code>PRINTF("a = %i, b = %i", a, b);</code>, in non-debug mode, it will be renders as (effectively):</p> <pre><code> if (true) NULL; else printf("a = %i, b = %i", a, b); </code></pre> <p>The compiler is happy, but the printf is never execute, and if the compiler if bright (i.e, any modern C compiler), the code for the printf() will never be generated, as the compiler will recognize that path can never be taken.</p> <p>Note, however, that the parameters will still be evaluated, so if they have any side effects (i.e, ++x or a function call), they code may be generated (but not executed)</p> http://stackoverflow.com/questions/990625/c-function-pointer-class-member-to-non-static-member-function/990653#990653 5 Answer by James Curran for C++ function pointer (class member) to non-static member function James Curran 2009-06-13T13:18:41Z 2009-06-13T13:18:41Z <p>The line you want is </p> <pre><code> return (f.*f.do_something)(5); </code></pre> <p>(That compiles -- I've tried it)</p> <p>"<code>*f.do_something</code>" refers to the pointer itself --- "f" tells us where to get the do_something value <em>from</em>. But we still need to give an object that will be the this pointer when we call the function. That's why we need the "<code>f.</code>" prefix.</p> http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986338#986338 2 Answer by James Curran for Reformat C++ braces without changing indentation? James Curran 2009-06-12T12:17:47Z 2009-06-12T12:17:47Z <p>The UNIX command Indent (<a href="http://en.wikipedia.org/wiki/Indent%5F%28Unix%29" rel="nofollow">http://en.wikipedia.org/wiki/Indent_(Unix)</a>) (Available for PCs from GNU) has a million options to customize the reformating exactly as you like.</p> http://stackoverflow.com/questions/967433/how-to-save-html-in-xml-file-using-linq-to-xml/967449#967449 -1 Answer by James Curran for How to save HTML in XML file using Linq to XML? James Curran 2009-06-08T22:58:17Z 2009-06-08T22:58:17Z <p>Try using <code>currentReport.Element("studio").InnerXml</code> instead of <code>currentReport.Element("studio").Value</code></p> http://stackoverflow.com/questions/967361/is-accepting-object-as-a-parameter-acceptable/967404#967404 1 Answer by James Curran for Is accepting Object as a parameter acceptable? James Curran 2009-06-08T22:45:35Z 2009-06-08T22:45:35Z <p>I see no value in accepting an Object in this case. Think through how you expect that function to work. (Clearly you haven't, since the code you posted doesn't work). I think you're planning something like this:</p> <pre><code>if (SSN is string) SSN = Convert.toInt32(SSN); else if (SSN is TextBox) SSN = Convert.toInt32(SSN.Value); else /* etc */ </code></pre> <p>How is that better than:</p> <pre><code> bool isValidSSN(int SSN) { /* real valuation code */ } bool IsValidSSN(String SSN) { return isValidSSN(Convert.toInt32(SSN)); } bool IsValidSSN(TextBox SSN) { return isValidSSN(Convert.toInt32(SSN.Value)); } </code></pre> <p>The overloaded methods are simpler, and faster, since they more the decision on what to do from runtime to compile time.</p> http://stackoverflow.com/questions/964910/is-javascript-an-untyped-language/964987#964987 0 Answer by James Curran for Is JavaScript an untyped language? James Curran 2009-06-08T13:43:04Z 2009-06-08T14:59:10Z <p>While it is typed (you can ask "typeof someVar" and learn its specific type, it's very weak.</p> <p>Given:</p> <pre><code> var a = "5"; </code></pre> <p>you might say that a is a string. However, if you then write:</p> <pre><code> var b = a + 10; </code></pre> <p>b is an int equal to 15, so a acted just like an int. Of course, you can then write:</p> <pre><code> var c = a + "Hello World"; </code></pre> <p>and c will equal "5Hello World", so a is again acting like a string.</p> http://stackoverflow.com/questions/964858/what-is-dependency-injection-and-why-would-i-want-to-use-it/964887#964887 1 Answer by James Curran for What is dependency injection and why would I want to use it? James Curran 2009-06-08T13:20:01Z 2009-06-08T13:20:01Z <p>The basic idea is that when an object needs some other other to do it's work (say for example, a database connection), instead of creating that object internally, the object is "injected" into the object, usually either as a constructor parameter, or by a public property that is set before the object is used.</p> <p>The advantage of that is that the value of the used object can be changed externally (this is especially true if the object is declared as an interface). One common use of this is to replace concrete object with mock object for unit testing.</p> http://stackoverflow.com/questions/963284/web-developers-implement-the-code-or-design-first/963303#963303 0 Answer by James Curran for Web developers: Implement the code or design first? James Curran 2009-06-08T03:04:44Z 2009-06-08T03:04:44Z <p>I would definitely go with designer first. If the coder does the pages first, he's forcing a design on the designer -- particular for a multi-page form.</p> http://stackoverflow.com/questions/962599/binary-operator-overloading-on-a-templated-class-c/962656#962656 0 Answer by James Curran for Binary operator overloading on a templated class (C++) James Curran 2009-06-07T19:47:20Z 2009-06-07T19:47:20Z <p>'operator+' is not a member function, and it's not templated. It's just the operator+ which takes templated parameters.'</p> <pre><code> template &lt;typename T&gt; Container&lt;T&gt; operator+ (Container&lt;T&gt;&amp; lhs, Container&lt;T&gt;&amp; rhs) </code></pre> http://stackoverflow.com/questions/962545/on-log-n-complexity-similar-to-linear/962559#962559 2 Answer by James Curran for O(N log N) Complexity - Similar to linear? James Curran 2009-06-07T19:05:35Z 2009-06-07T19:05:35Z <p>log(N) is (very) roughly the number of digits in N. So, for the most part, there is little difference between log(n) and log(n+1)</p> http://stackoverflow.com/questions/962086/one-question-about-element-inserting-in-stl-list/962107#962107 0 Answer by James Curran for One question about element inserting in STL list. James Curran 2009-06-07T15:30:49Z 2009-06-07T15:30:49Z <p>As far as I can tell (some important code is missing from your excerpt), you have a block of data, which is essentially an array of Stringdata object, and a list&lt;> of pointers into that block. The else block is expanding that array.</p> <p>You probably would be better off with a <code>vector&lt;Stringdata&gt;</code> rather than a <code>list&lt;Stringdata*&gt;</code></p> http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955109#955109 1 Answer by James Curran for Is it possible to render image with html? James Curran 2009-06-05T09:54:47Z 2009-06-05T09:54:47Z <p>I've seen it done by creating a table with one cell for each pixel, setting the cell's background color to the pixel's color.</p> http://stackoverflow.com/questions/1935777/c-design-how-to-cache-most-recent-used/1935804#1935804 Comment by James Curran on C++ design: How to cache most recent used James Curran 2009-12-20T13:14:27Z 2009-12-20T13:14:27Z It's index by the long key, not the access time. http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219874#219874 Comment by James Curran on What was the strangest coding standard rule that you were forced to follow? James Curran 2009-09-07T22:36:30Z 2009-09-07T22:36:30Z In the very first C program I worked on, someone had added #define ever (;;) so you could say &quot;for ever {...}&quot; http://stackoverflow.com/questions/1351483/what-format-is-this-time-value-in/1351501#1351501 Comment by James Curran on What format is this time value in? James Curran 2009-08-30T12:22:18Z 2009-08-30T12:22:18Z That wasn't intended as a format string, merely a (human readable) description. http://stackoverflow.com/questions/1114501/can-i-declare-member-variable-as-const-in-class-of-cif-yes-how/1114504#1114504 Comment by James Curran on Can i declare member variable as const in class of c++?if yes,how? James Curran 2009-07-11T19:56:58Z 2009-07-11T19:56:58Z That should give you a different error, as you gave declared i, without defining it. You will need a &quot;int X::i;&quot; somewhere. http://stackoverflow.com/questions/1066550/is-there-a-tool-to-generate-c-classes-based-off-a-json-string/1066578#1066578 Comment by James Curran on Is there a tool to generate C# classes based off a JSON string? James Curran 2009-06-30T23:29:44Z 2009-06-30T23:29:44Z Sure --- They all include a assembly which allows access to a database's schema, but if you want to get you input for somewhere else, that's fine. They are all template based, so you'll need a new template. http://stackoverflow.com/questions/1017755/c-static-const-variable-and-destruction Comment by James Curran on C++ static const variable and destruction James Curran 2009-06-19T12:46:11Z 2009-06-19T12:46:11Z when is the A object being created and destroyed? http://stackoverflow.com/questions/1014518/right-way-to-conditionally-initialize-a-c-member-variable/1014536#1014536 Comment by James Curran on Right way to conditionally initialize a C++ member variable? James Curran 2009-06-18T18:58:55Z 2009-06-18T18:58:55Z You are creating an unnamed object, and then using the copy-ctor to initialize the member, rather than initializing it directly. http://stackoverflow.com/questions/1014396/using-with-counter-controlled-loops/1014487#1014487 Comment by James Curran on Using != with counter controlled loops James Curran 2009-06-18T18:54:57Z 2009-06-18T18:54:57Z @cdmckay: Why not? It's hard to miss. http://stackoverflow.com/questions/992706/why-would-i-want-to-delete-my-own-post-if-people-are-voting-for-it Comment by James Curran on Why would I want to delete my own post if people are voting for it? James Curran 2009-06-14T13:27:58Z 2009-06-14T13:27:58Z People vote for it because it SOUNDS useful, not because it necessarily IS. I deleted one of mine because I realized it was wrong, regardless that some people thought it might be right. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/278275#278275 Comment by James Curran on What is your best programmer joke? James Curran 2009-06-06T11:07:43Z 2009-06-06T11:07:43Z @Zsolt: It's supposed to be a joke, not a real test. You are not supposed to realize that the questions are related. http://stackoverflow.com/questions/955084/how-to-cast-an-interface-to-its-sub-interface/955098#955098 Comment by James Curran on How to cast an interface to its sub interface? James Curran 2009-06-06T11:05:11Z 2009-06-06T11:05:11Z Yes, you need &quot;out&quot;, since we are changing the value of targetVal, rather than merely modifying what targetVal references. http://stackoverflow.com/questions/954965/char-str-char-malloc-crash-help/954981#954981 Comment by James Curran on char * str = (char*) malloc( ) Crash help! James Curran 2009-06-05T10:03:28Z 2009-06-05T10:03:28Z yes, but malloc(-1) <i>is</i> undefined, and may crash. http://stackoverflow.com/questions/932178/new-mac-or-not Comment by James Curran on New Mac or not? James Curran 2009-05-31T15:14:01Z 2009-05-31T15:14:01Z This is probably more appropriate for <a href="http://serverfault.com/" rel="nofollow">serverfault.com</a> ... which fortunately enough, just entered open beta. http://stackoverflow.com/questions/932148/c-and-encoding-ascii-getstring Comment by James Curran on c# and Encoding.ASCII.GetString James Curran 2009-05-31T14:48:19Z 2009-05-31T14:48:19Z Where are you seeing &quot;????&quot; ?... Note that 0xFFD8 is not printable. http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927466#927466 Comment by James Curran on Overhead of a switch statement in C James Curran 2009-05-29T18:47:57Z 2009-05-29T18:47:57Z Excellent answer, except you buried the key point. You <i>never</i> want to do inside a loop something which doesn't change (e.g., the choice of the switch; the weight 4 out of 6 times, etc)