User DrJokepu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T22:59:24Zhttp://stackoverflow.com/feeds/user/8954http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923882/c-how-expensive-is-casting-an-object/1923902#19239020Answer by DrJokepu for [C#] How Expensive is Casting an Object?DrJokepu2009-12-17T19:08:34Z2009-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#18800870Answer by DrJokepu for C# try/catch nightmareDrJokepu2009-12-10T10:30:29Z2009-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#18775921Answer by DrJokepu for Tinymce Model Binding with ASP.NET MVCDrJokepu2009-12-09T23:10:59Z2009-12-09T23:10:59Z<pre><code><textarea><%= Model.TextAreaContent %></textarea>
</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#18705741Answer by DrJokepu for C# common error handling DrJokepu2009-12-08T23:19:35Z2009-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#18676261Answer by DrJokepu for C# Converting ListBox to String then AggregateDrJokepu2009-12-08T15:15:58Z2009-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<Object>()
.Select(i => 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#18462991Answer by DrJokepu for What's the time complexity of getting an element in an array in PHP?DrJokepu2009-12-04T11:09:13Z2009-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&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#18364581Answer by DrJokepu for Sorting and i18n in DatabaseDrJokepu2009-12-02T22:55:38Z2009-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#18289671Answer by DrJokepu for Strategy for avoiding a common sql development error (misleading result on join bug)DrJokepu2009-12-01T21:13:21Z2009-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#18268170Answer by DrJokepu for Rename pdf file to be downloaded on flyDrJokepu2009-12-01T15:12:40Z2009-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#18254363Answer by DrJokepu for How to handle with older IE versions and webdesign?DrJokepu2009-12-01T10:57:52Z2009-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#18096253Answer by DrJokepu for What is an irrational number relevant to computer science?DrJokepu2009-11-27T16:26:30Z2009-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#18073062Answer by DrJokepu for ODP ADO.NET driver returns decimal with extra zero in string representationDrJokepu2009-11-27T07:52:20Z2009-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#18012685Answer by DrJokepu for Centralised settings in C# for multiple programsDrJokepu2009-11-26T02:39:56Z2009-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#17902190Answer by DrJokepu for In C is "i+=1;" atomic?DrJokepu2009-11-24T13:55:58Z2009-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-arrays42Defend zero-based arraysDrJokepu2008-12-26T04:12:05Z2009-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#17842702Answer by DrJokepu for Number of nested loops at runtimeDrJokepu2009-11-23T16:28:14Z2009-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#17671521Answer by DrJokepu for If C# is type safe why is this possible without casting?DrJokepu2009-11-19T22:54:16Z2009-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#17579205Answer by DrJokepu for Is there any assembly language debugger for OS X?DrJokepu2009-11-18T18:03:04Z2009-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#17550587Answer by DrJokepu for program c# for 10+(5/3) without using '/' operatorDrJokepu2009-11-18T10:29:21Z2009-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#17358035Answer by DrJokepu for Hex 0x0001 vs 0x00000001DrJokepu2009-11-14T22:23:03Z2009-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#17227080Answer by DrJokepu for Hex vs decimal as OracleCommand parametersDrJokepu2009-11-12T14:48:04Z2009-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#17217621Answer by DrJokepu for Casting generic type "as T" whilst enforcing the type of TDrJokepu2009-11-12T12:10:05Z2009-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<T>
where T : class, ISessionManager
</code></pre>
http://stackoverflow.com/questions/1721231/how-to-emulate-ie7-and-ff2/1721255#17212552Answer by DrJokepu for How to emulate IE7 and FF2?DrJokepu2009-11-12T10:17:31Z2009-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&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-profiler0.NET 4 Profiler?DrJokepu2009-11-04T14:11:05Z2009-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#17076493Answer by DrJokepu for MySql connection, can I leave it open?DrJokepu2009-11-10T12:35:54Z2009-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#17023333Answer by DrJokepu for jquery Dollar sign DrJokepu2009-11-09T16:57:42Z2009-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#16842855Answer by DrJokepu for How to upload a file over 2MBDrJokepu2009-11-05T23:04:43Z2009-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#16801461Answer by DrJokepu for Can TeamCity's .NET NUnitaddin process csproj files?DrJokepu2009-11-05T12:06:24Z2009-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 <Project></p>
<p><Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/></p></li>
<li><p>Create an ItemGroup:</p>
<p><ItemGroup>
<TestAssembly Include="path/to/binary.dll" />
</ItemGroup></p></li>
<li><p>Create an NUnit target:</p>
<p><Target Name="NUnit">
<NUnit Assemblies="@(TestAssembly)" />
</Target></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#16800210Answer by DrJokepu for ASP.NET MVC user friendly 401 errorDrJokepu2009-11-05T11:40:41Z2009-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#16702080Answer by DrJokepu for Compiled dynamic languageDrJokepu2009-11-03T21:22:21Z2009-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#1932764Comment by DrJokepu on 0xDEADBEEF or 0xdeadbeef? Upper or lower case hex?DrJokepu2009-12-19T12:20:08Z2009-12-19T12:20:08Z+1 lowercase hexcodes ftw!http://stackoverflow.com/questions/1906932/can-anybody-send-me-the-link-for-the-below-book-to-downloadComment by DrJokepu on Can anybody send me the link for the below book to download.....DrJokepu2009-12-15T11:54:37Z2009-12-15T11:54:37ZThis is a programming Q/A site, not a warez forumhttp://stackoverflow.com/questions/1885859/what-is-the-worst-net-api/1886270#1886270Comment by DrJokepu on What is the worst .NET APIDrJokepu2009-12-11T10:33:25Z2009-12-11T10:33:25ZWelcome 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-browserComment by DrJokepu on Disabling Back Button BrowserDrJokepu2009-12-10T17:33:14Z2009-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/…</a>http://stackoverflow.com/questions/1882630/disabling-back-button-browserComment by DrJokepu on Disabling Back Button BrowserDrJokepu2009-12-10T17:32:34Z2009-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-mvcComment by DrJokepu on Tinymce Model Binding with ASP.NET MVCDrJokepu2009-12-09T23:54:58Z2009-12-09T23:54:58Zjchapa: 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-mvcComment by DrJokepu on Tinymce Model Binding with ASP.NET MVCDrJokepu2009-12-09T23:25:14Z2009-12-09T23:25:14ZIs 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#1873443Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)?DrJokepu2009-12-09T12:17:07Z2009-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#1873423Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)?DrJokepu2009-12-09T12:05:51Z2009-12-09T12:05:51Zreinier: 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#1873443Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)?DrJokepu2009-12-09T12:00:05Z2009-12-09T12:00:05ZAs 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#1873423Comment by DrJokepu on Is there a nice way to split an int into two shorts (.NET)?DrJokepu2009-12-09T11:58:49Z2009-12-09T11:58:49ZThe .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#1867807Comment by DrJokepu on How does your company keep up-to-date with technological progress?DrJokepu2009-12-08T15:53:30Z2009-12-08T15:53:30ZThe 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#1867626Comment by DrJokepu on C# Converting ListBox to String then AggregateDrJokepu2009-12-08T15:38:49Z2009-12-08T15:38:49Z@dtb: you're right of course, thanks, i've fixed ithttp://stackoverflow.com/questions/1864160/javascript-jquery-ajax-issue-post-works-fine-in-firefox-ie-safari-but-not-chroComment by DrJokepu on JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome. DrJokepu2009-12-08T02:15:15Z2009-12-08T02:15:15ZSorry 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-chroComment by DrJokepu on JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome. DrJokepu2009-12-08T02:14:10Z2009-12-08T02:14:10ZNot 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.