Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am bencevans on github.
  • I am bencevans (https://keybase.io/bencevans) on keybase.
  • I have a public key whose fingerprint is F3AF CA92 92B7 A6F3 E2B2 2A21 9AE7 1F2C 871E DB67

To claim this, I am signing this object:

tasksel --task-packages ubuntu-desktop | sort > /tmp/base
dpkg --get-selections | awk '{print $1}' | sort >/tmp/selections
diff -u /tmp/base /tmp/selections | less
@bencevans
bencevans / install-ivpn.sh
Created April 18, 2016 22:20
Install OpenVPN + iVPN Config Files.
#!/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
@bencevans
bencevans / repos.js
Created August 4, 2016 10:24
List Projects .js
// 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('&')
@bencevans
bencevans / dabblet.css
Last active December 9, 2016 12:23
Transit Popups
/**
* Transit Popups
*/
html, body {
margin: 0;
height: 100%;
font-family: Verdana;
font-size: 16px;
@bencevans
bencevans / dabblet.css
Created January 17, 2017 11:23
Search Bar
/**
* Search Bar
*/
body {
margin: 0;
}
.topbar {
height: 42px;
@bencevans
bencevans / dabblet.css
Created January 17, 2017 19:09
Search Bar
/**
* Search Bar
*/
body {
margin: 0;
}
.topbar {
height: 42px;
@bencevans
bencevans / dabblet.css
Created February 25, 2017 12:12
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
@bencevans
bencevans / keybase.md
Created December 23, 2017 22:44
keybase.md

Keybase proof

I hereby claim:

  • I am bencevans on github.
  • I am bencevans (https://keybase.io/bencevans) on keybase.
  • I have a public key ASBdQHTwQoYlNESpTFvtlpIvn5A_OsGx-F2T-3l7TyeK0wo

To claim this, I am signing this object:

@bencevans
bencevans / dabblet.css
Last active October 21, 2019 21:41
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
html, body {
font-family: 'Inconsolata', monospace;
max-width: 800px;
}
table {