docker-machine start default
eval "$(docker-machine env default)"
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
| const async = require('async') | |
| const Github = require('github-api') | |
| const { GraphQLClient } = require('graphql-request') | |
| const { query, mutation } = require('../graphql') | |
| const config = require('../config') | |
| const { token, repo, owner } = config.github | |
| const issues = new Github({ token }).getIssues(`${owner}/${repo}`) | |
| const graphqlClient = new GraphQLClient('https://api.github.com/graphql', { | |
| headers: { Authorization: `bearer ${token}`, } |
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
| const crypto = require('crypto') | |
| /** | |
| * Sign request body using secret and HTTP request body | |
| * @param {string} key Secret key | |
| * @param {body} body HTTP request body | |
| * @returns {string} Generate hash code | |
| */ | |
| function signRequestBody (key, body) { | |
| return `sha1=${crypto.createHmac('sha1', key).update(body, 'utf-8').digest('hex')}` | |
| } |
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
| const { json, send, text } = require('micro') | |
| const micro = require('micro') | |
| const config = require('../config') | |
| const actions = require('../actions') | |
| const { signRequestBody } = require('../lib/crypto') | |
| /** | |
| * Main request handler | |
| * @param {Object} req HTTP request object | |
| * @param {Object} res HTTP response object | |
| * @returns {Object} Updated server response object |
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
| /** | |
| * 'labeled' event handler | |
| * @param {Object} payload Github event payload | |
| */ | |
| const { query } = require('../graphql') | |
| const { | |
| graphqlClient, | |
| addProjectCard, | |
| moveProjectCard, | |
| baseVariables |
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
| //Inspired by http://g-liu.com/blog/2013/08/tutorial-basic-carouselslideshow-with-javascript/ | |
| var SimpleCarousel = function(id, options){ | |
| this.id = id || 'slides'; // default id -> #slides | |
| this.class = options.class || 'slide'; // default child class -> .slide | |
| this.w = options.width; | |
| this.h = options.height; | |
| this.duration = options.duration || 4000; // default 4s | |
| this.container = document.getElementById(this.id); |
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
| # source: http://stackoverflow.com/questions/7244321/how-to-update-a-github-forked-repository | |
| # Add the remote, call it "upstream": | |
| git remote add upstream https://github.com/whoever/whatever.git | |
| # Fetch all the branches of that remote into remote-tracking branches, | |
| # such as upstream/master: | |
| git fetch upstream |
A Pen by pauldariye on CodePen.
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 python | |
| # saved to ~/bin/batcharge.py and from | |
| # http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/#my-right-prompt-battery-capacity | |
| #!/usr/bin/env python | |
| # coding=UTF-8 | |
| import math, subprocess | |
| p = subprocess.Popen(["ioreg", "-rc", "AppleSmartBattery"], stdout=subprocess.PIPE) | |
| output = p.communicate()[0] |