content top

here is my bash profile, how’s yours’?

update: I am using iTerm2 now 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 export EC2_HOME=~/.ec2 export PATH=$PATH:$EC2_HOME/bin #export EC2_PRIVATE_KEY=`ls $EC2_HOME/pk-*.pem` #export EC2_CERT=`ls $EC2_HOME/cert-*.pem` export JAVA_HOME=$(/usr/libexec/java_home) export...

Read More

A Pythonic way to do MapReduce using hadoop

A Pythonic way to do MapReduce using hadoop

Hadoop is a collection of sub-projects from ASF to do hardcore distributed computing written in Java. If you have a look on their powered by page you will find most of the big boys are there. If you are from technology field you must be heard couple of these tools which are sub-projects of Hadoop: We will be using these three in throughout the post: Hadoop Common: The common utilities that support the other Hadoop subprojects. HDFS: A...

Read More
content top