I hereby claim:
- I am dangeranger on github.
- I am dangeranger (https://keybase.io/dangeranger) on keybase.
- I have a public key whose fingerprint is F7F0 EC17 803F 29AE C576 C97B DED8 CBDB A8A9 B4A9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
$ docker-machine ssh dev | |
Boot2Docker version 1.9.0, build master : 16e4a2a - Tue Nov 3 19:49:22 UTC 2015 | |
Docker version 1.9.0, build 76d6bc9 | |
$ sudo -i | |
$ rm -rf /var/lib/docker/network | |
# exit from the Docker host and then run |
From http://orgmode.org/orgcard.txt on 2016-09-13 | |
================================================================================ | |
Org-Mode Reference Card (for version 7.8.11) | |
================================================================================ | |
================================================================================ | |
Getting Started |
This list is based on aliases_spec.rb.
You can see also Module: RSpec::Matchers API.
matcher | aliased to | description |
---|---|---|
a_truthy_value | be_truthy | a truthy value |
a_falsey_value | be_falsey | a falsey value |
be_falsy | be_falsey | be falsy |
a_falsy_value | be_falsey | a falsy value |
Turn PostgreSQL off first:
$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
$ brew services stop postgresql
Notes from DevDocs team meeting March 30, 2018
Present:
Thibaut (GitHub: @thibaut) Alex Chafee (@alexch) Joshua Burke (?) Quincy Larson (@quincylarson)
During our 70-minute call, we talked about:
function $(id) { return document.getElementById(id); } | |
function byClass (el, cl) { return el ? el.getElementsByClassName(cl) : [] } | |
function byTag (el, tg) { return el ? el.getElementsByTagName(tg) : [] } | |
function allof (cl) { return byClass(document, cl) } | |
function hasClass (el, cl) { var a = el.className.split(' '); return afind(cl, a) } | |
function addClass (el, cl) { if (el) { var a = el.className.split(' '); if (!afind(cl, a)) { a.unshift(cl); el.className = a.join(' ')}} } | |
function remClass (el, cl) { if (el) { var a = el.className.split(' '); arem(a, cl); el.className = a.join(' ') } } | |
function html (el) { return el ? el.innerHTML : null; } | |
function attr (el, name) { return el.getAttribute(name) } | |
function tonum (x) { var n = parseFloat(x); return isNaN(n) ? null : n } |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
.column { | |
float: left; | |
} | |
.row { | |
clear: both; |
{ | |
"_queryType": "Query", | |
"_mutationType": null, | |
"_subscriptionType": null, | |
"_directives": [ | |
{ | |
"name": "include", | |
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.", | |
"locations": [ | |
"FIELD", |