Skip to content

Instantly share code, notes, and snippets.

View athiwatp's full-sized avatar
💭
I may be slow to respond.

athiwatp athiwatp

💭
I may be slow to respond.
View GitHub Profile
@athiwatp
athiwatp / gist:f6dde3bac6a46f04a657
Created March 27, 2016 17:25 — forked from MauMaGau/gist:2579601
PHP: video conversion script
<?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
@athiwatp
athiwatp / node-and-npm-in-30-seconds.sh
Created October 26, 2016 18:18 — forked from isaacs/node-and-npm-in-30-seconds.sh
Use one of these techniques to install node and npm without having to sudo. Discussed in more detail at http://joyeur.com/2010/12/10/installing-node-and-npm/ Note: npm >=0.3 is *safer* when using sudo.
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
# 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
#!/bin/sh
#version details
VERSION=0.8.8
PLATFORM=linux
ARCH=x86
PREFIX="$HOME/node-v$VERSION-$PLATFORM-$ARCH"
#download binaries
mkdir -p "$PREFIX" && \
@athiwatp
athiwatp / install-es.sh
Created November 6, 2016 17:12 — forked from ncolomer/install-es.sh
Install elasticsearch on any Linux
#!/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
@athiwatp
athiwatp / es.sh
Created November 10, 2016 03:03 — forked from Globegitter/es.sh
Easy install for elasticsearch on Ubuntu 14.04
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
// เปลี่ยนไปอยู่ master ก่อน
git checkout master
// ทำการ merge โค้ดเข้าไปใน master
git merge --no-ff hotfix/create-post-error-0.2.1
// ติดเลขเวอร์ชั่นเพื่อเตือนความจำ
git tag -a 0.2.1
--------------------------------------------------
// สร้าง branch จาก branch ที่เราอยู่ในัจจุบัน
git branch feature/<name>
// สลับไป branch สร้าง
git checkout feature/<name>
// ถ้าเราอยู่ใน master แล้วก็สั่ง
git checkout -b hotfix/create-post-error-0.2.1
// หรือถ้าอยู่ branch อื่นๆ ก็พิมพ์ตามคำสั่งด้านล่าง
git checkout -b hotfix/create-post-error-0.2.1 master
// เปลี่ยนไปอยู่ master ก่อน
git checkout master
// ทำการ merge โค้ดเข้าไปใน master
git merge --no-ff release/release-0.2
// ติดเลขเวอร์ชั่นเพื่อเตือนความจำ
git tag -a 0.2
--------------------------------------------------