2 steps:
https://support.google.com/a/answer/2644334?hl=en&ref_topic=2644333
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 |
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 |
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/', |
@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 |
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', |
# 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. |
# 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 = [] |
### 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 |