I hereby claim:
- I am jeffbr13 on github.
- I am jeffbr13 (https://keybase.io/jeffbr13) on keybase.
- I have a public key whose fingerprint is 0669 41B3 7683 41FB 4120 7CEB 32DB C4B7 AEA7 3FB6
To claim this, I am signing this object:
# Installs Spotify client on Ubuntu. | |
# If installing the package fails, add the spotify repo to the sources list. | |
apt-get install spotify-client | |
if [[ $? -eq 0 ]] | |
then | |
exit 0 | |
fi | |
-------------------------------------------------------------------------------- | |
{-# LANGUAGE OverloadedStrings, TupleSections #-} | |
import Control.Monad | |
import Data.List | |
import qualified Data.Map as M | |
import Data.Maybe | |
import Data.Ord | |
import Data.Monoid (mappend) | |
import Hakyll | |
import qualified Text.Pandoc.Options as Pandoc.Options |
## /etc/nginx/sites_enabled/website.tld | |
# | |
# Nginx virtual host configuration for <https://website.tld>, | |
# redirecting all traffic from <http[s]://[www.]website.tld>. | |
server { | |
server_name website.tld; | |
root /var/www/website.tld; | |
# HTTPS (IPv4) |
// https://benjeffrey.com/greasemonkey-script-for-wikipedia-subheading-links | |
// Available under the MPL 2.0 | |
// ==UserScript== | |
// @key value | |
// @name Wikipedia Subheading Links | |
// @namespace com.benjeffrey.wikipedia-subheading-links | |
// @description Add links to subheadings on Wikipedia pages. | |
// @include http://*.wikipedia.org/* | |
// @include https://*.wikipedia.org/* | |
// ==/UserScript== |
--- | |
- hosts: all | |
sudo: yes | |
vars: | |
- db_name: ckan_default | |
- db_user: ckan_default | |
- db_password: ckan_default | |
- ckan_package_filename: 'python-ckan_2.2_amd64.deb' |
#!/usr/bin/env bash | |
set -eu | |
echo $1 | |
echo $2 | |
gpg --encrypt --sign --armor --output=- --recipient "$2" "$1" | pbcopy |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Vue walkthrough</title> | |
<script src="https://unpkg.com/vue"></script> | |
<style> | |
body { |