This file contains hidden or 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 | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: text/html; charset=utf-8"); | |
$data = array( | |
'from' => '[email protected]', | |
'to' => '[email protected]', | |
'subject' => '', | |
'text' => "" | |
); |
This file contains hidden or 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
var gulp = require('gulp'), | |
gulpWatch = require('gulp-watch'), | |
del = require('del'), | |
runSequence = require('run-sequence'), | |
argv = process.argv; | |
gulp.task('serve:before', ['watch']); | |
gulp.task('emulate:before', ['build']); | |
gulp.task('deploy:before', ['build']); | |
gulp.task('build:before', ['build']); |
This file contains hidden or 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
var gulp = require('gulp'), | |
gulpWatch = require('gulp-watch'), | |
del = require('del'), | |
runSequence = require('run-sequence'), | |
argv = process.argv; | |
/** | |
* Ionic hooks | |
* Add ':before' or ':after' to any Ionic project command name to run the specified |
This file contains hidden or 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
# See https://github.com/facebookresearch/fastText/blob/master/pretrained-vectors.md | |
for (( i=1; i<=$#; i++ )); do | |
wget -c "https://s3-us-west-1.amazonaws.com/fasttext-vectors/wiki.${!i}.zip" | |
done | |
# For example: | |
# ./download.sh bg el ka hy ru fa es fr de it pt ar tr pl ko | |
# If stopped it will not re-start automatically, but if re-started it will continue from where it stopped. |
OlderNewer