Skip to content

Instantly share code, notes, and snippets.

View i8degrees's full-sized avatar

Jeffrey Carpenter i8degrees

View GitHub Profile
@i8degrees
i8degrees / Makefile.ndev
Last active May 27, 2017 08:42
Naughty Girl: Search Suggestion/Autocomplete (Rxjs,Ramda, Fetch)
#!/usr/bin/env bash
#
# [Naughty Girl: Search Suggestion/Autocomplete (Rxjs,Ramda, Fetch)](http://codepen.io/fielding/pen/Vbdppm)
all: bn-mp4
# all: bn-mp4 bn-webm
clean:
rm -rfv tmp/*
//- partials/_safari-web-app.pug:jeff
//-
//- https://gist.github.com/kylebarrow/1042026
//- http://stackoverflow.com/questions/2898740/iphone-safari-web-app-opens-links-in-new-window
script().
'use strict';
var script = document.createElement('script');
script.innerHTML = `(function(standalone) {
@i8degrees
i8degrees / at-command-set.md
Created March 30, 2017 11:25
AT SMS Command Set
<html><head>
<script type="text/javascript" src="AppleScrollArea.js" charset="utf-8"></script>
<script type="text/javascript" src="AppleScrollbar.js" charset="utf-8"></script>
<style type="text/css">
body {
background: transparent;
color: white;
font: 12px "Lucida Grande";
overflow: hidden;
}
@i8degrees
i8degrees / package.json
Created December 22, 2016 09:45
sha 7bb701e7c3d908d96b83efa443a986e109bfe3fc of imbue/imbue.studio repo
{
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.0.15",
"babel-preset-babili": "0.0.8",
"babel-preset-es2015": "^6.0.15",
"browser-sync": "^2.9.0",
"chokidar-cli": "^1.2.0",
"cli-real-favicon": "0.0.6",
@i8degrees
i8degrees / fielding-vice.itermcolors
Last active October 23, 2016 10:36
fielding's vice color scheme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.092231146991252899</real>
@i8degrees
i8degrees / convert-color-profile.sh
Last active September 26, 2016 16:55
a few of my video editing scripts
#!/usr/bin/env bash
COLOR_PROFILE="${HOME}/.colors/displays/ProPhoto.icm"
INPUT_DIR=$(pwd)
OUTPUT_DIR="o"
cd "${INPUT_DIR}" || exit 1
mkdir -pv "${OUTPUT_DIR}"
@i8degrees
i8degrees / gulpfile.js
Created September 25, 2016 19:07
gulp and node.js dev
var exec = require('child_process').exec;
gulp.task('start', function (callback) {
exec('node server/app.js', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
callback(err);
});
});
@i8degrees
i8degrees / gen_dev-ssl-certs.sh
Created September 16, 2016 05:26
SSL Certificates for Web Server with a Self-Signed CA root and One Site Domain Certificate
#!/usr/bin/env bash
#
# IMPORTANT(jeff): This file should always be ran from the project's root
# source tree, i.e.:
#
# bin/gen_dev-ssl-certs.sh
#
# ...environment init...
@i8degrees
i8degrees / index.html
Created July 9, 2016 11:43 — forked from anonymous/index.html
JS Bin Touchpad pinch demo // source http://jsbin.com/lotolelele
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Touchpad pinch demo" />
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
http://experimental.mural.ly/vnext-mural/sticky/200/webglbody {
-ms-scroll-rails: none;
}