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
#!/usr/bin/env node | |
//this hook installs all your plugins | |
// add your plugins to this list--either | |
// the identifier, the filesystem location | |
// or the URL | |
var pluginlist = [ | |
"cordova-plugin-whitelist", | |
"cordova-plugin-inappbrowser" |
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'); | |
var sh = require('shelljs/global'); | |
var deploy = require('gulp-deploy-git'); | |
var clean = require('gulp-clean'); | |
var BUILD_DIR = "dist"; | |
var PROD_REPO = "ssh://webadmin@HouSuggest/~/CHANGE_ME.git"; | |
var STAGING_REPO = "ssh://webadmin@HouSuggestDev/~/CHANGE_ME.git"; | |
gulp.task('clean', function () { | |
return gulp.src(BUILD_DIR, {read: false}).pipe(clean()); |
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
Host HouSuggest | |
User webadmin | |
HostName dash.hnet.uh.edu | |
Port 22 | |
IdentityFile ~/.ssh/webadmin.pem | |
Host HouSuggestDev | |
User webadmin | |
HostName hnetdev.hnet.uh.edu | |
Port 22 | |
IdentityFile ~/.ssh/webadmin.pem |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/> | |
<script src="https://cdn.rawgit.com/jpillora/xdomain/0.7.3/dist/xdomain.min.js" master="*"></script> | |
</head> | |
</html> |
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
android { | |
lintOptions { | |
checkReleaseBuilds false | |
} | |
} |
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
+^Delete:: | |
Sleep, 250 | |
SendMessage,0x112,0xF170,2,,Program Manager | |
return | |
+^!Delete:: | |
DllCall("LockWorkStation") | |
Sleep, 500 | |
SendMessage,0x112,0xF170,2,,Program Manager | |
return |