I hereby claim:
- I am trashhalo on github.
- I am trashhalo (https://keybase.io/trashhalo) on keybase.
- I have a public key ASAiltIMXIBB6Ig-KmeWTQ2FY0VDN2bmGU3AqkBuzpih4Ao
To claim this, I am signing this object:
package main | |
func exec(query string, args string) (string, error) { | |
return "", nil | |
} | |
func requireNil(err error) { | |
} | |
// in vim to trigger the issue: set synmaxcol=80 |
I hereby claim:
To claim this, I am signing this object:
(function() { | |
var jb = ["Out_of_memory", 0], | |
$a = ["Sys_error", -1], | |
Q = ["Failure", -2], | |
$ = ["Invalid_argument", -3], | |
Ea = ["End_of_file", -4], | |
Y = ["Division_by_zero", -5], | |
V = ["Not_found", -6], | |
Fa = ["Match_failure", -7], | |
Pa = ["Stack_overflow", -8], |
This is ApacheBench, Version 2.3 <$Revision: 1706008 $> | |
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
Licensed to The Apache Software Foundation, http://www.apache.org/ | |
Benchmarking localhost (be patient) | |
Completed 1000 requests | |
Completed 2000 requests | |
Completed 3000 requests | |
Completed 4000 requests | |
Completed 5000 requests |
import IPFS from 'ipfs'; | |
import Promise from 'bluebird'; | |
let ipfs; | |
const settings = { | |
repo: String(Math.random() + Date.now()), | |
IpfsDataDir: '/ipfs', | |
Addresses: { | |
API: '/ip4/127.0.0.1/tcp/0', |
'use strict'; | |
require('perish'); | |
var Redis = require('ioredis'); | |
var redis = new Redis(); | |
const http = require('http'); | |
const httpProxy = require('http-proxy'); | |
const streamToPromise = require('stream-to-promise'); | |
const proxy = httpProxy.createProxyServer({ | |
changeOrigin: true |
# Static App Development | |
## Get the repos | |
* clone https://github.com/PotomacInnovation/compass-ae | |
* clone https://github.com/PotomacInnovation/compass-frontend | |
## Start the server | |
in compass-ae | |
* yarn | |
* yarn start-debug |
$(".panel.visible .story").has(".selector.selected").find(".meta span").toArray().reduce(function(e,r){return e+parseInt(r.innerHTML)},0) |
.state('G', { | |
redirectTo: function (trans) { | |
var svc = trans.injector().get('SomeAsyncService'); | |
var promise = svc.getAsyncRedirectTo(trans.params.foo); | |
return promise; | |
} | |
}) |
$.xhrPool = []; | |
$.xhrPool.abortAll = function() { | |
$.xhrPool.forEach(function(jqXHR) { | |
jqXHR.abort(); | |
}); | |
}; | |
$.rails.ajax = function(options){ | |
var req = $.ajax(options); |