Sublime Text 3 IDE setup

Highlight: Sublime Text 3 already build in support 48 types of language syntax highlight, auto-complete etc Sublime Text 3 only provides few build package for compiling/running Here providing user defined build packages for most popularly languages and scripts: C/C++/Java/Go/Objc/Ruby/Lua/HTML/JavaScript/JQuery/bash it is portable ST3 IDE on windows Language build is pre-zipped …

Setup Android ADT to existing Eclispe

Assumes Eclispe IDE already there, this is simple steps to setup Android ADT kits. download and install Android SDK 1) download and install Android SDK (.exe) on C:\Android\SDK, the Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android. Don’t start …

Install jdk 7 on Solaris x86 64bits

1) download jdk download *.tar.gz from Oracle Java site, this version can be unpacked at local location, don’t need to uninstall current default jdk on system. jdk-7u-linux-i586.tar.gz JDK 7 jdk-7u-linux-x64.tar.gz JRE 7 64 bits 2) unzip jdk cd /usr/jdk/ gunzip *.tar.gz|tar xvf – /usr/jdk/jdk-1.7.0_21 // new jdk 7 3) remove …

Install jdk 7 on openSUSE

1) download jdk 7 rpm from http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html dreamcloud-opensuse:/home/oldhorse/Downloads # cd /root/Downloads/ dreamcloud-opensuse:~/Downloads # ls .directory jdk-7u21-linux-x64.rpm 2) install jdk rpm using zypper dreamcloud-opensuse:~/Downloads # zypper in jdk-7u21-linux-x64.rpm -y Loading repository data… Reading installed packages… ‘-y’ not found in package names. Trying capabilities. No provider of ‘y’ found. Resolving package dependencies… …

ant 1.8.4 installation on window 7

Few tips for ant installation on win7. 1) download ant binary from http://www.apache.org/dist/ant/binaries/ unzip binary to local apache-ant-1.8.4 folder. 2) setup ant run env ANT_HOME: C:\apache-ant-1.8.4 add to PATH: %ANT_HOME%/bin open new terminal, verify ant version: cd %ANT_HOME% ant -version Apache Ant(TM) version 1.8.4 compiled on May 22 2012 3) …