User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:20:33Z http://stackoverflow.com/feeds/user/47161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807640/how-do-i-determine-the-narrowest-font-on-windows/1807698#1807698 0 Answer by erikkallen for How do I determine the "narrowest" font on Windows? erikkallen 2009-11-27T09:37:40Z 2009-11-27T10:13:31Z <p>Try to enumerate all fonts, measuring "The quick brown fox jumped over the lazy dog" with each one and then take the one that occupies the least space.</p> <p><a href="http://tinyurl.com/yart9mq" rel="nofollow">This link</a> explains how to enumerate fonts</p> <p><a href="http://tinyurl.com/yghv45z" rel="nofollow">This link</a> explains how to measure strings</p> http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805411#1805411 1 Answer by erikkallen for How to declare a union in C#? erikkallen 2009-11-26T19:52:41Z 2009-11-27T10:06:24Z <p>The problem is that no matter what you specify for MarshalAsAttribute, an array is an array is a managed object. To make your code work you will have to get rid of the managed array. To do this you have two options:</p> <p><strong>Option 1:</strong></p> <p>Convert the array to a fixed size buffer, which means change your definition of DDD to this:</p> <pre><code>unsafe struct DDD { [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 512, ArraySubType = UnmanagedType.I1)] fixed byte x[512]; } </code></pre> <p>(I'm not sure whether the MarshalAsAttribute is needed, but I doubt so.)</p> <p>Now you are using an unsafe struct, so you have to compile with the /unsafe switch.</p> <p><strong>Option 2:</strong></p> <p>Convert the array to 512 bytes of members. The easiest way would be to use 64 longs:</p> <pre><code>struct DDD { long x1; long x2; long x3; ... } </code></pre> <p>Edit: Clarified.</p> http://stackoverflow.com/questions/1802692/how-to-use-variable-in-target-database-name-for-insert-statement/1803004#1803004 0 Answer by erikkallen for How to use variable in target database name for insert statement? erikkallen 2009-11-26T10:56:15Z 2009-11-26T10:56:15Z <p>If you need to insert into different databases from the same source database, use dynamic SQL just as others say.</p> <p>However, if the problem is that you want to syncronize devserver1 with devserver2, and prodserver1 with prodserver2, and have the other database as a config option, then use synonyms.</p> http://stackoverflow.com/questions/1802597/find-exception-type/1802641#1802641 0 Answer by erikkallen for find exception type erikkallen 2009-11-26T09:43:33Z 2009-11-26T09:43:33Z <pre><code>try { } catch (Exception err) { if (err is Web2PDFException) DoWhatever(); } </code></pre> <p>but there is probably a better way of doing whatever it is you want.</p> http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#1802624 1 Answer by erikkallen for ASP.NET with MySql or SqlExpress? erikkallen 2009-11-26T09:40:36Z 2009-11-26T09:40:36Z <ol> <li>I don't know MySQL, but 10K hits/day is nothing (unless, of course, they all happen within 10 minutes and the rest of the day is without traffic).</li> <li>Same as 1.</li> <li>SQL server express will use 1GB, but RAM is also used for other things in the system. Upgrading to 2GB would certainly help, above that is uncertain, but RAM is cheap so buy 4GB to be safe.</li> </ol> <p>Edit: 10K hits/day, evenly distributed, is 0.12 hits/second, or 1 hit every 8.5 seconds.</p> http://stackoverflow.com/questions/1802500/does-antiforgerytoken-in-asp-net-mvc-prevent-against-all-csrf-attacks/1802566#1802566 0 Answer by erikkallen for Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks? erikkallen 2009-11-26T09:26:21Z 2009-11-26T09:26:21Z <p>Could the user possibly have done it? If so, it can possibly be done automatically.</p> http://stackoverflow.com/questions/1802512/displaying-attributes-in-xml/1802558#1802558 1 Answer by erikkallen for Displaying attributes in XML erikkallen 2009-11-26T09:24:18Z 2009-11-26T09:24:18Z <p>Your last example has a newline inside the contents. This can make a difference, at least with some XML parsers with some settings applied.</p> http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800426#1800426 0 Answer by erikkallen for Does this code prevent SQL injection? erikkallen 2009-11-25T22:40:19Z 2009-11-25T22:40:19Z <p>I think it's safe (at least in SQL server), and I also think the only thing you actually need to do is <code>s = s.Replace("'", "''")</code>. Of course you should use parameterized queries, but you already know that.</p> http://stackoverflow.com/questions/1799357/how-to-convert-int-into-dword-return-code-from-getexitcodeprocess-c/1799494#1799494 0 Answer by erikkallen for How to convert INT into DWORD return code from GetExitCodeProcess [C#] erikkallen 2009-11-25T19:46:24Z 2009-11-25T19:46:24Z <p>A DWORD and an INT are the same thing*. What you are wondering about has to do with whether a number is represented in base-10 or base-16. However, they are still the same numbers. 32 === 0x20, they are identical, not even automatically converted to eachother. Usually when you care about the base, what you are really looking for is bitwise operations (look up the operators &amp;, | and ~).</p> <p>*yes, I know DWORDs are unsigned and INTs are signed.</p> http://stackoverflow.com/questions/1798374/sql-server-locking-problem-on-popular-table/1798535#1798535 0 Answer by erikkallen for SQL Server locking problem on popular table erikkallen 2009-11-25T17:23:05Z 2009-11-25T17:23:05Z <p>Readers don't block readers, so if inserts and updates on is_clientindex are rare, there will be no contention on this table. Even if SELECTS timed out, it wouldn't just do that silently (and does anyone really allow SELECTs to time out by setting SET LOCK_TIMEOUT?).</p> <p>My guess is that sometimes the clientid does not exists, which is a condition that will cause @s to not be modified and retain its value of NULL.</p> <p>And, btw, use scope_identity() instead of @@identity.</p> http://stackoverflow.com/questions/1796100/what-is-faster-many-ifs-or-else-if/1796150#1796150 0 Answer by erikkallen for what is faster many ifs or else if erikkallen 2009-11-25T10:54:26Z 2009-11-25T10:54:26Z <p>Have you seen in your profiler that branching takes a significant amount of time in your code?</p> http://stackoverflow.com/questions/1789658/datatable-into-listt-without-where-t-class-new-potential-problems/1789774#1789774 1 Answer by erikkallen for DataTable into List<T> *without* where T : class, new() - potential problems? erikkallen 2009-11-24T12:28:33Z 2009-11-24T12:28:33Z <p>An alternative to the reflection solution could perhaps be to use a creator lambda:</p> <pre><code>protected static List&lt;T&gt; ConvertTo&lt;T&gt;(DataTable dt, Func&lt;DataRow, T&gt; create) { int count = dt != null ? dt.Rows.Count : 0; List&lt;T&gt; list = new List&lt;T&gt;(count); if (dt != null &amp; dt.Rows.Count &gt; 0) { foreach (DataRow row in dt.Rows) { list.Add(create(row)); } } return list; } </code></pre> <p>which you then invoke like:</p> <pre><code>var result = ConvertTo(dt, row =&gt; CreateObjectFromRow(row)); </code></pre> http://stackoverflow.com/questions/1785188/why-does-firefox-round-trip-to-the-server-to-determine-whether-my-files-are-modif 1 Why does firefox round-trip to the server to determine whether my files are modifed? erikkallen 2009-11-23T18:51:30Z 2009-11-23T21:56:28Z <p>I have some static content on my web site that I have set up caching for (using Asp.NET MVC). According to Firebug, the first time I open the page, Firefox sends this request:</p> <pre><code>GET /CoreContent/Core.css?asm=0.7.3614.34951 Host: 127.0.0.1:3916 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729) Accept: text/css,*/*;q=0.1 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://127.0.0.1:3916/Edit/1/101 Cookie: .ASPXAUTH=52312E5A802C1A079E2BA29AA2BFBC5A38058977B84452D62ED52855D4164659B4307661EC73A307BFFB2ED3871C67CB3A9AAFDB3A75A99AC0A21C63A6AADE9A11A7138C672E75125D9FF3EFFBD9BF62 Pragma: no-cache Cache-Control: no-cache </code></pre> <p>Which my server replies to with this:</p> <pre><code>Server: ASP.NET Development Server/9.0.0.0 Date: Mon, 23 Nov 2009 18:44:41 GMT X-AspNet-Version: 2.0.50727 X-AspNetMvc-Version: 1.0 Cache-Control: public, max-age=31535671 Expires: Tue, 23 Nov 2010 18:39:12 GMT Last-Modified: Mon, 23 Nov 2009 18:39:12 GMT Vary: * Content-Type: text/css Content-Length: 15006 Connection: Close </code></pre> <p>So far, so good. However, if I refresh Firefox (not a cache-clearing refresh, just a normal one), during that refresh cycle Firefox will once again go to the server with this request:</p> <pre><code>GET /CoreContent/Core.css?asm=0.7.3614.34951 Host: 127.0.0.1:3916 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729) Accept: text/css,*/*;q=0.1 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://127.0.0.1:3916/Edit/1/101 Cookie: .ASPXAUTH=52312E5A802C1A079E2BA29AA2BFBC5A38058977B84452D62ED52855D4164659B4307661EC73A307BFFB2ED3871C67CB3A9AAFDB3A75A99AC0A21C63A6AADE9A11A7138C672E75125D9FF3EFFBD9BF62 If-Modified-Since: Mon, 23 Nov 2009 18:39:20 GMT Cache-Control: max-age=0 </code></pre> <p>to which my server responds <code>304 Not Modified</code>.</p> <p>Why does Firefox issue this second request? In the first response, I said that the cache does not expire for a year (I intend to use query parameters whenever things change). Do I have to add another response header to prevent this extra roundtrip?</p> <p><strong>Edit</strong>: It does not matter whether I press refresh, or whether I go to the page again (or a different URL, which references the same external files). Firefox does the same again. Also, I don't claim this to be a bug in FF, I just wonder if there is another header I can set which means "This document will never change, don't bother me again".</p> http://stackoverflow.com/questions/1769892/sql-server-insert-data-from-table-into-an-xml-variable 2 SQL server insert data from table into an XML variable erikkallen 2009-11-20T11:29:44Z 2009-11-21T22:05:12Z <p>How can I insert a whole bunch of rows into an XML variable without using a cursor? I know I can do</p> <pre><code>SET @errors.modify('insert &lt;error&gt;{ sql:variable("@text") }&lt;/error&gt; as last into /errors[1]') </code></pre> <p>to insert the value of a variable, but I want to basically do</p> <pre><code>SET @errors.modify(SELECT 'insert &lt;error&gt;{ sql:column("text") }&lt;/error&gt;' FROM table) </code></pre> <p>which, of course, isn't legal syntax.</p> <p>Edit: Obviously my question wasn't clear. What I want is to be able to do like this:</p> <pre><code>CREATE TABLE my_table(text nvarchar(50)) INSERT INTO my_table VALUES('Message 2') INSERT INTO my_table VALUES('Message 3') DECLARE @errors xml SET @errors = '&lt;errors&gt;&lt;error&gt;Message 1&lt;/error&gt;&lt;/errors&gt;' SET @errors.modify('INSERT EVERYTHING FROM my_table MAGIC STATEMENT') </code></pre> <p>And after running this code, @errors should contain </p> <pre><code>&lt;errors&gt; &lt;error&gt;Message 1&lt;/error&gt; &lt;error&gt;Message 2&lt;/error&gt; &lt;error&gt;Message 3&lt;/error&gt; &lt;/errors&gt; </code></pre> http://stackoverflow.com/questions/1263134/standard-way-to-detect-when-focus-leaves-an-element 1 Standard way to detect when focus leaves an element erikkallen 2009-08-11T21:47:23Z 2009-11-20T12:21:12Z <p>How can I, in a standard way, detect when focus leaves an element or any of its child elements.</p> <p>blur won't do since it's fired when the focus goes into a child element.</p> <p>IE provides the incredibly useful event focusout for this (it's like blur, but bubbles), but How can I do it in a standard way, except for attaching a blur handler to all the child elements?</p> <p>Edit: apparently I was not clear about what I meant.</p> <p>I have a structure like this:</p> <pre><code>&lt;div id="parent"&gt; &lt;input type="text" id="child1"&gt; &lt;div id="child2" tabindex="0"&gt;yada&lt;/div&gt; &lt;/div&gt; &lt;input type="text" id="outside"/&gt; </code></pre> <p>I want to attach an event handler to parent to find out when focus leaves any of its child elements (child1 and child2) to go to an element outside of parent, e.g. the one with id "outside". In IE I can do this by binding to the focusout event, but that event does not exist in Firefox (or in the W3C DOM).</p> http://stackoverflow.com/questions/1263134/standard-way-to-detect-when-focus-leaves-an-element/1704074#1704074 0 Answer by erikkallen for Standard way to detect when focus leaves an element erikkallen 2009-11-09T21:45:15Z 2009-11-20T12:21:12Z <p>I ended up creating the <a href="http://plugins.jquery.com/project/focus" rel="nofollow">jQuery focus</a> plugin to solve this issue, in case anyone runs into the same problem.</p> http://stackoverflow.com/questions/1762218/how-do-i-use-the-operator-in-mvc/1762252#1762252 4 Answer by erikkallen for How do I use the '?' operator in mvc? erikkallen 2009-11-19T10:16:04Z 2009-11-19T18:51:01Z <p>int? is a shorthand for Nullable&lt;int&gt;, which means that the value can either be an integer or null. To convert a Nullable&lt;int&gt; to an int, use</p> <pre><code>int? ni = 2; int i = (int)ni; </code></pre> <p>or</p> <pre><code>int? ni = 2; int i = ni.Value; </code></pre> <p>This will throw an exception if the value is null, so you can also use</p> <pre><code>int? ni = null; int i = ni ?? 0; </code></pre> <p>to use 0 as a default value.</p> http://stackoverflow.com/questions/1762223/c-calling-a-virtual-method-from-constructor-advice/1762245#1762245 2 Answer by erikkallen for C#: Calling a virtual method from constructor; advice? erikkallen 2009-11-19T10:13:25Z 2009-11-19T10:13:25Z <p>Can you set the background color in an event handler, e.g. OnLoad?</p> http://stackoverflow.com/questions/1756007/why-not-use-tfs-as-a-build-ci-solution/1756887#1756887 1 Answer by erikkallen for Why not use TFS as a build / CI solution ? erikkallen 2009-11-18T15:43:18Z 2009-11-18T15:43:18Z <p>The main problem with TFS is that if you have a server crash, restoring your source code is <a href="http://msdn.microsoft.com/en-us/library/ms404869%28VS.80%29.aspx" rel="nofollow">non-trivial</a>. This is unbelievably bad since the most important aspect of any source control system must be to be fail-resistent, at least if you perform all backups as you should.</p> http://stackoverflow.com/questions/1747434/save-as-dialogbox-to-save-textbox-content-to-a-newfile-using-asp-net-c/1748215#1748215 0 Answer by erikkallen for Save as DialogBox to save textbox content to a newfile using asp.net c# erikkallen 2009-11-17T11:25:53Z 2009-11-17T11:25:53Z <p>As others have said, you can't use the SaveFileDialog. If you do, it will only be visible on the server, and the user can never see it. You can only see it because in your case the server and the client happen to be the same.</p> <p>You should set the HTTP header</p> <pre><code>Content-Disposition: attachment; filename=somefilename.txt </code></pre> http://stackoverflow.com/questions/1748149/dynamic-code-generation/1748199#1748199 1 Answer by erikkallen for Dynamic code generation erikkallen 2009-11-17T11:23:03Z 2009-11-17T11:23:03Z <p>Do the C# source generation and don't care about speed until it matters. The C# compiler is quite quick.</p> http://stackoverflow.com/questions/1747637/how-to-darken-an-image-on-mouseover/1747644#1747644 2 Answer by erikkallen for How to darken an image on mouseover? erikkallen 2009-11-17T09:37:46Z 2009-11-17T09:37:46Z <p>Put a black, semitransparent, div on top of it.</p> http://stackoverflow.com/questions/1745048/is-there-a-simple-way-to-create-a-unique-integer-key-from-a-two-integer-composite/1745124#1745124 2 Answer by erikkallen for Is there a simple way to create a unique integer key from a two-integer composite key? erikkallen 2009-11-16T21:57:52Z 2009-11-16T21:57:52Z <p>Multiply one with a high enough value</p> <pre><code>SELECT id1 * 1000000 + id2 </code></pre> <p>Or use text concatenation:</p> <pre><code>SELECT CAST(CAST(id1 AS nvarchar(10)) + RIGHT('000000' + CAST(id2 AS nvarchar(10)), 6) AS int) </code></pre> <p>Or skip the integer thing and separate the IDs with something non-numeric:</p> <pre><code>SELECT CAST(id1 AS nvarchar) + ':' + CAST(id2 AS nvarchar) </code></pre> http://stackoverflow.com/questions/1743084/setting-array-values-without-knowing-its-type/1744669#1744669 0 Answer by erikkallen for Setting array values without knowing its type erikkallen 2009-11-16T20:32:28Z 2009-11-16T20:32:28Z <p><code>((MyType[])myObjectArray)[0] = new MyType();</code> perhaps?</p> http://stackoverflow.com/questions/1743650/is-there-a-standard-way-for-net-winforms-apps-to-auto-upgrade/1744619#1744619 1 Answer by erikkallen for Is there a standard way for .NET Winforms apps to auto-upgrade? erikkallen 2009-11-16T20:22:47Z 2009-11-16T20:22:47Z <p><a href="http://www.kineticjump.com/Update/default.aspx" rel="nofollow">AppLife Update</a> is worth every cent it costs.</p> http://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739263#1739263 2 Answer by erikkallen for What is a good Javascript debugging tool? erikkallen 2009-11-15T23:23:36Z 2009-11-15T23:23:36Z <p>I think a Visual Studio / IE8 combo is excellent. Beats Firebug for JavaScript debugging, IMO (and you, of course, use a framework like <a href="http://www.jquery.com" rel="nofollow">jQuery</a> to handle crossbrowser issues).</p> http://stackoverflow.com/questions/1721958/using-parameter-in-sql-with-like-keyword/1722010#1722010 1 Answer by erikkallen for using parameter in SQL with LIKE keyword erikkallen 2009-11-12T12:56:52Z 2009-11-12T12:56:52Z <p>You don't use LIKE to search a freetext index. You use CONTAINS or FREETEXT or similar.</p> http://stackoverflow.com/questions/1721354/named-pipe-c-using-net-3-5-features-like-namedpipeclientstream/1721386#1721386 0 Answer by erikkallen for Named pipe C# using .NET 3.5 features like NamedPipeClientStream erikkallen 2009-11-12T10:45:21Z 2009-11-12T10:45:21Z <p>I don't know about *NIX, but in Windows they are in the same namespace as named kernel objects (e.g. named mutexes), which is shared by all processes. As for which pipe to listen to, pass that as a command-line argument.</p> http://stackoverflow.com/questions/1719023/code-review-is-this-the-most-efficient-elegant-way-to-recursively-walk-a-tree/1719049#1719049 1 Answer by erikkallen for Code Review: Is this the most efficient/elegant way to recursively walk a tree erikkallen 2009-11-12T00:28:44Z 2009-11-12T00:28:44Z <p>I would probably do</p> <pre><code>public static void RecursiveFunction(StringBuilder sb, Object treeObject) { sb.Append(treeObject.GetCurrentValue("Name")); if (treeObject.MoveToFirstChild()) { do { RecursiveFunction(sb, treeObject); } while (treeObject.MoveToNextSiblin()); treeObject.MoveToParent(); } } </code></pre> http://stackoverflow.com/questions/1711421/lazy-stream-for-c-net 1 Lazy stream for C# / .NET erikkallen 2009-11-10T21:39:51Z 2009-11-10T22:31:29Z <p>Does anyone know of a lazy stream implementation in .net? IOW, I want a to create a method like this:</p> <pre><code>public Stream MyMethod() { return new LazyStream(...whatever parameters..., delegate() { ... some callback code. }); } </code></pre> <p>and when my other code calls MyMethod() to return retrieve the stream, it will not actually perform any work until someone actually tries to read from the stream. The usual way would be to make MyMethod take the stream parameter as a parameter, but that won't work in my case (I want to give the returned stream to an MVC FileStreamResult).</p> <p>To further explain, what I'm looking for is to create a layered series of transformations, so</p> <p>Database result set =(transformed to)=> byte stream =(chained to)=> GZipStream =(passed to)=> FileStreamResult constructor.</p> <p>The result set can be huge (GB), so I don't want to cache the result in a MemoryStream, which I can pass to the GZipStream constructor. Rather, I want to fetch from the result set as the GZipStream requests data.</p> http://stackoverflow.com/questions/1813113/how-to-inherit-a-private-member-in-javascript Comment by on How to inherit a private member in JavaScript? 2009-11-28T17:36:00Z 2009-11-28T17:36:00Z This pattern does not add a private property. It only adds a local variable called privateProperty in the BaseClass function. http://stackoverflow.com/questions/1813122/is-x-really-faster-than-x-in-practice/1813144#1813144 Comment by on Is ++X really faster than X++, in practice? 2009-11-28T17:34:34Z 2009-11-28T17:34:34Z I think he meant as a pure incrementor. Your code examples are different, and in this case you must use the one that gives the result you want. http://stackoverflow.com/questions/1812159/in-asp-net-is-there-a-function-to-validate-an-email-address/1812162#1812162 Comment by on In asp.net is there a function to validate an email address? 2009-11-28T11:43:14Z 2009-11-28T11:43:14Z One of those things you shouldn't do, but it never causes any problems in practice. http://stackoverflow.com/questions/1811531/sql-sorting-by-email-domain-name Comment by on SQL: Sorting By Email Domain Name 2009-11-28T11:42:09Z 2009-11-28T11:42:09Z @Mitch: Though I agree with you, evidence shows that the code always gets written. http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808106#1808106 Comment by on Get all records that contain a number 2009-11-27T11:23:53Z 2009-11-27T11:23:53Z If this is not a one-off search, yes this is probably a good idea. But, of course, you should use a persisted computed column rather than a trigger. http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808030#1808030 Comment by on Get all records that contain a number 2009-11-27T11:23:07Z 2009-11-27T11:23:07Z (at least no index supplied by any SQL database). http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808030#1808030 Comment by on Get all records that contain a number 2009-11-27T11:22:25Z 2009-11-27T11:22:25Z For the record, no index in the world would help you with this query. http://stackoverflow.com/questions/1805795/how-to-distribute-a-project-built-in-a-interpreted-language/1805909#1805909 Comment by on How To Distribute a Project Built In a Interpreted Language? 2009-11-26T22:28:23Z 2009-11-26T22:28:23Z Why do you say &quot;for no real reason&quot;? Me, personally, would never use the thing if I had to install Perl/Tcl/whatever, but with a standalone executable, I might. http://stackoverflow.com/questions/1805030/why-programming-languages-do-not-include-spaces-in-the-method-identifiers/1805646#1805646 Comment by on Why programming languages do not include spaces in the method "identifiers"? 2009-11-26T21:33:57Z 2009-11-26T21:33:57Z And you would also need a whole lot of lookahead to realize that it is not a call to a function called &quot;if not foo&quot;. http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805411#1805411 Comment by on How to declare a union in C#? 2009-11-26T21:24:59Z 2009-11-26T21:24:59Z OK, I updated to include the unsafe keyword. And if you don't want to use unsafe code, you're out of luck. http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805315#1805315 Comment by on How to declare a union in C#? 2009-11-26T19:50:23Z 2009-11-26T19:50:23Z No, this is just so wrong. Did you read the error message? http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#1802624 Comment by on ASP.NET with MySql or SqlExpress? 2009-11-26T10:58:22Z 2009-11-26T10:58:22Z Unless, of course, you have complex logic that takes more than 8.5 seconds on average to process. But if you can't fix that with indexes, you have probably hit the max database size of 4GB. http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#1802624 Comment by on ASP.NET with MySql or SqlExpress? 2009-11-26T10:57:05Z 2009-11-26T10:57:05Z I mean that it is certainly capable of handling loads WAY larger than 1 hit every 8.5 seconds. But it won't scale into infinity. http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793821#1793821 Comment by on Declaring a variable in an if-else block in C++ 2009-11-25T22:45:09Z 2009-11-25T22:45:09Z And, of course, you should not use assertions to validate user inputs http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection Comment by on Does this code prevent SQL injection? 2009-11-25T22:43:58Z 2009-11-25T22:43:58Z Why the close votes?? It's legitimate