Portable GNUstep Console2

The objective is to have portable GNUstep with Console2 terminal, few issues there: default msys.bat looks like has Console2 option but it is not working; it should detect usb driver automatically since could run GNUstep on different computer; prefer launch GNUstep from Console2 instead of launching script then start Console2 …

C: shellsort function

The following function is a Shell sort for sorting an array of integers. The basic idea of this sorting algorithm, which was invented in 1959 by D. L. Shell. The shellsort function is from K&R C, added test driver to verify. test result: $ shellsort The original number array: 4 …

VS 2012 command line env

The command line env setting is in C:\"Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin"\vcvars32.bat. After run this bat file, you will see difference: C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft SDKs\F#\3.0\Framework\v4.0\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VSTSDB\Deploy;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN;C:\Program Files (x86)\Microsoft Visual Studio …

Pydev for Eclipse

Pydev is Eclipse plugin to integrate Python to IDE, can download from here: http://pydev.org/download.html Somehow I cannot see Pydev in eclipse language list, found issue is on mismatched Java SDK, I installed JDK 1.7 64 bits but Eclipse 4.3 used 32bits, however everything in Eclipse is in Java including plugin. …