Python PIP has issues with path for MS Visual Studio 2010 Express for 64-bit install on Windows 7

Ultimately I was able to get pip running. In a nutshell (and redundant from info above) here is what I did to intall 64-bit packages for python 3.3: 1) Installed Microsoft Visual C++ 2010 Express Download Here (http://www.visualstudio.com/downloads/download-visual-studio-vs) 2) Installed Microsoft SDK 7.1 (Windows 7) (http://www.microsoft.com/en-us/download/details.aspx?id=8279) 3) Built/enabled the 64-bit tools in SDK. Go to … Read more

What is the range of a Windows HANDLE on a 64 bits application?

MSDN states: Interprocess Communication Between 32-bit and 64-bit Applications 64-bit versions of Windows use 32-bit handles for interoperability. When sharing a handle between 32-bit and 64-bit applications, only the lower 32 bits are significant, so it is safe to truncate the handle (when passing it from 64-bit to 32-bit) or sign-extend the handle (when passing … Read more

Benefits of 64bit Java platform

My previous version, while not false, was a quickly written oversimplification. Changing from 32 to 64 bits will not automatically make your application run faster, it may in some cases lead to the opposite. On the “negative” side Doing de-referencing of memory pointers in the JVM can take a longer time with 64 bit pointers … Read more

Why is the 64bit JVM faster than the 32bit one?

From: http://www.oracle.com/technetwork/java/hotspotfaq-138619.html#64bit_performance “Generally, the benefits of being able to address larger amounts of memory come with a small performance loss in 64-bit VMs versus running the same application on a 32-bit VM. This is due to the fact that every native pointer in the system takes up 8 bytes instead of 4. The loading of … Read more