I hereby claim:
- I am bencevans on github.
- I am bencevans (https://keybase.io/bencevans) on keybase.
- I have a public key ASCcacXpuZoLtEql7RBh6Qan9X3NjqBIF-WPotYbn8lFZAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
html, body { | |
font-family: 'Inconsolata', monospace; | |
max-width: 800px; | |
} | |
table { |
build: | |
pandoc writing.md --standalone \ | |
--bibliography writing.bib --csl writing.csl \ | |
-c https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.css \ | |
-t html \ | |
| sed '/<body>/c\<body class="markdown-body">' \ | |
| weasyprint - output.pdf |
I hereby claim:
To claim this, I am signing this object:
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
} |
/** | |
* Search Bar | |
*/ | |
body { | |
margin: 0; | |
} | |
.topbar { | |
height: 42px; |
/** | |
* Search Bar | |
*/ | |
body { | |
margin: 0; | |
} | |
.topbar { | |
height: 42px; |
/** | |
* Transit Popups | |
*/ | |
html, body { | |
margin: 0; | |
height: 100%; | |
font-family: Verdana; | |
font-size: 16px; |
// https://github.com/bencevans?tab=repositories | |
var repos = document.getElementsByClassName('repo-list-name') | |
var arr = Array.prototype.slice.call( repos ) | |
var names = arr.map((r) => { return 'bencevans/' + r.innerText }) | |
names.join('&') |
#!/bin/bash | |
echo IVPN Installer... | |
echo Ensuring wget is installed | |
which wget | |
if [[ $? == 1 ]]; then | |
echo Installing wget | |
sudo apt-get install -y -qq wget | |
fi |