User Jacob - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:25:13Zhttp://stackoverflow.com/feeds/user/3140http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1596601/count-parents-backwords-in-one-sql-query/1596635#15966351Answer by Jacob for Count parents backwords in one SQL Query?Jacob2009-10-20T18:56:25Z2009-10-21T15:22:38Z<p>If you want to query a tree in a relational database, use a <a href="http://www.developersdex.com/gurus/articles/112.asp" rel="nofollow">nested set</a> to represent the relationships. This will let you use a single query to find an item's depth, complete list of ancestors, find all related cases, and much more.</p>
http://stackoverflow.com/questions/1561984/best-kanban-tools/1562422#15624221Answer by Jacob for Best Kanban ToolsJacob2009-10-13T19:29:28Z2009-10-13T19:29:28Z<p>The <a href="http://www.fogcreek.com/FogBugz/plugins/plugin.aspx?ixPlugin=15" rel="nofollow">Kanban Board</a> plugin for FogBugz is great.</p>
http://stackoverflow.com/questions/1562398/does-return-inside-an-if-which-is-inside-a-for-return-from-the-if-or-the/1562410#156241013Answer by Jacob for Does return inside an if() which is inside a for() - return from the if() or the for() ?Jacob2009-10-13T19:27:15Z2009-10-13T19:27:15Z<p>In C-like languages, <code>return</code> exits the entire function. <code>break</code> will exit the innermost loop (<code>for</code> <code>do...while</code> or <code>while</code>)</p>
http://stackoverflow.com/questions/1556946/visual-studio-magic-keywords-in-comments/1556959#15569598Answer by Jacob for Visual Studio Magic Keywords in CommentsJacob2009-10-12T21:09:11Z2009-10-12T21:09:11Z<p>Visual Studio 2005 lets you modify the list of these.</p>
<p><code>Tools -> Options -> Environment -> Task List</code></p>
http://stackoverflow.com/questions/1511151/sql-statement-match-anything/1511162#15111625Answer by Jacob for SQL Statement Match AnythingJacob2009-10-02T18:39:10Z2009-10-02T18:39:10Z<ol>
<li><code>SELECT * FROM table WHERE id = id </code> will match all rows that have non-null <code>id</code></li>
<li><code>SELECT * FROM table WHERE id = id OR id IS NULL</code> will match all rows.</li>
</ol>
<p><code>id</code> is probably a primary key, so you can probably use the former.</p>
http://stackoverflow.com/questions/1500425/what-is-the-difference-between-convert-int32-and-int32-parse/1500445#15004452Answer by Jacob for What is the Difference Between Convert.Int32() and Int32.Parse()?Jacob2009-09-30T20:22:18Z2009-09-30T20:22:18Z<p><code>Convert.ToInt32</code> will convert <code>null</code> into <code>0</code>; <code>Int32.Parse</code> will throw an exception if you pass it <code>null</code>. Also, <a href="http://stackoverflow.com/questions/1500425/what-is-the-difference-between-convert-int32-and-int32-parse/1500437#1500437">as Matthew Jones said</a>, <code>Int32.Parse</code> only works for strings.</p>
<p>See <a href="http://julien.jacobs.free.fr/netshare/2006/08/int32parse-vs-converttoint.html#links" rel="nofollow">this article</a> for more information</p>
http://stackoverflow.com/questions/1412512/how-to-determine-net-cookie-path0How to determine .NET cookie pathJacob2009-09-11T18:18:49Z2009-09-11T18:34:54Z
<p>I am writing a .NET application that uses cookies to store a login token. I'd like the user to be able to log into multiple installations of this application on the same server (let's say <code>jacob.local/Devel</code> and <code>jacob.local/Stable</code>), so I want to set the Path property for the cookies appropriately. Currently I'm using <code>Request.ApplicationPath</code> but am running into trouble when the user visits the site with a different case than what I've set up in IIS.</p>
<p>For example, the user visits <code>jacob.local/stable</code> -- the cookie's path will be <code>/Stable</code>, which the browser doesn't send back to me since it can't know that IIS is case insensitive.</p>
<p>Do I have to parse apart the whole query string myself, or is there already a function for figuring out what the path of the application is?</p>
http://stackoverflow.com/questions/738567/asp-net-linq-error-int-is-a-type-but-is-used-like-a-variable/738573#7385731Answer by Jacob for Asp.net, Linq Error: 'int' is a 'type' but is used like a 'variable'Jacob2009-04-10T19:11:56Z2009-04-10T19:11:56Z<p>Line 50 is using the Int32 constructor like a function. Change <code>Int32(CategoryName.SelectedItem)</code> to <code>new Int32(CategoryName.SelectedItem)</code>, or just cast to int using <code>(Int32)(CategoryName.SelectedItem)</code>.</p>
http://stackoverflow.com/questions/679829/firing-event-on-application-close/679840#679840-2Answer by Jacob for Firing event on application close.Jacob2009-03-25T00:53:49Z2009-03-25T00:53:49Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx" rel="nofollow">dispose pattern</a> and a <code>using()</code> block to release resources at the end of the resource lifecycle.</p>
http://stackoverflow.com/questions/563544/java-bit-manipulation/563579#5635790Answer by Jacob for java bit manipulationJacob2009-02-19T01:27:03Z2009-02-19T01:27:03Z<p>I don't know why it doesn't work, but an easy way to clear the top bit is to & with (binary) 0111111:</p>
<pre><code>x = (byte) (x >>> 1) & 0x7F;
</code></pre>
http://stackoverflow.com/questions/154718/precedence-header-in-email2Precedence: header in emailJacob2008-09-30T20:01:11Z2008-11-19T14:03:41Z
<p>My web application sends email fairly often, and it sends 3 kinds of emails: initiated by user, in response to an event in the system, and in automatic response to an email received by the application.</p>
<p>I would like to make sure that the third type of email does not get stuck in an endless loop of auto-responders talking to each other. Currently, I use the header:</p>
<pre><code>Precedence: junk
</code></pre>
<p>but Yahoo! mail is treating these messages as spam. This is obviously not ideal, because we would like SOMEBODY to read our auto-response and make a decision on it, just not an out-of-office reply.</p>
<p><strong>What is the best way to send an email without triggering either junk filters or auto-responders?</strong></p>
<pre><code>Precedence: junk?
Precedence: bulk?
Precedence: list?
X-Priority: 2?
</code></pre>
http://stackoverflow.com/questions/270334/c-compiler-throws-invalid-arguments-error-why/270345#2703451Answer by Jacob for C# compiler throws invalid arguments error. Why?Jacob2008-11-06T21:26:00Z2008-11-06T21:26:00Z<p><code>Int32</code> is a value type, which means <code>null</code> is not a valid argument for parameters of type <code>Int32</code>.</p>
<p>If you really need nullable ints, use the <code>int?</code> type.</p>
<p>The two errors you are seeing are actually the same error.</p>
http://stackoverflow.com/questions/216426/determining-realloc-behaviour-before-calling-it/242362#2423620Answer by Jacob for Determining realloc() behaviour before calling itJacob2008-10-28T06:04:01Z2008-10-28T06:04:01Z<p>Why not keep some empty buffer space in the left of the string, like so:</p>
<pre><code>char* buf = malloc(1024);
char* start = buf + 1024 - 3;
start[0]='t';
start[1]='o';
start[2]='\0';
</code></pre>
<p>To add "on" to the beginning of your string to make it "onto\0":</p>
<pre><code>start-=2;
if(start < buf)
DO_MEMORY_STUFF(start, buf);//time to reallocate!
start[0]='o';
start[1]='n';
</code></pre>
<p>This way, you won't have to keep copying your buffer every single time you want to do an insertion at the beginning.</p>
<p>If you have to do insertions at both the beginning and end, just have some space allocated at both ends; insertions in the middle will still need you to shuffle elements around, obviously.</p>
http://stackoverflow.com/questions/237716/is-it-possible-to-write-a-function-like-nextpermutation-but-that-only-permutes-r/237743#2377431Answer by Jacob for Is it possible to write a function like next_permutation but that only permutes r values, instead of n?Jacob2008-10-26T08:38:06Z2008-10-26T08:44:18Z<p>Source code for a Java combination generator is at <strong><a href="http://www.merriampark.com/comb.htm" rel="nofollow">http://www.merriampark.com/comb.htm</a></strong>. Strip out the Java idioms, and it's almost exactly what you're looking for, implemented as a generator to keep a lid on your memory usage.</p>
<p><hr /></p>
<p>This problem is from the mathematical field known as <strong>Combinatorics</strong>, which is part of <strong>Discrete mathematics</strong>. Discrete math is crucial to practitioners of computer science, as it includes nearly all of the math we use daily (like logic, algorithms, counting, relations, graph theory, etc.). I highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0201726343" rel="nofollow"><em>Discrete and Combinatorial Mathematics: An applied introduction</em></a> or
<a href="http://rads.stackoverflow.com/amzn/click/0071244743" rel="nofollow"><em>Discrete Mathematics and Its Applications</em></a>, if you can afford it.</p>
<p>(Note: this question is related to "<a href="http://stackoverflow.com/questions/199677/algorithm-for-grouping">Algorithm for Grouping</a>," but not quite a duplicate since this question asks to solve it in the general case.)</p>
http://stackoverflow.com/questions/146576/why-is-the-java-main-method-static/146662#14666221Answer by Jacob for Why is the Java main method static?Jacob2008-09-28T20:28:34Z2008-10-26T07:57:53Z<p>The method is static because otherwise there would be ambiguity: which constructor should be called? Especially if your class looks like this:</p>
<pre><code>public class JavaClass{
protected JavaClass(int x){}
public void main(String[] args){
}
}
</code></pre>
<p>Should the JVM call <strong><em>new JavaClass</em></strong>(int)? What should it pass for x?</p>
<p>If not, should the JVM instantiate <strong><em>JavaClass</em></strong> without running any constructor method? I think it shouldn't, because that will special-case your entire class - sometimes you have an instance that hasn't been initialized, and you have to check for it in every method that could be called.</p>
<p>There are just too many edge cases and ambiguities for it to make sense for the JVM to have to instantiate a class before the entry point is called. That's why <strong>main</strong> is static.</p>
<p>I have no idea why <strong>main</strong> is always marked <strong>public</strong> though.</p>
http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/237701#2377010Answer by Jacob for Suggestions please for a home version control systemJacob2008-10-26T07:48:05Z2008-10-26T07:48:05Z<p>Someone mentioned Git; I'll mention Mercurial with <a href="http://tortoisehg.sourceforge.net/" rel="nofollow">TortoiseHg</a>.</p>
http://stackoverflow.com/questions/237326/is-metaprogramming-possible-in-c/237651#2376515Answer by Jacob for Is metaprogramming possible in C#?Jacob2008-10-26T06:14:14Z2008-10-26T06:14:14Z<p>No, metaprogramming of this complexity is not supported directly by the C# language. However, like <a href="http://stackoverflow.com/questions/237326/is-metaprogramming-possible-in-c#237644">@littlegeek</a> said, the <a href="http://blog.wekeroad.com/blog/make-visual-studio-generate-your-repository/" rel="nofollow">Text Template Transformation Toolkit</a> included with Visual Studio will allow you to achieve code generation of any complexity.</p>
<p>(<a href="http://www.hanselman.com/blog/default.aspx?page=1" rel="nofollow">More from Scott Hanselman</a>)</p>
http://stackoverflow.com/questions/233035/what-are-underscored-symbols-in-a-vb-dll/233087#2330870Answer by Jacob for What are underscored symbols in a VB DLL?Jacob2008-10-24T11:02:23Z2008-10-25T04:37:04Z<p>Are the symbols properties? If so, these might just be the private variables backing the properties.</p>
http://stackoverflow.com/questions/232982/erlang-syntax/233023#2330233Answer by Jacob for Erlang syntaxJacob2008-10-24T10:35:01Z2008-10-24T10:35:01Z<p>Why not go <a href="http://www.erlang.org/doc.html" rel="nofollow">straight to the source</a>? The <a href="http://www.erlang.org/download/erl_spec47.ps.gz" rel="nofollow">Erlang 4.7 specification</a> lists productions in a grammar.</p>
http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier/228789#2287893Answer by Jacob for What are the rules about using an underscore in a C++ identifier?Jacob2008-10-23T07:03:38Z2008-10-23T07:03:38Z<blockquote>
<p>The following characters are legal as
the first character of an identifier,
or any subsequent character:</p>
<pre><code>_ a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
</code></pre>
<p>The following characters are legal as
any character in an identifier except
the first:</p>
<pre><code>0 1 2 3 4 5 6 7 8 9
</code></pre>
</blockquote>
<p>Microsoft also <a href="http://msdn.microsoft.com/en-us/library/565w213d.aspx" rel="nofollow">warns</a>,</p>
<blockquote>
<p>Use of two sequential underscore
characters ( __ ) at the beginning of
an identifier, or a single leading
underscore followed by a capital
letter, is reserved for C++
implementations in all scopes. <strong>You
should avoid using one leading
underscore followed by a lowercase
letter for names with file scope
because of possible conflicts with
current or future reserved
identifiers.</strong></p>
</blockquote>
http://stackoverflow.com/questions/228659/what-is-the-simplest-way-to-continuously-sample-from-the-line-in-using-c/228693#2286931Answer by Jacob for What is the simplest way to continuously sample from the line-in using C#Jacob2008-10-23T06:04:44Z2008-10-23T06:47:44Z<p>There are no built-in libraries in the .NET framework for dealing with sound, but if you're on Win32, you can use an unmanaged library like DirectSound to do it.</p>
<p>Ianier Munoz shows <a href="http://www.codeproject.com/KB/audio-video/cswavrec.aspx?fid=16677&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2525433&fr=151" rel="nofollow">how to write a full-duplex audio player in C# using <strong>waveIn</strong> via P/Invoke</a> on CodeProject. He mentions <strong><a href="http://www.codeproject.com/KB/audio-video/DirectSound9p1.aspx" rel="nofollow">Managed DirectSound</a></strong> as a more general method.</p>
http://stackoverflow.com/questions/228730/how-do-i-iterate-through-the-alphabet-in-python/228734#2287341Answer by Jacob for How do I iterate through the alphabet in Python?Jacob2008-10-23T06:35:04Z2008-10-23T06:35:04Z<p>Something like this?</p>
<pre><code>for letter in range(ord('a'), ord('z') + 1):
print chr(letter) + ":", lowertext.count(chr(letter))
</code></pre>
<p>(I don't speak Python; please forgive my syntax errors)</p>
http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python/227466#2274664Answer by Jacob for ASCII value of a character in pythonJacob2008-10-22T20:41:56Z2008-10-22T20:41:56Z<p>You are looking for:</p>
<pre><code>ord()
</code></pre>
http://stackoverflow.com/questions/206894/change-to-64-bits-not-allowed-when-trying-to-edit-in-debug-why/206919#2069193Answer by Jacob for Change to 64 bits not allowed when trying to edit in debug, why?Jacob2008-10-15T23:37:26Z2008-10-15T23:37:26Z<p>Mike Stall <a href="http://blogs.msdn.com/jmstall/archive/2006/02/13/cant-do-enc.aspx" rel="nofollow">says</a>:</p>
<blockquote>
<p>EnC does some very low-level things
that are pretty OS-specific and so
limiting to a single platform was
primarily a resource-constraint.
Future CLRs will no doubt expand this.
Our porting effort also started from
scratch in V2, and so all the rest of
the debugging services had to be
ported too, so we already had a very
large item here. Also, we believe the
biggest scenarios for EnC would
revolve around pure-IL apps that allow
people to at least develop in x86.
There's a workaround in such cases: on
a 64-bit machine, you can launch a
pure-IL app as 32-bit app in the WOW,
and then do EnC on it.</p>
<p>These are all limitations of the CLR,
not Visual Studio, which means if a
3rd-party debugger adds EnC, they'll
have the same restrictions. In all
cases, we were felt happy that the the
cost of enabling each case was better
spent making the core-scenarios
stronger.</p>
</blockquote>
http://stackoverflow.com/questions/196390/can-you-write-a-block-of-c-code-inside-c/196430#196430-1Answer by Jacob for Can you write a block of c++ code inside C#?Jacob2008-10-13T00:52:45Z2008-10-13T00:52:45Z<p>You can interact with COM objects very easily from .NET.</p>
http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler/194473#19447326Answer by Jacob for Have you ever crashed the compiler?Jacob2008-10-11T19:22:32Z2008-10-11T19:22:32Z<p>I write the compiler we use, so it crashes sometimes.</p>
http://stackoverflow.com/questions/183367/unsubscribe-anonymous-method-in-c/183408#18340814Answer by Jacob for Unsubscribe anonymous method in C#Jacob2008-10-08T15:33:38Z2008-10-08T15:33:38Z<pre><code>var myDelegate = delegate(){Console.WriteLine("I did it!");};
MyEvent += myDelegate;
// .... later
MyEvent -= myDelegate;
</code></pre>
<p>Just keep a reference to the delegate around.</p>
http://stackoverflow.com/questions/172658/operator-overloading-with-c-extension-methods/172666#17266620Answer by Jacob for Operator Overloading with C# Extension MethodsJacob2008-10-05T21:04:11Z2008-10-05T21:04:11Z<p>This is not currently possible, because extension methods must be in static classes, and static classes can't have operator overloads.</p>
<p>Mads Torgersen, C# Language PM says:</p>
<blockquote>
<p>...for the Orcas release we decided to
take the cautious approach and add
only regular extension methods, as
opposed to extention properties,
events, operators, static methods, etc
etc. Regular extension methods were
what we needed for LINQ, and they had
a syntactically minimal design that
could not be easily mimicked for some
of the other member kinds.</p>
<p>We are becoming increasingly aware
that other kinds of extension members
could be useful, and so we will return
to this issue after Orcas. No
guarantees, though!</p>
</blockquote>
<p>Edit:</p>
<p>I just noticed, Mads wrote more in the <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=168224" rel="nofollow">same article</a>:</p>
<blockquote>
<p>I am sorry to report that we will not
be doing this in the next release. We
did take extension members very
seriously in our plans, and spent a
lot of effort trying to get them
right, but in the end we couldn't get
it smooth enough, and decided to give
way to other interesting features.</p>
<p>This is still on our radar for future
releases. What will help is if we get
a good amount of compelling scenarios
that can help drive the right design.</p>
</blockquote>
http://stackoverflow.com/questions/164858/does-the-assign-then-evaluate-of-each-parameter-pattern-have-a-name/164908#1649083Answer by Jacob for Does the assign then evaluate of each parameter "pattern" have a name?Jacob2008-10-02T22:29:10Z2008-10-03T17:54:45Z<p>The <strong>order of evaluation</strong> of arguments is strictly left-to-right in C#. When you evaluate the expression <code>i++</code>, what happens is the value of <code>i</code> is calculated and pushed, then the value of <code>i</code> is incremented.</p>
<p>The ++ operator on System.Int32 is effectively a function with the special name <code>++</code> and the special syntax of calling it by writing a reference to a variable and then the characters ++.</p>
<p>So in effect, what you wrote is</p>
<pre><code>// assume this function is defined:
int Inc(ref int i)
{
var old = i;
i = i + 1;
return old;
}
...
int i = 1;
string result = String.Format("{0},{1},{2}", Inc(ref i), Inc(ref i), Inc(ref i));
Console.WriteLine(result);
...
</code></pre>
<p>Since arguments are evaluated left-to-right, <code>Inc(ref i)</code> is called 3 times, each time incrementing <code>i</code> after passing the current value of <code>i</code> to <code>String.Format(...)</code>. This is exactly what happens in your code, as well.</p>
http://stackoverflow.com/questions/165455/why-do-people-like-case-sensitivity/165617#1656173Answer by Jacob for Why do people like case sensitivity?Jacob2008-10-03T03:47:04Z2008-10-03T03:47:04Z<p>I maintain an internal compiler for my company, and am tempted to make it a hybrid - you can use whatever case you want for an identifier, and you have to refer to it with the same casing, but naming something else with the same name and different case will cause an error.</p>
<pre>Dim abc = 1
Dim y = Abc - 1 ' error, case doesn't match "abc"
Dim ABC = False ' error, can't redeclare variable "abc"
</pre>
<p>It's currently case-insensitive, so I could probably fix the few existing errors and nobody would complain too much...</p>
http://stackoverflow.com/questions/989281/how-can-i-programmatically-limit-my-programs-cpu-usage-to-below-70/1623368#1623368Comment by Jacob on How can I programmatically limit my program's CPU usage to below 70%?Jacob2009-12-10T05:03:22Z2009-12-10T05:03:22ZIn Windows, you ALWAYS have to put the UI on a separate thread.http://stackoverflow.com/questions/1834716/sql-query-works-quickly-with-19-items-in-in-clause-much-slower-with-20-whyComment by Jacob on SQL Query works quickly with 19 items in "IN" clause - much slower with 20. Why?Jacob2009-12-02T18:18:51Z2009-12-02T18:18:51ZIs RecordID a primary key? If not, is there an index on it? What does Query Analyzer say about it?http://stackoverflow.com/questions/1827947/if-i-make-a-request-to-my-servers-ip-address-will-it-be-the-same-as-using-127-0/1828028#1828028Comment by Jacob on If I make a request to my server's IP address, will it be the same as using 127.0.0.1, or slower?Jacob2009-12-01T18:52:03Z2009-12-01T18:52:03ZDNS record for an IP address? Surely you mean ARP?http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800074#1800074Comment by Jacob on Does this code prevent SQL injection?Jacob2009-11-25T21:51:09Z2009-11-25T21:51:09Zno, the clause WHERE Key = '1 OR 1=1' doesn't allow the user to get back everything because there are quote marks around the '1 OR 1=1'.http://stackoverflow.com/questions/4612/csharpcodeprovider-compilation-performance/29283#29283Comment by Jacob on CSharpCodeProvider Compilation PerformanceJacob2009-11-21T00:32:10Z2009-11-21T00:32:10ZSupposedly csc.exe is being rewritten in C#, so in the future there may be a managed way that lets you pass an AST directly to the compiler. However, as .NET 3.5 stands now, there is currently no way to bypass the compiler frontend other than emitting the IL assembly or bytecode yourself.http://stackoverflow.com/questions/1704355/rewriting-multiple-if-statements/1704391#1704391Comment by Jacob on Rewriting multiple if-statementsJacob2009-11-09T22:34:39Z2009-11-09T22:34:39ZNope, that will leave lower-point buttons enabled. You need both sides of the range in your rhs expression. ( rbn250Points.Enabled = totalPoints >= 250 && totalPoints < 400; )http://stackoverflow.com/questions/40730/how-do-you-give-a-c-auto-property-a-default-value/41146#41146Comment by Jacob on How do you give a C# Auto-Property a default value?Jacob2009-11-06T18:00:12Z2009-11-06T18:00:12ZYou cannot access a field across AppDomain boundaries, either -- only a property or method.http://stackoverflow.com/questions/1688337/javascript-if-alternative/1688368#1688368Comment by Jacob on javascript if alternativeJacob2009-11-06T17:56:46Z2009-11-06T17:56:46Z"ternary" just means "function with arity of 3." ... ? .. : ... is the Conditional Operator.http://stackoverflow.com/questions/1609148/patterns-in-binary-numbers/1609203#1609203Comment by Jacob on Patterns in Binary NumbersJacob2009-10-23T14:39:09Z2009-10-23T14:39:09ZDidn't actually downvote you :) I'm glad you're the top answer for this question.http://stackoverflow.com/questions/1609148/patterns-in-binary-numbers/1609203#1609203Comment by Jacob on Patterns in Binary NumbersJacob2009-10-22T20:53:36Z2009-10-22T20:53:36Z-1 for not understanding the problem ;)
"Any program that uses strings, arrays or recursion will receive a grade of 0."http://stackoverflow.com/questions/1596601/count-parents-backwords-in-one-sql-query/1596635#1596635Comment by Jacob on Count parents backwords in one SQL Query?Jacob2009-10-21T15:23:10Z2009-10-21T15:23:10Z@Byron Good catch; just me being sloppy.http://stackoverflow.com/questions/800265/jquery-string-contains-manipulation/800415#800415Comment by Jacob on jQuery String Contains Manipulation?Jacob2009-10-21T15:21:55Z2009-10-21T15:21:55ZYou have a bug in this implementation: if the searched string starts with txt, it will return false. Use >= instead of >.http://stackoverflow.com/questions/1591254/how-to-create-gmail-chat-how-to-connect-to-aim-and-allow-for-aim-chatting/1591267#1591267Comment by Jacob on How to create Gmail Chat? How to connect to AIM and allow for AIM chatting?Jacob2009-10-19T21:31:01Z2009-10-19T21:31:01ZPidgin is a GTK program that uses libpurple to communicate through the different protocols. On Mac OS X, Adium is a Cocoa GUI for libpurple. Meebo uses libpurple.
<a href="http://developer.pidgin.im/wiki/WhatIsLibpurple" rel="nofollow">developer.pidgin.im/wiki/WhatIsLibpurple</a>http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/1481604#1481604Comment by Jacob on What's the strangest corner case you've seen in C# or .NET?Jacob2009-10-13T20:10:29Z2009-10-13T20:10:29ZI guess "loading an assembly" is a side effect, since you can observe it with BeforeAssemblyLoad!http://stackoverflow.com/questions/1556830/interviewers-expect-job-candidates-for-application-development-jobs-to-know-hexadComment by Jacob on Interviewers expect job candidates for application development jobs to know hexadecimal arithmeticJacob2009-10-12T20:55:03Z2009-10-12T20:55:03ZWas it a left shift or a right shift?