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
<?php | |
// Run from the command line, so we'll grab arguments from there | |
// input arguments: 0=>script, 1=>file_name, 2=>temp_file | |
$file_name = $argv[1]; | |
$temp_file = $argv[2]; | |
$uploads = '/opt/lampp/htdocs/user_uploads/'; | |
// Set up file location strings |
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
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
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
# install dev tools | |
yum groupinstall "Development tools" | |
# install zero mq | |
wget http://download.zeromq.org/zeromq-4.1.4.tar.gz | |
tar xvzf zeromq-4.1.4.tar.gz | |
cd zeromq-4.1.4 | |
./configure --without-libsodium | |
make |
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 | |
#version details | |
VERSION=0.8.8 | |
PLATFORM=linux | |
ARCH=x86 | |
PREFIX="$HOME/node-v$VERSION-$PLATFORM-$ARCH" | |
#download binaries | |
mkdir -p "$PREFIX" && \ |
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 | |
[[ "$UID" -ne "$ROOT_UID" ]] && echo "You must be root to do that!" && exit 1 | |
VERSION=${1:-"1.1.1"} | |
IP=$(ifconfig eth0 | grep -oP 'inet addr:\K\S+') | |
apt-get update | |
apt-get install -y screen unzip wget nmon openjdk-7-jdk |
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
cd ~ | |
##If you want to install OpenJDK | |
#sudo apt-get update | |
#sudo apt-get install openjdk-8-jre-headless -y | |
###Or if you want to install Oracle JDK, which seems to have slightly better performance | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer |
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
// เปลี่ยนไปอยู่ master ก่อน | |
git checkout master | |
// ทำการ merge โค้ดเข้าไปใน master | |
git merge --no-ff hotfix/create-post-error-0.2.1 | |
// ติดเลขเวอร์ชั่นเพื่อเตือนความจำ | |
git tag -a 0.2.1 | |
-------------------------------------------------- |
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
// สร้าง branch จาก branch ที่เราอยู่ในัจจุบัน | |
git branch feature/<name> | |
// สลับไป branch สร้าง | |
git checkout feature/<name> |
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
// ถ้าเราอยู่ใน master แล้วก็สั่ง | |
git checkout -b hotfix/create-post-error-0.2.1 | |
// หรือถ้าอยู่ branch อื่นๆ ก็พิมพ์ตามคำสั่งด้านล่าง | |
git checkout -b hotfix/create-post-error-0.2.1 master |
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
// เปลี่ยนไปอยู่ master ก่อน | |
git checkout master | |
// ทำการ merge โค้ดเข้าไปใน master | |
git merge --no-ff release/release-0.2 | |
// ติดเลขเวอร์ชั่นเพื่อเตือนความจำ | |
git tag -a 0.2 | |
-------------------------------------------------- |
OlderNewer