Skip to content

Instantly share code, notes, and snippets.

View nullbio's full-sized avatar
🏠
Working from home

Patrick O'Brien nullbio

🏠
Working from home
View GitHub Profile
@nullbio
nullbio / keybase.md
Created February 21, 2020 05:24
keybase.md

Keybase proof

I hereby claim:

  • I am nullbio on github.
  • I am nullbio (https://keybase.io/nullbio) on keybase.
  • I have a public key ASAT4iIOJmyirjDk9wR5XFjtvRlgnFuyTdDAS3CSAMZm1Qo

To claim this, I am signing this object:

const common = require('./webpack.common.js');
const path = require('path');
const merge = require('webpack-merge');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = merge(common, {
devtool: 'inline-source-map',
devServer: {
contentBase: './dist'
set $mod Mod1
##############################################################################
# tiling & workspace #
##############################################################################
floating_modifier $mod
# change focus
bindsym $mod+h focus left
@nullbio
nullbio / go upgrade
Last active September 13, 2016 04:41
function install-go --argument v
if test -z $v
echo "Must supply a version"
return 1
end
if not wget https://storage.googleapis.com/golang/go{$v}.linux-amd64.tar.gz
echo "Failed to download"
return 1
end
func main() {
fmt.Println("Hello Gophercon")
}
func Bar() string {
return "bar"