User Patrick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T21:39:30Zhttp://stackoverflow.com/feeds/user/429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1672127/c-thread-and-class-problems/1672161#16721611Answer by Patrick for C# Thread and Class problemsPatrick2009-11-04T07:19:08Z2009-11-04T07:19:08Z<p>Remove all of your "static"s. You should be closing your connections and whatnot over the class object, not creating a single instance.</p>
http://stackoverflow.com/questions/1541725/flops-what-really-is-a-flop/1541759#15417590Answer by Patrick for FLOPS what really is a FLOPPatrick2009-10-09T04:14:46Z2009-10-09T04:48:21Z<ol>
<li>Floating point speed mattered a lot for scientific computing and computer graphics.</li>
<li>By definition, no. You're testing integer performance at that point.</li>
<li>302, see below.</li>
<li>x86 and x64 are very different from MIPS. MIPS, being a RISC (reduced instruction set computer) architecture, has very few instructions in comparison to the CISC (complex instruction set computer) architecture of Intel and AMD's offerings. For instruction decoding, x86 using variable width instructions, so instructions anywhere from one to 16 bytes in length (including prefixes, it might be larger)</li>
</ol>
<p>The 128 bit thing is about the internal representation of floats in the processor. It uses really bit floats internally to try and avoid rounding errors, and then truncates them when you put the numbers back into memory.</p>
<pre><code>fld A //st=[A]
fld B //st=[B, A]
Loop:
fld st(1) //st=[A, B, A]
fadd st(1) //st=[A + B, B, A]
fstp memory //st=[B, A]
</code></pre>
http://stackoverflow.com/questions/775692/using-system-json-for-non-silverlight-projects5Using System.Json for non-Silverlight projects?Patrick2009-04-22T04:34:27Z2009-10-09T00:11:43Z
<p>Any idea on how to do it? If not possible, what's a good JSON library for C#?</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash17Hidden features of BashPatrick2008-10-17T08:14:02Z2009-09-22T13:49:11Z
<p>Shell scripts are often used as glue, for automation and simple one-off tasks. What are some of your favorite "hidden" features of the Bash shell/scripting language?</p>
<ul>
<li>One feature per answer</li>
<li>Give an example and short description of the feature, not just a link to documentation</li>
<li>Label the feature using bold title as the first line</li>
</ul>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li>
<li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li>
<li><a href="http://stackoverflow.com/questions/102254/hidden-features-of-delphi">Hidden features of Delphi</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li>
<li><a href="http://stackoverflow.com/questions/102084/hidden-features-of-vbnet">Hidden features of VB.Net</a></li>
</ul>
http://stackoverflow.com/questions/1371244/c-arrays-properties/1371329#13713290Answer by Patrick for C# Arrays & PropertiesPatrick2009-09-03T03:40:37Z2009-09-03T03:40:37Z<p>Here's one option:</p>
<pre><code>private Terrain[,,] rawArray = ...;
private View view = new View(rawArray);
private class View
{
private class TransformedView
{
private Terrain[,,] array;
public TransformedView(Terrain[,,] array)
{
this.array = array;
}
public Terrain this[int x, int y, int z]
{
get { ... }
set
{
this.array[2*x, 3*z, -y] = value;
}
}
}
private Terrain[,,] array;
public readonly TransformedView Transformed;
public View(Terrain[,,] array)
{
this.array = array;
Transformed = new TransformedView(array);
}
public Terrain this[int x, int y, int z]
{
get { ... }
set
{
this.array[x, z, y] = value;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1076001/need-help-with-c-fibonacci/1076044#10760442Answer by Patrick for need help with c# , fibonacciPatrick2009-07-02T18:46:50Z2009-07-02T18:46:50Z<pre><code>int[] fib = new int[10];
for (int i = 2; i <= *100*; i++)
</code></pre>
<p>You're going out of the bounds of your array because your loop conditional is too large. A more traditional approach would be to bound the loop by the size of the array:</p>
<pre><code>for (int i = 2; i < fib.Length; i++)
</code></pre>
<p>And make your array bigger, but as Marc said, there are better ways to do this, and I would advise you spend some time reading the wikipedia article on <a href="http://en.wikipedia.org/wiki/Fibonacci%5Fnumber" rel="nofollow">Fibonacci numbers</a>.</p>
http://stackoverflow.com/questions/961470/languages-with-functions-that-do-not-need-parentheses/961487#9614873Answer by Patrick for languages with functions that do not need parentheses?Patrick2009-06-07T08:21:37Z2009-06-07T12:01:07Z<p>Pretty much all functional languages from the ML lineage (Miranda, Haskell, OCML, F#, SML, etc.) don't require parentheses for function calls.</p>
<p>For example, in Haskell:</p>
<pre><code>Prelude> (\x->x) 1
1
</code></pre>
<p>The anonymous identity function is called with 1 and returns 1</p>
http://stackoverflow.com/questions/960557/how-to-generate-permutations-of-a-list-without-reverse-duplicates-in-python-usi/960651#9606512Answer by Patrick for How to generate permutations of a list without "reverse duplicates" in Python using generatorsPatrick2009-06-06T22:01:06Z2009-06-06T22:38:09Z<p>How about this:</p>
<pre><code>from itertools import permutations
def rev_generator(plist):
reversed_elements = set()
for i in permutations(plist):
if i not in reversed_elements:
reversed_i = tuple(reversed(i))
reversed_elements.add(reversed_i)
yield i
>>> list(rev_generator([1,2,3]))
[(1, 2, 3), (1, 3, 2), (2, 1, 3)]
</code></pre>
<p>Also, if the return value must be a list, you could just change the yield i to yield list(i), but for iteration purposes, the tuples will work just fine.</p>
http://stackoverflow.com/questions/960662/what-is-the-purpose-of-this-method-in-the-silverlight-sdk-source-code/960667#9606672Answer by Patrick for What is the purpose of this method in the Silverlight SDK source code?Patrick2009-06-06T22:10:27Z2009-06-06T22:10:27Z<p>It's walking up the tree looking for any element that is either parentless or not a FrameworkElement. The loop is an unrolled tail recursion. A while(true) loop would have been fine too.</p>
http://stackoverflow.com/questions/815806/mappers-reducers-filters/815823#8158231Answer by Patrick for Mappers, Reducers, FIltersPatrick2009-05-02T22:50:12Z2009-05-02T22:50:12Z<p>Filter takes a "list" and a function, applies the function to every member of the list and returns a new list containing only members where the application of the function returned true. For instance:</p>
<pre><code>l = [1,2,3,4]
l = filter(lambda x: x < 3, l)
print l # [1,2]
</code></pre>
<p>Map does the same thing, but returns a list containing the results of the function application:</p>
<pre><code>l = [1,2,3,4]
l = map(lambda x: x < 3, l)
print l # [True,True,False,False]
</code></pre>
http://stackoverflow.com/questions/758973/whats-going-to-replace-html-css-js/759082#7590825Answer by Patrick for What's going to replace HTML & CSS & JS?Patrick2009-04-17T04:58:08Z2009-04-17T09:20:01Z<p>BLTML: Bacon, Lettuce and Tomato Markup Language. </p>
<p>In the future, the web with only be used for posting tasty things we want to eat, so it makes sense to develop a language geared just for this. </p>
<p>The pictures of kittens with words on them will likely be supported with a gross hack .</p>
http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex/728167#7281670Answer by Patrick for How to convert a double to hex?Patrick2009-04-08T01:14:15Z2009-04-08T01:14:15Z<p>The array class has a pack method:</p>
<pre><code>a = [99.0]
s = a.pack("d")
s
=> "\000\000\000\000\000\300X@"
</code></pre>
<p>This gives you a byte string, but converting from that to hex for printing should be trivial.</p>
<p>If you want to go the other way, the string class has an unpack method:</p>
<pre><code>s.unpack("d")
=>[99.0]
</code></pre>
http://stackoverflow.com/questions/727930/three-arguments-to-main-and-other-obfuscating-tricks/727947#7279479Answer by Patrick for Three arguments to main, and other obfuscating tricks.Patrick2009-04-07T23:12:24Z2009-04-07T23:12:24Z<p>Someone's already gone and reversed this: <a href="http://research.microsoft.com/en-us/um/people/tball/papers/xmasgift/" rel="nofollow">http://research.microsoft.com/en-us/um/people/tball/papers/xmasgift/</a>. Just read through that. It'll explain how it all works.</p>
http://stackoverflow.com/questions/727516/what-does-the-unary-plus-operator-do/727542#7275420Answer by Patrick for What does the unary plus operator do?Patrick2009-04-07T20:52:18Z2009-04-07T20:52:18Z<p>I suppose you could use it to always make a number positive. Just overload the unary + operator to be abs. Not really worth confusing your fellow developers, unless you really just want to obfuscate your code. Then it'd work nicely.</p>
http://stackoverflow.com/questions/716077/which-linux-distribution-is-best-for-developing-a-mono-application-in-a-virtual-m/716184#7161840Answer by Patrick for Which Linux distribution is best for developing a Mono application in a virtual machine?Patrick2009-04-04T00:34:07Z2009-04-04T00:34:07Z<p>I'd suggest that you download a premade VM of some flavor. As for which distro, if it's a client app, go with Ubuntu. If it's a server app, it doesn't matter, so go with Ubuntu. ;P </p>
<p>Here's a good premade VM that I've used for testing in the past: <a href="http://www.vmware.com/appliances/directory/95733" rel="nofollow">http://www.vmware.com/appliances/directory/95733</a></p>
http://stackoverflow.com/questions/653296/microsoft-sites-running-on-linux-servers/653307#6533070Answer by Patrick for microsoft sites running on linux servers?Patrick2009-03-17T07:33:51Z2009-03-17T07:33:51Z<p>JustCurious, meet <a href="http://www.akamai.com/" rel="nofollow">Akamai</a>. Akamai, likewise.</p>
http://stackoverflow.com/questions/653228/how-much-time-do-you-spend-writing-code/653240#65324011Answer by Patrick for How much time do you spend writing code?Patrick2009-03-17T06:57:32Z2009-03-17T06:57:32Z<p>I never <em>write</em> code. I simply will it into existence.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17578#1757830Answer by Patrick for Computer Language puns and jokesPatrick2008-08-20T08:16:02Z2009-03-15T09:01:20Z<p>This reminds me: if you really love bad programming puns, you should read <a href="http://www.piratejesus.com/nerdcore/index.html" rel="nofollow">Nerdcore: The Core Wars</a>. My personal favorite is this one: <img src="http://images.longc.at/local/nerdcore017.gif" alt="lol java" /></p>
http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/644337#64433723Answer by Patrick for How do you create a function that returns a function in your language of choice?Patrick2009-03-13T19:50:09Z2009-03-13T22:39:01Z<h2>C# using only Lambdas</h2>
<pre><code>Func<double, double, double, Func<double, double>> curry =
(a, b, c) => (x) => (a * (x * x) + b * x + c);
Func<double, double> quad = curry(1, -79, 1601);
</code></pre>
http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/644355#6443556Answer by Patrick for How do you create a function that returns a function in your language of choice?Patrick2009-03-13T19:56:25Z2009-03-13T21:23:53Z<h2>Python</h2>
<p>In Python using only lambdas:</p>
<pre><code>curry = lambda a, b, c: lambda x: a*x**2 + b*x + c
quad = curry(1, -79, 1601)
</code></pre>
http://stackoverflow.com/questions/633397/asynchronous-connection/633412#6334121Answer by Patrick for Asynchronous connectionPatrick2009-03-11T05:08:20Z2009-03-11T05:08:20Z<p>I'm guessing your code looks like this:</p>
<pre><code>public class lanmessenger {
IPAddress localaddress=IPAddress.Parse("127.0.0.1");
IPEndPoint ip= new IPEndPoint(localaddress,5555);
public lanmessenger(){
...
}
}
</code></pre>
<p>The problem here is that the compiler doesn't want you using initialized fields the way you are. You're using <code>localaddress</code> to initialize <code>ip</code>, which is problematic from the compiler's prospective. Two ways to get around this:</p>
<p>Inline it:</p>
<pre><code> IPEndPoint ip= new IPEndPoint(IPAddress.Parse("127.0.0.1");,5555);
</code></pre>
<p>Or just do it in the constructor: (generally better)</p>
<pre><code>public class lanmessenger {
IPAddress localaddress;
IPEndPoint ip;
public lanmessenger(){
this.localaddress = IPAddress.Parse("127.0.0.1")
this.ip = new IPEndPoint(localaddress,5555);
}
}
</code></pre>
http://stackoverflow.com/questions/628482/can-you-use-linq-types-and-extension-methods-in-ironpython/628529#6285294Answer by Patrick for Can you use LINQ types and extension methods in IronPython?Patrick2009-03-10T00:25:52Z2009-03-10T00:25:52Z<p>Some of the things you'd do with LINQ can be done with list comprehensions:</p>
<pre><code>[myFunc(i) for i in numbers if i > 3]
</code></pre>
<p>Or you can use map, reduce, and filter:</p>
<pre><code>map(myFunc, filter(lambda x: x > 3, numbers))
</code></pre>
<p>But list comprehensions are much more "Pythonic" than using the functional programming constructs. For reducing things, consider using <strong>"".join</strong> or <strong>sum</strong>. And you can check the truth value of entire iterables by using <strong>any</strong> and <strong>all</strong></p>
<p>Just remember these translations:</p>
<pre><code>Select -> map
Where -> filter
Aggregate -> reduce
</code></pre>
<p>And you'll be well on your way!</p>
http://stackoverflow.com/questions/620024/static-in-different-languages/620077#6200771Answer by Patrick for static in different languagesPatrick2009-03-06T19:21:08Z2009-03-06T19:21:08Z<p>In C, static flags a function or global variable as local to the file its located in. </p>
<p>It's kinda like private in other languages. Sorta.</p>
<p>If it's in a function, then static preallocates that variable in the data section of the binary, rather than on the stack at run time.</p>
http://stackoverflow.com/questions/249423/how-does-xor-variable-swapping-work/249469#24946929Answer by Patrick for How does XOR variable swapping work?Patrick2008-10-30T07:15:39Z2009-03-05T20:38:42Z<p>Other people have explained it, now I want to explain why it was a good idea, but now isn't.</p>
<p>Back in the day when we had simple single cycle or multi-cycle CPUs, it was cheaper to use this trick to avoid costly memory dereferences or spilling registers to the stack. However, we now have CPUs with massive pipelines instead. The P4s ranged from having 20 to 31 (or so) stages in their pipelines, where any dependence between reading and writing to a register could cause the whole thing to stall. The xor swap has some very heavy dependencies between A and B that don't actually matter at all but stall the pipeline in practice. A stalled pipeline is a causes a slow code path, and if this swap's in your inner loop, you're going to be moving very slowly.</p>
<p>In general practice, your compiler can figure out what you really want to do when you do a swap with a temp variable and can compile it to a single XCHG instruction. Using the xor swap makes it much harder for the compiler to guess your intent and therefore much less likely to optimize it correctly. Not to mention code maintenance, etc.</p>
http://stackoverflow.com/questions/597788/find-random-point-along-a-line/597796#5977961Answer by Patrick for Find random point along a linePatrick2009-02-28T09:40:18Z2009-02-28T09:40:18Z<pre><code>//Assume x1, x2, and m, b exist as ints
Random r = new Random();
int x3 = r.Next(Math.Min(x1, x2), Math.Max(x1, x2));
int y3 = m * x3 + b;
</code></pre>
<p>Basically, we pick some x between the two xs (guaranteeing the correct domain, and by constraints on your linear function, the correct range) and solve it for y. Not too difficult.</p>
http://stackoverflow.com/questions/589667/match-at-every-second-occurence/589695#5896951Answer by Patrick for Match at every second occurencePatrick2009-02-26T08:50:29Z2009-02-26T08:55:34Z<p>Would something like "(pattern.*?(pattern))*" work for you?</p>
<p>Edit:</p>
<p>The problem with this is that is uses the non-greedy operator *?, and it can be require an awful lot of backtracking along the string, whereas regexes usually don't have to look at a letter more than once. What this means for you, is that this could be slow for large gaps.</p>
http://stackoverflow.com/questions/588622/some-console-gui-questions/588652#5886520Answer by Patrick for some console GUI questionsPatrick2009-02-26T00:57:00Z2009-02-26T00:57:00Z<p>In C#, you can set the text color and the background color via the Console.ForegroundColor and Console.BackgroundColor properties, respectively. For a list of valid colors, see this <a href="http://msdn.microsoft.com/en-us/library/system.consolecolor.aspx" rel="nofollow">MSDN doc</a>.</p>
http://stackoverflow.com/questions/493311/how-to-write-safe-correct-multi-threaded-code-in-net/574018#5740181Answer by Patrick for How to write safe/correct multi-threaded code in .Net?Patrick2009-02-22T00:26:56Z2009-02-22T00:26:56Z<p>Use FIFOs. Lots of them. It's the ancient secret of the hardware programmer, and it's saved my bacon more than once.</p>
http://stackoverflow.com/questions/572604/javascript-how-to-extend-array-prototype-push/572624#5726241Answer by Patrick for Javascript - How to extend Array.prototype.push()?Patrick2009-02-21T08:20:18Z2009-02-21T08:28:39Z<p>You could do it this way:</p>
<pre><code>arr = []
arr.push = function(data) {
alert(data); //callback
return Array.prototype.push.call(this, data);
}
</code></pre>
<p>If you're in a situation without call, you could also go for this solution:</p>
<pre><code>arr.push = function(data) {
alert(data); //callback
//While unlikely, someone may be using psh to store something important
//So we save it.
var saved = this.psh;
this.psh = Array.prototype.push;
var ret = this.psh(data);
this.psh = saved;
return ret;
}
</code></pre>
<p>Edit:</p>
<p>While I'm telling you how to do it, you might be better served with using a different method that performs the callback then just calls push on the array rather than overriding push. You may end up with some unexpected side effects. For instance, push appears to be varadic (takes a variable number of arguments, like printf), and using the above would break that.</p>
<p>You'd need to do mess with _Arguments() and _ArgumentsLength() to properly override this function. I highly suggest against this route. </p>
<p>Edit once more:
Or you could use "arguments", that'd work too. Still advise against taking this route though.</p>
http://stackoverflow.com/questions/500607/what-are-the-lesser-known-but-cool-data-structures/562580#56258020Answer by Patrick for What are the lesser known but cool data structures ?Patrick2009-02-18T20:01:37Z2009-02-19T19:09:10Z<p><a href="http://en.wikipedia.org/wiki/Rope_%28data_structure%29" rel="nofollow">Rope</a>: It's a string that allows for cheap prepends, substrings, middle insertions and appends. I've really only had use for it once, but no other structure would have sufficed. Regular strings and arrays prepends were just far too expensive for what we needed to do, and reversing everthing was out of the question.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4159#4159Comment by Patrick on What is your solution to the FizzBuzz problem?Patrick2009-11-28T00:23:59Z2009-11-28T00:23:59ZI just tried it. Works fine. Did you erase the '@' in the box first?http://stackoverflow.com/questions/1689897/how-to-query-the-filesystem-ntfs-with-sqliteComment by Patrick on How to query the filesystem (NTFS) with SQLite?Patrick2009-11-06T19:44:44Z2009-11-06T19:44:44ZQuery it for what? The underlying filesystem? http://stackoverflow.com/questions/1541725/flops-what-really-is-a-flop/1541759#1541759Comment by Patrick on FLOPS what really is a FLOPPatrick2009-10-09T04:50:28Z2009-10-09T04:50:28ZBased on what I know about the floating point stack of x86, I don't think that's correct. I've amended my answer with a possible rendering of it could be. But we both know that any compiler worth its salt would remove the whole set of statements for lacking any side effects! :)http://stackoverflow.com/questions/1373340/files-changed-since/1373815#1373815Comment by Patrick on Files Changed SincePatrick2009-09-03T17:37:41Z2009-09-03T17:37:41ZWith one caveat: a USN journal must already exist for you to get this data. Windows does not create one by default on XP and most server SKUs, but on Win7, it'll be there. Dunno about Vista.http://stackoverflow.com/questions/960557/how-to-generate-permutations-of-a-list-without-reverse-duplicates-in-python-usi/960651#960651Comment by Patrick on How to generate permutations of a list without "reverse duplicates" in Python using generatorsPatrick2009-06-07T06:15:18Z2009-06-07T06:15:18ZNadia: Didn't know about the Tuple constructor, and decided to be clever rather than looking it up. :P
A more direct answer: it needs to be a tuple, not a list.http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4159#4159Comment by Patrick on What is your solution to the FizzBuzz problem?Patrick2009-06-04T09:59:05Z2009-06-04T09:59:05ZDimensions of the program. Mainly because that's how the ICFP2006 contest measured 2D programs.http://stackoverflow.com/questions/791808/determining-whether-a-number-is-a-prime-number/791813#791813Comment by Patrick on Determining whether a number is a prime numberPatrick2009-04-27T06:51:16Z2009-04-27T06:51:16ZAny c compiler worth its salt will optimize side effect-less leaf function calls--like the above sqrt()--in a loop construct by caching the value. http://stackoverflow.com/questions/775692/using-system-json-for-non-silverlight-projects/775768#775768Comment by Patrick on Using System.Json for non-Silverlight projects?Patrick2009-04-26T05:40:23Z2009-04-26T05:40:23ZThat is better. I really liked the implicit operators on the JsonValue class. I may just give it a shot.http://stackoverflow.com/questions/775692/using-system-json-for-non-silverlight-projects/775768#775768Comment by Patrick on Using System.Json for non-Silverlight projects?Patrick2009-04-22T05:56:08Z2009-04-22T05:56:08ZI looked at it. Seems way too enterprisey for compared to System.Json. I'm mainly looking to use Json to serialize and deserialize lists of implicit datastructures (tuples, etc.). I'm working mostly dynamic data already, so its ability to serialize strongly typed objects isn't exactly something I'm thrilled about, and its other method is overly verbose.http://stackoverflow.com/questions/727516/what-does-the-unary-plus-operator-do/727542#727542Comment by Patrick on What does the unary plus operator do?Patrick2009-04-10T18:28:44Z2009-04-10T18:28:44ZUhh, yeah. That's why I suggested not doing it.http://stackoverflow.com/questions/727629/function-trying-to-put-dot-after-n-charactersComment by Patrick on function trying to put dot after n charactersPatrick2009-04-07T21:21:39Z2009-04-07T21:21:39ZThis sounds like homework.http://stackoverflow.com/questions/716715/how-remove-copyright-of-forum/716718#716718Comment by Patrick on how remove copyright of forumPatrick2009-04-04T07:33:15Z2009-04-04T07:33:15ZHe's asking to do something illegal. It's certainly deserved.http://stackoverflow.com/questions/633656/programming-against-an-enum-in-a-switch-statement-is-this-your-way-to-do/633690#633690Comment by Patrick on Programming against an enum in a switch statement, is this your way to do?Patrick2009-03-11T08:08:28Z2009-03-11T08:08:28ZDude. Enums are just kinda typed integers. Just pass <code>(DrivingState)-1</code> to it for a test.http://stackoverflow.com/questions/633397/asynchronous-connection/633412#633412Comment by Patrick on Asynchronous connectionPatrick2009-03-11T05:11:27Z2009-03-11T05:11:27ZNo problem, man. :)http://stackoverflow.com/questions/633286/nullable-types-best-way-to-check-for-null-or-zero-in-c/633294#633294Comment by Patrick on nullable types: best way to check for null or zero in c#Patrick2009-03-11T04:17:09Z2009-03-11T04:17:09ZThing of beauty.