Skip to content

Instantly share code, notes, and snippets.

#!/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"
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());
@CarlSteven
CarlSteven / config
Last active November 2, 2015 01:35
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
<!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>
android {
lintOptions {
checkReleaseBuilds false
}
}
@CarlSteven
CarlSteven / ahk_default.ahk
Last active July 31, 2016 19:00
AHKScript
+^Delete::
Sleep, 250
SendMessage,0x112,0xF170,2,,Program Manager
return
+^!Delete::
DllCall("LockWorkStation")
Sleep, 500
SendMessage,0x112,0xF170,2,,Program Manager
return