User James Curran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:48:57Zhttp://stackoverflow.com/feeds/user/12725http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935777/c-design-how-to-cache-most-recent-used/1935818#19358181Answer by James Curran for C++ design: How to cache most recent usedJames Curran2009-12-20T13:18:48Z2009-12-20T13:18:48Z<p>Create a std:priority_queue<map<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-priority1Removing duplicates from a list with "priority"James Curran2009-11-05T22:01:23Z2009-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 & 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#38155434Answer by James Curran for In C arrays why is this true? a[5] == 5[a]James Curran2008-12-19T17:07:17Z2009-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-exception1How bad is ignoring Oracle DUP_VAL_ON_INDEX exception?James Curran2008-12-08T20:55:32Z2009-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#13821193Answer by James Curran for Whats the difference between jquery-1.3.2-vsdoc.js & jquery-1.3.2.min-vsdoc.jsJames Curran2009-09-05T00:59:06Z2009-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#13515011Answer by James Curran for What format is this time value in?James Curran2009-08-29T13:56:59Z2009-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#13514770Answer by James Curran for Linq or Stored proc - Which should I choose?James Curran2009-08-29T13:44:37Z2009-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#13514660Answer by James Curran for Castle Nvelocity GetTemplate method won't workJames Curran2009-08-29T13:39:01Z2009-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#1892049Answer by James Curran for C++ templates Turing-complete?James Curran2008-10-09T21:01:29Z2009-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 <int N> struct Factorial
{
enum { val = Factorial<N-1>::val * N };
};
template <> struct Factorial<0>
{
enum { val = 1 };
}
const int num = Factorial<10>::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#7534944Answer by James Curran for LINQ-to-SQL and Extension method in subQueryJames Curran2009-04-15T20:10:30Z2009-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#234114302Answer by James Curran for What is your best programmer joke?James Curran2008-10-24T15:53:10Z2009-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 & 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++ & 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
&& '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*)&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*)&lotte) -=
'4' - ('I'-1l); not; for(get=!
get; !out; (char)*lie & 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*)&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 & runs, the source code is in the form of a hilarious conversation between a man & a woman.</p>
http://stackoverflow.com/questions/183336/what-was-the-funnest-programming-challenge-you-were-ever-tasked-with/183458#18345814Answer by James Curran for What was the funnest programming challenge you were ever tasked with?James Curran2008-10-08T15:45:52Z2009-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#10665782Answer by James Curran for Is there a tool to generate C# classes based off a JSON string?James Curran2009-06-30T23:21:09Z2009-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#10664363Answer by James Curran for how to write LINQ to get a single object with an assoicate object instance?James Curran2009-06-30T22:35:09Z2009-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#10177990Answer 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 Curran2009-06-19T12:49:09Z2009-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#10145404Answer by James Curran for Right way to conditionally initialize a C++ member variable?James Curran2009-06-18T18:56:26Z2009-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#10145134Answer by James Curran for Using != with counter controlled loopsJames Curran2009-06-18T18:51:23Z2009-06-18T18:51:23Z<p>The main advantage of use "!=" over "<" 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 < 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#10141121Answer by James Curran for Accessing overrriden public property in C#James Curran2009-06-18T17:38:21Z2009-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#10089650Answer by James Curran for Is there an easier way than using #ifdef in C?James Curran2009-06-17T19:04:23Z2009-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#9906535Answer by James Curran for C++ function pointer (class member) to non-static member functionJames Curran2009-06-13T13:18:41Z2009-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#9863382Answer by James Curran for Reformat C++ braces without changing indentation?James Curran2009-06-12T12:17:47Z2009-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-1Answer by James Curran for How to save HTML in XML file using Linq to XML?James Curran2009-06-08T22:58:17Z2009-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#9674041Answer by James Curran for Is accepting Object as a parameter acceptable?James Curran2009-06-08T22:45:35Z2009-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#9649870Answer by James Curran for Is JavaScript an untyped language?James Curran2009-06-08T13:43:04Z2009-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#9648871Answer by James Curran for What is dependency injection and why would I want to use it?James Curran2009-06-08T13:20:01Z2009-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#9633030Answer by James Curran for Web developers: Implement the code or design first?James Curran2009-06-08T03:04:44Z2009-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#9626560Answer by James Curran for Binary operator overloading on a templated class (C++)James Curran2009-06-07T19:47:20Z2009-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 <typename T>
Container<T> operator+ (Container<T>& lhs, Container<T>& rhs)
</code></pre>
http://stackoverflow.com/questions/962545/on-log-n-complexity-similar-to-linear/962559#9625592Answer by James Curran for O(N log N) Complexity - Similar to linear?James Curran2009-06-07T19:05:35Z2009-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#9621070Answer by James Curran for One question about element inserting in STL list.James Curran2009-06-07T15:30:49Z2009-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<> of pointers into that block. The else block is expanding that array.</p>
<p>You probably would be better off with a <code>vector<Stringdata></code> rather than a <code>list<Stringdata*></code></p>
http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955109#9551091Answer by James Curran for Is it possible to render image with html?James Curran2009-06-05T09:54:47Z2009-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#1935804Comment by James Curran on C++ design: How to cache most recent usedJames Curran2009-12-20T13:14:27Z2009-12-20T13:14:27ZIt'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#219874Comment by James Curran on What was the strangest coding standard rule that you were forced to follow?James Curran2009-09-07T22:36:30Z2009-09-07T22:36:30ZIn the very first C program I worked on, someone had added #define ever (;;) so you could say "for ever {...}"http://stackoverflow.com/questions/1351483/what-format-is-this-time-value-in/1351501#1351501Comment by James Curran on What format is this time value in?James Curran2009-08-30T12:22:18Z2009-08-30T12:22:18ZThat 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#1114504Comment by James Curran on Can i declare member variable as const in class of c++?if yes,how?James Curran2009-07-11T19:56:58Z2009-07-11T19:56:58ZThat should give you a different error, as you gave declared i, without defining it. You will need a "int X::i;" somewhere.http://stackoverflow.com/questions/1066550/is-there-a-tool-to-generate-c-classes-based-off-a-json-string/1066578#1066578Comment by James Curran on Is there a tool to generate C# classes based off a JSON string?James Curran2009-06-30T23:29:44Z2009-06-30T23:29:44ZSure --- 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-destructionComment by James Curran on C++ static const variable and destructionJames Curran2009-06-19T12:46:11Z2009-06-19T12:46:11Zwhen is the A object being created and destroyed?http://stackoverflow.com/questions/1014518/right-way-to-conditionally-initialize-a-c-member-variable/1014536#1014536Comment by James Curran on Right way to conditionally initialize a C++ member variable?James Curran2009-06-18T18:58:55Z2009-06-18T18:58:55ZYou 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#1014487Comment by James Curran on Using != with counter controlled loopsJames Curran2009-06-18T18:54:57Z2009-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-itComment by James Curran on Why would I want to delete my own post if people are voting for it?James Curran2009-06-14T13:27:58Z2009-06-14T13:27:58ZPeople 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#278275Comment by James Curran on What is your best programmer joke?James Curran2009-06-06T11:07:43Z2009-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#955098Comment by James Curran on How to cast an interface to its sub interface?James Curran2009-06-06T11:05:11Z2009-06-06T11:05:11ZYes, you need "out", 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#954981Comment by James Curran on char * str = (char*) malloc( ) Crash help!James Curran2009-06-05T10:03:28Z2009-06-05T10:03:28Zyes, but malloc(-1) <i>is</i> undefined, and may crash.http://stackoverflow.com/questions/932178/new-mac-or-notComment by James Curran on New Mac or not?James Curran2009-05-31T15:14:01Z2009-05-31T15:14:01ZThis 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-getstringComment by James Curran on c# and Encoding.ASCII.GetStringJames Curran2009-05-31T14:48:19Z2009-05-31T14:48:19ZWhere are you seeing "????" ?... Note that 0xFFD8 is not printable.http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927466#927466Comment by James Curran on Overhead of a switch statement in CJames Curran2009-05-29T18:47:57Z2009-05-29T18:47:57ZExcellent 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)