Skip to content

Instantly share code, notes, and snippets.

View khacanh's full-sized avatar
😀

khacanh khacanh

😀
  • Ho Chi Minh city
View GitHub Profile
@khacanh
khacanh / share.js
Last active August 29, 2015 14:14
share
var config = require('./config');
var workerNum = config['worker_concurrency']
var instanceCount = 1, instanceIndex = 0;
try {
var dna = require('~/dna.json');
var instances = dna['engineyard']['environment']['instances'];
var instanceCount = instances.length;
var thisInstanceId = dna['engineyard']['this'];
adduser deploy -d
passwd deploy
adduser deploy sudo
sudo apt-get update
sudo apt-get install build-essential libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip
sudo apt-get install git
su deploy
ssh-keygen -t rsa
install nvm https://github.com/creationix/nvm
@khacanh
khacanh / regex
Last active August 29, 2015 14:13
REGEX
cat sentences.js | grep '[^" ], '
# sync subtitle
f = File.open('Raging.Bull.1980.1080p.BluRay.x264.YIFY.srt')
o = File.open('output1.txt', 'w')
while str = f.gets
o.puts str.gsub(/([\d]{2,2},[\d]{3,3})/) { ($1.gsub(',','').to_i + 2000).to_s.rjust(5, '0').insert(2, ',') }
end
f.close
o.close
@khacanh
khacanh / ssl-gae.md
Created December 15, 2014 05:58
ssl-gae
@khacanh
khacanh / crawlers.rb
Created December 12, 2014 17:39
cralwers
VM1372:2 Personality types in Spanish
VM1372:2 Genres of movies in Spanish
VM1372:2 Finance in Spanish
VM1372:2 English proverbs in Spanish
VM1372:2 Spanish: Either or, Neither Nor
VM1372:2 Spanish Weather Phrases
VM1372:2 Common Spanish Phrases
urls = {
#'Greetings' => 'http://www.rocketlanguages.com/spanish/learn/greetings-in-spanish/',
@khacanh
khacanh / google_client_ruby.rb
Created October 29, 2014 11:20
google-client-ruby
@json_schema="method:STRING,path:STRING,format:STRING,controller:STRING,action:STRING,status:INTEGER,duration:FLOAT,time:TIMESTAMP,view:FLOAT,db:FLOAT,user_agent:STRING,authorization:STRING,error:STRING"
{
"configuration" => {
"load" => {
"sourceFormat" => "NEWLINE_DELIMITED_JSON",
"schema" => @json_schema,
"destinationTable" => {
"projectId" => @project_id,
"datasetId" => @dataset,
"tableId" => @table_id
@khacanh
khacanh / loghugger.rb
Last active August 29, 2015 14:08
Loghugger
require 'google/api_client'
require 'json'
@configs = {
"development" => {
project_id: 'squar-staging',
dataset: 'logs_staging',
table_id: 'squar_server_development',
log_file: 'log/development.log',
service_account: '87068494222-0cggkqe51418os2nvsi8gqut67r52mr3@developer.gserviceaccount.com',
@khacanh
khacanh / gitgod
Created October 15, 2014 05:29
Git god!
# Original http://rebaseandsqua.sh/
#!/bin/sh
set -e
# Get the current branch name.
branch=`git rev-parse --abbrev-ref HEAD`
# Determine the commit at which the current branch diverged.
ancestor=`git merge-base master HEAD`
# Stash any uncommited, changed files.
@khacanh
khacanh / levenshtein_distance.rb
Created October 11, 2014 05:43
levenshtein_distance.rb
# http://en.wikipedia.org/wiki/Levenshtein_distance#Iterative_with_two_matrix_rows
def levenshtein_distance(s, t)
# degenerate cases
return 0 if (s == t)
return t.length if (s.length == 0)
return s.length if (t.length == 0)
# create two work vectors of integer distances
v0 = (0..t.length).to_a
v1 = []
@khacanh
khacanh / speech-to-text
Last active August 29, 2015 14:06
speech-to-text
### AT&T
Use this console https://apigee.com/att/embed/console/ATT?req=%7B%22resource%22%3A%22speechtotext%22%2C%22params%22%3A%7B%22query%22%3A%7B%7D%2C%22template%22%3A%7B%7D%2C%22headers%22%3A%7B%22X-SpeechContext%22%3A%22Generic%22%2C%22Content-Language%22%3A%22en-US%22%2C%22Content-Type%22%3A%22audio%2Famr%22%2C%22Accept%22%3A%22application%2Fjson%22%2C%22headers_name_0%22%3A%22Authorization%22%2C%22headers_value_0%22%3A%22Bearer%204rILx5ztnvpRzRBxFVLbl2UsIJBSntlR%22%7D%2C%22body%22%3A%7B%22undefined%22%3A%22%5Cu0001%5Cu0001%22%2C%22attachmentParamName%22%3A%22speech%22%2C%22attachment%22%3A%22C%3A%5C%5Cfakepath%5C%5Cout.amr%22%2C%22attachmentFormat%22%3A%22binary%22%2C%22attachmentContentDisposition%22%3A%22attachment%22%7D%7D%2C%22verb%22%3A%22post%22%7D
docs http://developer.att.com/apis/speech/docs
android guide file:///Users/anhnguyen/Downloads/ATT%20Speech%20SDK%20Developer%20Guide%20for%20Android.pdf
curl "https://api.att.com/oauth/v4/token" \
--insecure \
--header "Accept: application/j