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 { |
The following color scheme is based on http://webcolourdata.com/profile/175127
#1C4180,#204990,#25A447,#ffffff,#5A69A5,#ffffff,#65C833,#EB4D5C
{ | |
"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, |
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'}, | |
]; |
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], |
I hereby claim:
To claim this, I am signing this object:
brew tap d12frosted/emacs-plus | |
brew install emacs-plus --without-spacemacs-icon |
import R from 'ramda'; | |
import RA from 'ramda-adjunct'; | |
const isNonEmptyString = R.both(RA.isString, RA.isNotEmpty); | |
const hasDriverDetail = R.compose( | |
R.any(isNonEmptyString), | |
R.props([ | |
'customDriverPhone', | |
'customDriverName', |
This is a local copy of the commands from:
This guide serves as a reference of collected information necessary for strict management of PGP keys. This includes keeping a master key that always remains
From 844e9efeac1371b9dfbd0ee73d62129d251577a1 Mon Sep 17 00:00:00 2001 | |
From: Jaesup Kwak <[email protected]> | |
Date: Mon, 4 Dec 2017 21:23:19 +0900 | |
Subject: [PATCH] Support xwidget webkit for macOS X | |
Add xwidget webkit support for macOS X / NS Cocoa and accompanying | |
changes. | |
Squash changes for comments from Alan Third in Bug#29565. |