This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more info please visit http://bit.ly/eDs2IM | |
mkdir ~/src | |
# erlang | |
cd ~/src | |
wget http://erlang.org/download/otp_src_R13B02-1.tar.gz | |
tar zxf otp_src_R13B02-1.tar.gz | |
cd otp_src_R13B02-1 | |
./configure --prefix=$HOME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget http://download.playframework.org/releases/play-1.1.1.zip | |
unzip play-1.1.1.zip | |
mv play-1.1.1 $HOME/play-1.1.1 | |
export PATH=$PATH:$HOME/play-1.1.1 | |
cd $HOME | |
play install linkedin | |
git clone git://github.com/feliperazeek/playframework-linkedin.git | |
cd playframework-linked/samples-and-tests/yabe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2011 The Apache Software Foundation | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2011 The Apache Software Foundation | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-startup | |
../../../plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar | |
--launcher.library | |
../../../plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.1.100.v20110502 | |
-product | |
org.eclipse.epp.package.javascript.product | |
--launcher.defaultAction | |
openFile | |
-showsplash | |
org.eclipse.platform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
aa = add -A | |
au = add -u | |
co = checkout | |
cob = checkout -b | |
com = checkout master | |
cod = checkout develop | |
col = checkout local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias p='play run' | |
alias pe='play eclipsify' | |
alias mg='sudo mongod' | |
alias pt='play test' | |
alias pa='play auto-test' | |
alias pb='ant -Dplay.path=$HOME/play' | |
alias pbm='play build-module' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.19370138645172119</real> | |
<key>Green Component</key> | |
<real>0.15575926005840302</real> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ES_HOME=/opt/elasticsearch | |
alias es-health="curl -XGET 'http://localhost:9200/_cluster/health?pretty=true'" | |
alias es-f="cd $ES_HOME/bin; ./elasticsearch -f" | |
alias es-b="cd $ES_HOME/bin; ./elasticsearch" | |
alias es-conf="vi $ES_HOME/config/elasticsearch.yml" | |
alias es-logs="tail -f $ES_HOME/logs/LOGFILENAME.log" | |
alias es-kill="killall java" # of course if it's the only java process in the box |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# /etc/init.d/play -- startup script for play | |
# | |
# Path to Play Installation | |
PLAY_HOME=$HOME/play | |
PLAY=$PLAY_HOME/play | |
# User running the Play process |
OlderNewer