I hereby claim:
- I am orther on github.
- I am orther (https://keybase.io/orther) on keybase.
- I have a public key whose fingerprint is 05B6 F0D5 4B06 DAE9 0880 B7CA 347A 9171 39C4 5127
To claim this, I am signing this object:
brew tap d12frosted/emacs-plus | |
brew install emacs-plus --without-spacemacs-icon |
I hereby claim:
To claim this, I am signing this object:
const contains = (coll) => (item) => coll.includes(item); | |
const intersection = (a, b) => a.filter(contains(b)); | |
const uniq = (list) => [...new Set(list)]; | |
const intersectionAll = ([head, ...tail]) => uniq(tail.reduce(intersection, head)) | |
const all = [ | |
[5, 10, 15, 20, 6], | |
[15, 88, 1, 5, 7, 6], | |
[1, 10, 15, 5, 20, 6], | |
[8, 10, 15, 5, 20, 6], |
import R from 'ramda'; | |
const items = [ | |
{id: 1, name: 'Al', country: 'AA'}, | |
{id: 2, name: 'Connie', country: 'BB'}, | |
{id: 3, name: 'Doug', country: 'CC'}, | |
{id: 4, name: 'Zen', country: 'BB'}, | |
{id: 5, name: 'DatGGboi', country: 'AA'}, | |
{id: 6, name: 'Connie', country: 'AA'}, | |
]; |
{ | |
"Set Local Environment Vars" : true, | |
"Working Directory" : "\/Users\/brandon\/dev", | |
"Prompt Before Closing 2" : 0, | |
"Selected Text Color" : { | |
"Green Component" : 0, | |
"Blue Component" : 0, | |
"Red Component" : 0 | |
}, | |
"Rows" : 25, |
The following color scheme is based on http://webcolourdata.com/profile/175127
#1C4180,#204990,#25A447,#ffffff,#5A69A5,#ffffff,#65C833,#EB4D5C
import 'whatwg-fetch'; | |
function isRequest({ promise }) { | |
return promise && typeof promise === 'function'; | |
} | |
function checkStatus(response) { | |
if (response.status >= 200 && response.status < 300) { | |
return response; | |
} else { |
(require '[clojure.core.reducers :as r]) | |
(defn top-two | |
[[big1 big2 :as acc] x] | |
(cond | |
(> x big1) [x big1] | |
(> x big2) [big1 x] | |
:else acc)) | |
(defn top-two+ |
// ============================================================ | |
// $ npm install --save-dev gulp-util node-notifier gulp vinyl-source-stream vinyl-buffer gulp-uglify gulp-sourcemaps gulp-livereload browserify watchify babelify gulp-sass gulp-autoprefixer gulp-rename | |
// ============================================================ | |
function Workflow() | |
{ | |
// Override workflow settings here | |
this.input.directory = 'src'; | |
this.input.script = 'js/main.jsx'; | |
this.input.style = 'css/main.scss'; |
import pytest | |
from sow_web_codegen.reader.xlsx import XlsxReader | |
from sow_web_codegen.reader.xlsx import XlsxReaderInvalidFileFormatException | |
from tests import EXAMPLE_WORKSHEET_XLSX as example_worksheet | |
def gen_get_value_func(columns, row): | |
def get_column(column): |