Skip to content

Instantly share code, notes, and snippets.

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

Colin Sullender shiruken

🏠
Working from home
View GitHub Profile
@shiruken
shiruken / gitlfs-raspberry.md
Last active November 6, 2018 04:38
Install git-lfs on Raspberry Pi 3 Model B+
  1. Remove previous golang packages (and remove /usr/local/go)
  2. Install golang v1.8 - https://storage.googleapis.com/golang/go1.8.linux-armv6l.tar.gz
  3. tar -C /usr/local -xzf go1.8.linux-armv6l.tar.gz
  4. echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
  5. mkdir /root/gocode
  6. export GOPATH=/root/gocode
  7. go get github.com/github/git-lfs
  8. cp /root/gocode/bin/git-lfs /usr/bin
@shiruken
shiruken / MfS_Logo.svg
Last active March 27, 2017 15:06
Vectorized logos for the March for Science https://www.marchforscience.com/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

I hereby claim:

  • I am shiruken on github.
  • I am shiruken (https://keybase.io/shiruken) on keybase.
  • I have a public key whose fingerprint is E993 D296 0F0B 4C92 F45C 0CD5 8398 B5F9 E005 22E4

To claim this, I am signing this object:

@shiruken
shiruken / gist:f189c57a308adec9ec37
Created December 24, 2014 05:41
comment_ids-24-Dec-2014 02-10-17.txt
This file has been truncated, but you can view the full file.
cn2dj68
cn2djh1
cn2djy0
cn2dk3n
cn2dk3v
cn2dkb3
cn2dkbu
cn2dkfz
cn2dkhy
cn2dkjf
Verifying that +shiruken is my openname (Bitcoin username). https://onename.io/shiruken
@shiruken
shiruken / gist:2bbe389a2e805fb60069
Created November 25, 2014 16:09
Automatically scale background image to fill page while maintaining dimensions
body {
background: url("background.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}