Oracle 11g Express Edition for Windows 64bit?

There is I used this blog post to install it in my machine: http://luminite.wordpress.com/2012/09/06/installing-oracle-database-xe-11g-on-windows-7-64-bit-machine/ The only thing you have to do is replace a registry value during the installation, I’ve done it about three times already, and every time found a different reference on-line, none here on stackoverflow. EDIT: as @kc2001 noted, regedit must be … Read more

How should I create or upload a 32-bit and 64-bit NuGet package?

We’ve been discussing a similar issue on the Chocolatey Google Group. There aren’t any semantics built into NuGet. The requirement wouldn’t be, what processor architecture are you running on. It would have to be what processor architecture is your project targeting. And then that complicates things… you’d have to understand AnyCPU as well. I think … Read more

SWT on Windows 64-bit

On 64-bit JVM’s you need the 64-bit SWT. Current versions can be downloaded here: http://archive.eclipse.org/eclipse/downloads/drops/R-3.6.1-201009090800/index.php#SWT Note the first two downloads, the first is for x32, the other for x64. Note: Even on 64bit Windows, if you use the 32bit JVM, you still need the 32bit SWT version!

I’ve built a Windows service as “Any CPU”. Why does it run in 32-bit mode on my 64 bit machine? [duplicate]

In case anybody runs across the same thing I did: I had created two new config settings (copied from the Debug config). For some reason “Prefer32Bit” flag was set to true, even though the checkbox was greyed out and unchecked in the project config page. You can fix it by removing the line directly from … Read more

bitwise AND in Javascript with a 64 bit integer

Javascript represents all numbers as 64-bit double precision IEEE 754 floating point numbers (see the ECMAscript spec, section 8.5.) All positive integers up to 2^53 can be encoded precisely. Larger integers get their least significant bits clipped. This leaves the question of how can you even represent a 64-bit integer in Javascript — the native … Read more

IIS 7.5 Fixing An attempt was made to load a program with an incorrect format problem?

Found the problem – The solution is in the way that the two AppPools are configured: Default Website/my_app is using DefaultAppPool where Enable 32-Bit applications is TRUE Beta/my_app -> BetaAppPool is using Enable 32-Bit applications is FALSE Changing BetaAppPool to set Enable 32-Bit applications to TRUE has fixed this problem. Solution was found by @Rick … Read more