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
### Keybase proof | |
I hereby claim: | |
* I am zerojuan on github. | |
* I am juliusthepious (https://keybase.io/juliusthepious) on keybase. | |
* I have a public key ASAEY-1_ylOw9SBwpnfXXe5HzJh3vaWuOK1iZP3NKYbgxAo | |
To claim this, I am signing this 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
#!/bin/bash | |
echo $GCLOUD_SERVICE_KEY > ${HOME}/gcloud-service-key.json | |
gcloud auth activate-service-account --key-file=${HOME}/gcloud-service-key.json | |
gcloud --quiet config set project ${GOOGLE_PROJECT_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
{"lastUpload":"2017-07-23T00:27:50.726Z","extensionVersion":"v2.8.2"} |
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 | |
var colors = require('colors'), | |
httpServer = require('../lib/http-server'), | |
argv = require('optimist').argv; | |
if (argv.h || argv.help) { | |
console.log([ | |
"usage: http-server [path] [options]", | |
"", |
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
{ | |
"name": "pwdo-runman", | |
"subdomain": "runman", | |
"scripts": { | |
"start": "http-server" | |
}, | |
"version": "0.0.0-2", | |
"engines": { | |
"node": "0.6.x" | |
}, |
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
//from http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html | |
var mapStyle = [ | |
{ | |
featureType: "administrative", | |
stylers: [ | |
{ visibility: "off" } | |
] | |
},{ | |
elementType: "labels", | |
stylers: [ |
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
function sumEvens(value){ | |
var curr = 0; | |
var n1 = 0; | |
var n2 = 1; | |
var result = 0; | |
for(var i=2; curr<value; i++){ | |
curr = (n1 + n2); | |
n1 = n2; | |
n2 = curr; |