User DrJokepu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:59:24Z http://stackoverflow.com/feeds/user/8954 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1923882/c-how-expensive-is-casting-an-object/1923902#1923902 0 Answer by DrJokepu for [C#] How Expensive is Casting an Object? DrJokepu 2009-12-17T19:08:34Z 2009-12-17T19:08:34Z <p>No, it shouldn't be avoided at all costs. Casting isn't very expensive. Of course, if you have a loop that runs a million times a second it might make sense to avoid casting to save some performance, otherwise it won't really cause performance issues.</p> <p>The real problem with casting is that it's cheating type safety. If you're not careful, it's not too hard to introduce bugs or decrease the readability of the code if you cast things all over the place.</p> http://stackoverflow.com/questions/1879830/c-try-catch-nightmare/1880087#1880087 0 Answer by DrJokepu for C# try/catch nightmare DrJokepu 2009-12-10T10:30:29Z 2009-12-10T10:30:29Z <p>My guess is that there's a stack overflow happening. The .NET VM simply shuts down Release build processes that encounter a stack overflow, no CLR exceptions thrown. There's probably an internal try / catch inside that function that catches StackOverflowException one way or other, that's why it's not propagating to your code in Debug builds either.</p> <p>The easiest way to figure out what's going on is by making a debug build, attaching a debugger and instructing the debugger to break <em>before</em> any exceptions are thrown (in Visual Studio, Debug/Exceptions and tick "Thrown" for "Common Language Runtime Exceptions" and possibly other ones as well, in cordbg.exe "catch exception")</p> http://stackoverflow.com/questions/1877514/tinymce-model-binding-with-asp-net-mvc/1877592#1877592 1 Answer by DrJokepu for Tinymce Model Binding with ASP.NET MVC DrJokepu 2009-12-09T23:10:59Z 2009-12-09T23:10:59Z <pre><code>&lt;textarea&gt;&lt;%= Model.TextAreaContent %&gt;&lt;/textarea&gt; </code></pre> <p>Please note that since you cannot escape the contents of your string (you need proper HTML elements for TinyMCE) you have to be sure that there's nothing nasty within your string. I'm using the <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow"><strong>HTML Agility Pack</strong></a> to prefilter the contents before putting it into the page.</p> http://stackoverflow.com/questions/1870464/c-common-error-handling/1870574#1870574 1 Answer by DrJokepu for C# common error handling DrJokepu 2009-12-08T23:19:35Z 2009-12-08T23:19:35Z <p>You could use Phil Ross's delegate approach, or alternatively, you can create an IWebMethodInvoker that implements an Invoke() method:</p> <pre><code>interface IWebMethodInvoker { void Invoke(); } </code></pre> <p>Then you implement this interface in a class for each web method call:</p> <pre><code>class CreateInvoker : IWebMethodInvoker { public SomeDataType Data {get; set;} public SomeOtherType Results {get; set;} public void Invoke() { Results = YourWebServiceMethod(Data); } } </code></pre> <p>Then, you create a method that takes an instance of this interface, invokes it and does the error handling:</p> <pre><code>public void ExecuteWebServiceCall(IWebMethodInvoker invoker) { try { invoker.Invoke(); } catch (ExceptionType1 e) { // Handle Exception Type 1 } catch (ExceptionType2 e) { // Handle Exception Type 2 } // etc } </code></pre> <p>Then, all you need to invoke the web service is this:</p> <pre><code>var createInvoker = new CreateInvoker() { Data = someStuff }; ExecuteWebServiceCall(createInvoker); var results = createInvoker.Results; </code></pre> <p>This might be a bit more typing than the delegate approach but possibly less confusing for less experienced developers.</p> http://stackoverflow.com/questions/1867592/c-converting-listbox-to-string-then-aggregate/1867626#1867626 1 Answer by DrJokepu for C# Converting ListBox to String then Aggregate DrJokepu 2009-12-08T15:15:58Z 2009-12-08T15:38:23Z <p>Supposing that you have strings in the listbox, try this:</p> <pre><code>string cols = String.Join(",", listbox1.Items .OfType&lt;Object&gt;() .Select(i =&gt; i.ToString()) .ToArray()); </code></pre> <p>Generally <strong><a href="http://msdn.microsoft.com/en-us/library/57a79xd0.aspx" rel="nofollow">String.Join</a></strong> is used to join a string. This is faster than using a StringBuilder as the size of the new string is already known and it doesn't have to copy everything twice.</p> http://stackoverflow.com/questions/1846222/whats-the-time-complexity-of-getting-an-element-in-an-array-in-php/1846299#1846299 1 Answer by DrJokepu for What's the time complexity of getting an element in an array in PHP? DrJokepu 2009-12-04T11:09:13Z 2009-12-04T11:09:13Z <p>Looking at <a href="http://www.google.com/codesearch/p?hl=en#EKZaOgYQHwo/unstable/sources/php-5.1.4.tar.bz2%7COdM6HPk4UX4/php-5.1.4/ext/standard/array.c&amp;q=array%20lang%3Ac%20package%3Aphp" rel="nofollow">array.c in the PHP source code</a> reveals that they're implemented as hash tables, which means typically O(1) (it's actually O(N) if you're very strict but can be as bad as O(log N)) for looking up an element.</p> <p>If in doubt, you can always measure though. Create an array of 10, 100, 1000, 10000, 100000, 1000000 etc elements and measure the performance, extrapolate the data to a function and you will have the average performance characteristics.</p> http://stackoverflow.com/questions/1836349/sorting-and-i18n-in-database/1836458#1836458 1 Answer by DrJokepu for Sorting and i18n in Database DrJokepu 2009-12-02T22:55:38Z 2009-12-02T22:55:38Z <p>Unfortunately, if you want to do that in the database, you will have to store the internationalized versions as well in the database (or at least their order). Otherwise, how could the database engine possibly know how to sort?</p> <p>You will have to create a table with three columns: the English version, the language code and the translated version (with the English version and the language code together being the primary key). Then join to this table in in you query by using the English word and a language code and then sort on the internationalized version.</p> http://stackoverflow.com/questions/1828782/strategy-for-avoiding-a-common-sql-development-error-misleading-result-on-join-b/1828967#1828967 1 Answer by DrJokepu for Strategy for avoiding a common sql development error (misleading result on join bug) DrJokepu 2009-12-01T21:13:21Z 2009-12-01T21:13:21Z <p>If you're using SQL Server, you can use GUID columns as primary keys (that's what we do). You won't have problems with collisions again.</p> http://stackoverflow.com/questions/1826804/rename-pdf-file-to-be-downloaded-on-fly/1826817#1826817 0 Answer by DrJokepu for Rename pdf file to be downloaded on fly DrJokepu 2009-12-01T15:12:40Z 2009-12-01T15:12:40Z <p>The filename of the content served is defined in the HTTP headers. Look around the <a href="http://php.net/manual/en/function.header.php" rel="nofollow">PHP page on headers</a> (also the comments) for more info.</p> http://stackoverflow.com/questions/1825325/how-to-handle-with-older-ie-versions-and-webdesign/1825436#1825436 3 Answer by DrJokepu for How to handle with older IE versions and webdesign? DrJokepu 2009-12-01T10:57:52Z 2009-12-01T11:31:11Z <p>First, don't panic. It's not that hard to get the layout working properly in IE6. A lot of stuff is possible with IE6 you just have to do things a bit differently. It doesn't take an awful lot of time to get a page IE6 compatible (most of the time).</p> <p>Here are the main key issues off the top of my head:</p> <ul> <li>First, conditional comments are your friends. Use them to pull in the IE6 versions of your CSS files.</li> <li>No transparent PNGs. Use either transparent GIFs, non-transparent images or google for IE6 transparent PNG hack.</li> <li>No <code>clear:left</code> or <code>clear:right</code>. Just use <code>clear:both</code>.</li> <li>Drop down lists below divs appear on the top of the divs: several solutions available, either hide the dropdowns before displaying the foreground div or use the iframe trick (create an iframe of the size of the foreground div and put it below the div, that will hide the dropdown)</li> <li>No <code>position: fixed</code>. You will have to live with that. You can try <code>position: absolute</code> instead or some javascript but that will be really slow. (Let's just say, JavaScript execution speed is not one of IE6's great strengths).</li> <li>IE6 has CSS gradients and CSS shadows (just like FF and Safari) but you access them differently, Google IE CSS filters to learn more.</li> <li>Try to use jQuery or some other JavaScript library, they hide a lot of complexity and browser incompatability.</li> <li>The rest is just fiddling with dimensions. It takes a bit of a time but it's not that hard.</li> </ul> <p>Good luck!</p> http://stackoverflow.com/questions/1809606/what-is-an-irrational-number-relevant-to-computer-science/1809625#1809625 3 Answer by DrJokepu for What is an irrational number relevant to computer science? DrJokepu 2009-11-27T16:26:30Z 2009-11-28T15:01:02Z <p>0.1123581321345589144233377...</p> <p><a href="http://www.google.com/search?q=112358" rel="nofollow">http://www.google.com/search?q=112358</a></p> http://stackoverflow.com/questions/1807285/odp-ado-net-driver-returns-decimal-with-extra-zero-in-string-representation/1807306#1807306 2 Answer by DrJokepu for ODP ADO.NET driver returns decimal with extra zero in string representation DrJokepu 2009-11-27T07:52:20Z 2009-11-27T07:52:20Z <p>Try this:</p> <pre><code>decimal trimmed = ((decimal)((int)(number * 1000))) / 1000 </code></pre> <p>Casting to int gets rid of the fractional part. You don't need all the parentheses but I think it's easier to see what's going on if the order of operations is explictily indicated.</p> http://stackoverflow.com/questions/1801264/centralised-settings-in-c-for-multiple-programs/1801268#1801268 5 Answer by DrJokepu for Centralised settings in C# for multiple programs DrJokepu 2009-11-26T02:39:56Z 2009-11-26T02:49:43Z <p>Have you considered using the Windows Registry? We all hate it, but maybe it's the best option in this case as it is centralized and you could share settings easily across applications.</p> <p><strong>EDIT</strong>: If you don't like the Registry (and I don't blame you for it), you can create an XML or some other configuration file in a directory under the Application Data special folder. This is how this is done these days as far as I know.</p> <pre><code>string appData = Environment.GetFolderPath( Environment.SpecialFolder.LocalApplicationData)); string folder = "MyApplicationName"; string fileName = "settings.xml"; string path = Path.Combine(Path.Combine(appData, folder), fileName); </code></pre> http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic/1790219#1790219 0 Answer by DrJokepu for In C is "i+=1;" atomic? DrJokepu 2009-11-24T13:55:58Z 2009-11-24T13:55:58Z <p>No, it isn't. If the value of i is not loaded to one of the registers already, it cannot be done in one single assembly instruction.</p> http://stackoverflow.com/questions/393462/defend-zero-based-arrays 42 Defend zero-based arrays DrJokepu 2008-12-26T04:12:05Z 2009-11-23T22:24:33Z <p>A <a href="http://stackoverflow.com/questions/392397/arrays-whats-the-point">question asked here recently</a> reminded me of a debate I had not long ago with a fellow programmer. Basically he argued that zero-based arrays should be replaced by one-based arrays since arrays being zero based is an implementation detail that originates from the way arrays and pointers and computer hardware work, but these sort of stuff should not be reflected in higher level languages.</p> <p>Now I am not really good at debating so I couldn't really offer any good reasons to stick with zero-based arrays other than they sort of feel like more appropriate. I am really interested in the opinions of other developers, so I sort of challenge you to come up with reasons to stick with zero-based arrays!</p> http://stackoverflow.com/questions/1784264/number-of-nested-loops-at-runtime/1784270#1784270 2 Answer by DrJokepu for Number of nested loops at runtime DrJokepu 2009-11-23T16:28:14Z 2009-11-23T16:28:14Z <p>One word: <strong><a href="http://en.wikipedia.org/wiki/Recursion%5F%28computer%5Fscience%29" rel="nofollow">Recursion</a></strong>.</p> http://stackoverflow.com/questions/1767048/if-c-is-type-safe-why-is-this-possible-without-casting/1767152#1767152 1 Answer by DrJokepu for If C# is type safe why is this possible without casting? DrJokepu 2009-11-19T22:54:16Z 2009-11-20T00:51:31Z <p>Because there's an implicit conversion operator defined from char to int. No further explanation is necessary.</p> http://stackoverflow.com/questions/1757902/is-there-any-assembly-language-debugger-for-os-x/1757920#1757920 5 Answer by DrJokepu for Is there any assembly language debugger for OS X? DrJokepu 2009-11-18T18:03:04Z 2009-11-18T18:03:04Z <p>XCode ships with <a href="http://devworld.apple.com/tools/gcc%5Foverview.html" rel="nofollow">GDB</a>, the GNU Debugger.</p> http://stackoverflow.com/questions/1754934/program-c-for-105-3-without-using-operator/1755058#1755058 7 Answer by DrJokepu for program c# for 10+(5/3) without using '/' operator DrJokepu 2009-11-18T10:29:21Z 2009-11-18T10:29:21Z <p>Here's an approach using <strong>logarithms</strong> to replace multiplication (which is the way they did multiplication before the advent of computers):</p> <pre><code>var result = Math.Pow(Math.E, Math.Log(5) - Math.Log(3)) + 10; </code></pre> <p><img src="http://upload.wikimedia.org/wikipedia/commons/a/a0/Pocket%5Fslide%5Frule.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1735795/hex-0x0001-vs-0x00000001/1735803#1735803 5 Answer by DrJokepu for Hex 0x0001 vs 0x00000001 DrJokepu 2009-11-14T22:23:03Z 2009-11-14T22:23:03Z <p>Assuming that this is C, C++, Java, C# or something similar, they are the same. 0x0001 implies a 16-bit value while 0x00000001 implies a 32-bit value, but the real word length is determined by the compiler at compile time when evaluating hexadecimal literals such as these. This is a question of coding style, but it doesn't make any difference in the compiled code.</p> http://stackoverflow.com/questions/1722646/hex-vs-decimal-as-oraclecommand-parameters/1722708#1722708 0 Answer by DrJokepu for Hex vs decimal as OracleCommand parameters DrJokepu 2009-11-12T14:48:04Z 2009-11-12T14:48:04Z <p>I suppose he uses hexadecimal for 0xff (255) to signify that it is (2^8 - 1) for a reason. I'm not sure what the reason is though. Maybe Oracle works better with column widths of powers of two? I've never heard about that before so I don't know if it is true.</p> http://stackoverflow.com/questions/1721741/casting-generic-type-as-t-whilst-enforcing-the-type-of-t/1721762#1721762 1 Answer by DrJokepu for Casting generic type "as T" whilst enforcing the type of T DrJokepu 2009-11-12T12:10:05Z 2009-11-12T14:03:09Z <p>Read up on <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">Constraints on Type Parameters in C#</a>.</p> <p>In this particular case, you must ensure that T is a class:</p> <pre><code>public abstract class SessionManager&lt;T&gt; where T : class, ISessionManager </code></pre> http://stackoverflow.com/questions/1721231/how-to-emulate-ie7-and-ff2/1721255#1721255 2 Answer by DrJokepu for How to emulate IE7 and FF2? DrJokepu 2009-11-12T10:17:31Z 2009-11-12T10:17:31Z <p>You need to run in in a virtual machine as you can't have multiple versions of IE installed on the same machine the same time.</p> <ol> <li><a href="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx" rel="nofollow">Downlaod Virtual PC 2007</a></li> <li>Download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;displaylang=en" rel="nofollow">IE7 Virtual PC</a> image from Microsoft. There's also an IE6 image there.</li> </ol> <p>You can also install FF2 on the virtual machines safely.</p> http://stackoverflow.com/questions/1673977/net-4-profiler 0 .NET 4 Profiler? DrJokepu 2009-11-04T14:11:05Z 2009-11-11T16:12:09Z <p>Does anyone know of a profiler that works with .NET 4 (beta 2)? I normally use the EQATEC profiler but it doesn't seem to be working with .NET 4 executables.</p> http://stackoverflow.com/questions/1707576/mysql-connection-can-i-leave-it-open/1707649#1707649 3 Answer by DrJokepu for MySql connection, can I leave it open? DrJokepu 2009-11-10T12:35:54Z 2009-11-10T12:35:54Z <p>Since you're using ADO.NET, you can use ADO.NET's inbuilt <strong>connection pooling</strong> capabilities. Actually, let me refine that: you <strong>must</strong> always use ADO.NET's inbuilt connection pooling capabilities. By doing so you will get the .NET runtime to transparently manage your connections for you in the background. It will keep the connections open for a while even if you closed them and reuse them if you open a new connection. This is really fast stuff.</p> <p>Make sure to mention in your connection string that you want pooled connections as it might not be the default behaviour.</p> <p>You only need to create connections locally when you need them, since they're pooled in the backrgound so there's no overhead in creating a new connection:</p> <pre><code>using (var connection = SomeMethodThatCreatesAConnectionObject()) { // do your stuff here connection.Close(); // this is not necessary as // Dispose() closes it anyway // but still nice to do. } </code></pre> <p>That's how you're supposed to do it in .NET.</p> http://stackoverflow.com/questions/1702321/jquery-dollar-sign/1702333#1702333 3 Answer by DrJokepu for jquery Dollar sign DrJokepu 2009-11-09T16:57:42Z 2009-11-09T16:57:42Z <p>In the first case, the local varialbe <code>$tgt</code> will hold the jQuery element (wrapped around a DOM element), in the second case it will hold the DOM element.</p> <p>You cannot use the jQuery manipulation methods (such as <code>.val()</code>) directly on DOM elements, hence you need to convert it to a jQuery element first if you want to do so.</p> http://stackoverflow.com/questions/1684268/how-to-upload-a-file-over-2mb/1684285#1684285 5 Answer by DrJokepu for How to upload a file over 2MB DrJokepu 2009-11-05T23:04:43Z 2009-11-05T23:04:43Z <p>It's in kilobytes, not bytes:</p> <p><strong><a href="http://msdn.microsoft.com/en-us/library/e1f13641%28VS.71%29.aspx" rel="nofollow">maxRequestLength on MSDN:</a></strong></p> <blockquote> <p>Indicates the maximum file upload size supported by ASP.NET. This limit can be used to prevent denial of service attacks caused by users posting large files to the server. The size specified is in kilobytes. The default is 4096 KB (4 MB).</p> </blockquote> http://stackoverflow.com/questions/1680025/can-teamcitys-net-nunitaddin-process-csproj-files/1680146#1680146 1 Answer by DrJokepu for Can TeamCity's .NET NUnitaddin process csproj files? DrJokepu 2009-11-05T12:06:24Z 2009-11-05T12:06:24Z <p>The way we do it is by taking advantage of TeamCity's ability to automatically pick up NUnit tests in .csproj files.</p> <ul> <li>First, you need to install the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a>.</li> <li><p>Then, set up your .csproj files the following way:</p> <ul> <li><p>Have this in right after &lt;Project&gt;</p> <p>&lt;Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/&gt;</p></li> <li><p>Create an ItemGroup:</p> <p>&lt;ItemGroup&gt; &lt;TestAssembly Include="path/to/binary.dll" /&gt; &lt;/ItemGroup&gt;</p></li> <li><p>Create an NUnit target:</p> <p>&lt;Target Name="NUnit"&gt; &lt;NUnit Assemblies="@(TestAssembly)" /&gt; &lt;/Target&gt;</p></li> </ul></li> <li><p>Then, in TeamCity, in the "Runner" part of project setting, choose <strong>MSBuild</strong> as the runner and in the <strong>Targets</strong> field specify both <em>build</em> and <em>nunit</em> as targets</p> <p>Targets: <strong>build nunit</strong></p></li> </ul> <p>TeamCity should pick up the unit tests automatically on the next build.</p> http://stackoverflow.com/questions/1679881/asp-net-mvc-user-friendly-401-error/1680021#1680021 0 Answer by DrJokepu for ASP.NET MVC user friendly 401 error DrJokepu 2009-11-05T11:40:41Z 2009-11-05T11:40:41Z <p>If you're using ASP.NET MVC, you're more than likely to use IIS, so why don't you just set up IIS to use your custom 401 error page for that Web Application / Virtual Directory?</p> http://stackoverflow.com/questions/1670127/compiled-dynamic-language/1670208#1670208 0 Answer by DrJokepu for Compiled dynamic language DrJokepu 2009-11-03T21:22:21Z 2009-11-03T21:22:21Z <p><strong>JavaScirpt + V8</strong> (the Chrome JavaScript compiler)</p> <p>JavaScript is</p> <ul> <li>dynamic</li> <li>self-modifying (self-evaluating) (well, sort of, depending on your definition)</li> <li>has a C-like syntax (again, sort of, that's the best you will get for dynamic)</li> </ul> <p>And you now can compile it with V8: <a href="http://code.google.com/p/v8/" rel="nofollow">http://code.google.com/p/v8/</a></p> http://stackoverflow.com/questions/1932737/0xdeadbeef-or-0xdeadbeef-upper-or-lower-case-hex/1932764#1932764 Comment by DrJokepu on 0xDEADBEEF or 0xdeadbeef? Upper or lower case hex? DrJokepu 2009-12-19T12:20:08Z 2009-12-19T12:20:08Z +1 lowercase hexcodes ftw! http://stackoverflow.com/questions/1906932/can-anybody-send-me-the-link-for-the-below-book-to-download Comment by DrJokepu on Can anybody send me the link for the below book to download..... DrJokepu 2009-12-15T11:54:37Z 2009-12-15T11:54:37Z This is a programming Q/A site, not a warez forum http://stackoverflow.com/questions/1885859/what-is-the-worst-net-api/1886270#1886270 Comment by DrJokepu on What is the worst .NET API DrJokepu 2009-12-11T10:33:25Z 2009-12-11T10:33:25Z Welcome to Stackoverflow! I see that you've only registered recently so maybe you don't know all the rules and customs here. Language Holy Wars and pointless rants are not welcome on Stackoverflow. There's Reddit for that. On the other hand, helpful answers are always welcome. http://stackoverflow.com/questions/1882630/disabling-back-button-browser Comment by DrJokepu on Disabling Back Button Browser DrJokepu 2009-12-10T17:33:14Z 2009-12-10T17:33:14Z <a href="http://stackoverflow.com/questions/665430/disable-back-refresh-button-in-browser-closed" rel="nofollow" title="disable back refresh button in browser closed">stackoverflow.com/questions/665430/&hellip;</a> http://stackoverflow.com/questions/1882630/disabling-back-button-browser Comment by DrJokepu on Disabling Back Button Browser DrJokepu 2009-12-10T17:32:34Z 2009-12-10T17:32:34Z <a href="http://stackoverflow.com/questions/665399" rel="nofollow">stackoverflow.com/questions/665399</a> http://stackoverflow.com/questions/1877514/tinymce-model-binding-with-asp-net-mvc Comment by DrJokepu on Tinymce Model Binding with ASP.NET MVC DrJokepu 2009-12-09T23:54:58Z 2009-12-09T23:54:58Z jchapa: As long as you don't modify CKEditor itself, you'll be fine. You only need to purchase a commercial license if you modify CKEditor itself <i>and</i> you're not willing to contribute your changes back to the original CKEditor source. http://stackoverflow.com/questions/1877514/tinymce-model-binding-with-asp-net-mvc Comment by DrJokepu on Tinymce Model Binding with ASP.NET MVC DrJokepu 2009-12-09T23:25:14Z 2009-12-09T23:25:14Z Is that a requirement to use TinyMCE? I had all sorts of problems with it and just decided to switch to CKEditor <a href="http://ckeditor.com/" rel="nofollow">ckeditor.com</a> - it is a lot less headache in my opinion. Maybe you could give it a try. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873443#1873443 Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)? DrJokepu 2009-12-09T12:17:07Z 2009-12-09T12:17:07Z @Jon Skeet: For simple splitting and reconstitution this is not an issue, however if they have different meanings (e.g. bits 0..15 is an X coordinate and bits 16..31 is a Y coordinate) you will end up mixing up the two. I have no XBOX 360 nor an emulator so I can't test it but it seems to me that this is what would happen. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873423#1873423 Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)? DrJokepu 2009-12-09T12:05:51Z 2009-12-09T12:05:51Z reinier: Fair enough. I'm only saying it because if the first and second half have different meanings, you might want to make sure that you get the right half. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873443#1873443 Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)? DrJokepu 2009-12-09T12:00:05Z 2009-12-09T12:00:05Z As I have explained in reinier's answer, you cannot assume little endiannes in .NET. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873423#1873423 Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)? DrJokepu 2009-12-09T11:58:49Z 2009-12-09T11:58:49Z The .NET VM is not necessarily little endian. The XBOX 360 runs on the PowerPC architecture and is configured to use big endian. The XNA framework is a version of the .NET Framework by Microsoft for developing games and applications for the XBOX 360. So you can't assume little endiannes. http://stackoverflow.com/questions/1867791/how-does-your-company-keep-up-to-date-with-technological-progress/1867807#1867807 Comment by DrJokepu on How does your company keep up-to-date with technological progress? DrJokepu 2009-12-08T15:53:30Z 2009-12-08T15:53:30Z The motivation to learn should come from inside. Offering money for that is no better than offering money for your kids if they get good grades. http://stackoverflow.com/questions/1867592/c-converting-listbox-to-string-then-aggregate/1867626#1867626 Comment by DrJokepu on C# Converting ListBox to String then Aggregate DrJokepu 2009-12-08T15:38:49Z 2009-12-08T15:38:49Z @dtb: you're right of course, thanks, i've fixed it http://stackoverflow.com/questions/1864160/javascript-jquery-ajax-issue-post-works-fine-in-firefox-ie-safari-but-not-chro Comment by DrJokepu on JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome. DrJokepu 2009-12-08T02:15:15Z 2009-12-08T02:15:15Z Sorry it's not an apostrophe, it's a quotation mark in this case but the rest still applies. http://stackoverflow.com/questions/1864160/javascript-jquery-ajax-issue-post-works-fine-in-firefox-ie-safari-but-not-chro Comment by DrJokepu on JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome. DrJokepu 2009-12-08T02:14:10Z 2009-12-08T02:14:10Z Not related directly to the question but consider escaping strings before emitting them to JavaScript. In this case, for example (a) your code will break with any username having apostrophes in it and (b) users will be able to inject arbitrary code in your javascript with clever enough usernames, therefore exploting the XSS vulnerability.