Skip to content

Instantly share code, notes, and snippets.

View bostrom's full-sized avatar

Fredrik Boström bostrom

View GitHub Profile
#!/usr/bin/env bash
#
# Lists changes between the two branches in origin, omitting merge commits.
#
# Put this file on your path.
# Run `git changelog staging production` in your working directory.
if [[ $# -ne 2 ]] ; then
echo 'Usage: git changelog branch1 branch2'
exit 1
#!/usr/bin/env bash
#
# Lists branches that have lost their remote or
# that have origin/master origin/staging or origin/production as remote,
# while omitting master/staging/production.
#
# Put this file on your path.
# Run `git oldbr` in your working directory.
#
# Inspect the output. If you want to delete all listed branches in one go, use
@bostrom
bostrom / RPi-install-wifi.sh
Created May 3, 2019 22:04 — forked from kmonsoor/RPi-install-wifi.sh
install wifi adapter drivers on Raspberry Pi; origin: http://www.fars-robotics.net/install-wifi
#!/bin/bash
#set -e
# origin-source: http://www.fars-robotics.net/install-wifi
# install-wifi - v9.4 - by MrEngman.
# After downloading this script:
# $ sudo mv ./install-wifi /usr/bin/install-wifi
# $ sudo chmod +x /usr/bin/install-wifi
# $ sudo install-wifi -h
#

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@bostrom
bostrom / .editorconfig
Last active September 15, 2016 18:56
My js dev preferences
# editorconfig.org
# top-most EditorConfig file
root = true
[app/**/*.js, test/**/*.js, {Gruntfile.js}]
# Unix-style newlines with a newline ending every file
end_of_line = lf
insert_final_newline = true