Skip to content

Instantly share code, notes, and snippets.

View kylebakerio's full-sized avatar
⛰️
mountains are really nice, guys.

Kyle Baker kylebakerio

⛰️
mountains are really nice, guys.
View GitHub Profile
@kylebakerio
kylebakerio / APLE markdown
Created August 4, 2016 22:13
APLE (Ad PLacement Engine) flow diagram
```sequence
client->IZ: [Quote, PlacementGroup]
IZ->Charm: [Quote, PlacementGroup]
Charm->CharmDB: [get Partners of type 'aggregator', rules for each]
CharmDB-->Charm:
Note left of Charm: make payload from those who pass rules
Charm->APE: [payloads to fan out]
Note left of Charm: in the meantime:
Note left of Charm: for each Placement in Placement Group,
Note left of Charm: for each Ad in Placement which passes rules
@kylebakerio
kylebakerio / APLE_flow_diagram
Created August 4, 2016 22:06
APLE (Ad PLacement Engine) flow diagram
<div class="sequence-diagram"><svg height="1107" version="1.1" width="1454.7578125" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="overflow: hidden; position: relative;"><desc style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">Created with Raphaël 2.1.2</desc><defs style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"><path stroke-linecap="round" d="M5,0 0,2.5 5,5z" id="raphael-marker-block" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></path><marker id="raphael-marker-endblock55-obj13591" markerHeight="5" markerWidth="5" orient="auto" refX="2.5" refY="2.5" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#raphael-marker-block" transform="rotate(180 2.5 2.5) scale(1,1)" stroke-width="1.0000" fill="#000" stroke="none" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></use></marker><marker id="raphael-marker-endblock55-obj13594" markerHeight="5" markerWidth="5" orient="auto" refX="2.5" re
function inAndOut(prices) {
let high = prices[0];
let low = prices[0];
let lowIndex = 0;
let bestGap = 0;
const bestIndexes = [];
const currentGap = () => high - low;
for (var i = 1; i < prices.length; i++) {
if (prices[i] < low) {
(iz)kajo@kajo-Precision-3510:~/Code/Zebra/iz2$ iz2stage
[staging-web1.zbra.io] Executing task 'deploy_staging'
[staging-web1.zbra.io] run: git config core.sharedRepository group
[staging-web1.zbra.io] run: sudo chmod ug+rwX -R /web/iz2
[staging-web1.zbra.io] run: sudo -u ubuntu git fetch origin develop:refs/remotes/origin/develop
[staging-web1.zbra.io] run: sudo -u ubuntu sh -c "git log HEAD..origin/develop --no-merges --pretty=format:'%H %s' >> new_changes.log"
[staging-web1.zbra.io] run: sudo -u ubuntu git checkout -- .
[staging-web1.zbra.io] run: sudo -u ubuntu git clean -fd
[staging-web1.zbra.io] run: sudo -u ubuntu git pull origin develop
[staging-web1.zbra.io] out: From github.com:insurancezebra/iz2
@kylebakerio
kylebakerio / pdfScreenCapture.html
Created February 3, 2016 20:32
an attempt to use html2canvas -> jspdf -> Downloadify libraries together to make downloadable snapshots in pdf form of the page.
<HTML>
<head>
<script type="text/javascript" src="./js/es6-promise.min.js"></script>
<script type="text/javascript" src="./js/jspdf/dist/jspdf.current.min.js"></script>
<link href="./css/dealer_center.css" rel="stylesheet">
<script src="./js/html2canvas/dist/html2canvas.min.js"></script>
<script src="./js/jspdf/libs/Downloadify/js/downloadify.min.js"></script>
<script src="./js/jspdf/libs/Downloadify/js/swfobject.js"></script>
<!-- // <script src="https://cdn.jsdelivr.net/bluebird/3.1.1/bluebird.min.js"></script> -->
</head>
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var morgan = require('morgan');
var app = express();
app.use(express.static(__dirname + '/client'));
app.use('/bower_components', express.static(__dirname + '/bower_components'));
app.use(morgan('dev'));
// given a keyPath as a string assign the value
// to the given keyPath
function deepAssignment(obj, keyPath, value) {
//obj[keyPath] = value; //if only...
var path2 = keyPath.split("");
var path3 = path2.map(function(char, index){
if (char === "[") return isNaN(Number(path2[index+1])) ? "." : "~`~.";
else if (char === "]" || char === "'" || char === '"') return ""; //try splicing
else return char;
@kylebakerio
kylebakerio / dotslashtaskdotjs.markdown
Last active May 19, 2016 11:54
introducing ./task.js, THE new javascript task runner automation framework

why ./task.js?

One word: task automation. It's basically zero effort and you can use the ./task.js package manager to handle any repetitive tasks. You can use ./task.js to automate everything with minimum effort.

./task.js provides the structure, order, and authority that you as a developer so desperately crave. ./task.js will also take responsibility for your actions if you need it to. It's what everybody is using now. ./task.js is the new hotness. It's all about ./task.js now, just like that.

This is compared to npm run/bash scripts, which are:

/* _
___ ___ | |_ _____ _ __ ___
/ __|/ _ \| \ \ / / _ \ '__/ __|
\__ \ (_) | |\ V / __/ | \__ \
|___/\___/|_| \_/ \___|_| |___/
*/
// hint: you'll need to do a full-search of all possible arrangements of pieces!
// (There are also optimizations that will allow you to skip a lot of the dead search space)
@kylebakerio
kylebakerio / nrooks.js
Last active August 29, 2015 14:26
nRooksDraft
window.countNRooksSolutions = function(n) {
var realSolution = [];
var iT = [];
var realBoardSize = n-1;
if(n === 1){
return 1;
}
for(var masterRookIndex = 0; masterRookIndex < n; masterRookIndex++) {