Skip to content

Instantly share code, notes, and snippets.

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

Kevin Elliott kevinelliott

🏠
Working from home
View GitHub Profile
@kevinelliott
kevinelliott / install-deps.sh
Last active August 21, 2021 22:53
Tezos Setup (Debian, arm64)
#!/bin/bash
apt update
apt install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release \
httpie \
@kevinelliott
kevinelliott / OSX Development System Maintenance Tasks
Created December 16, 2012 19:08
OSX 10.8 Mountain Lion Development System Maintenance Tasks
#OSX 10.8 Mountain Lion Development System Maintenance Tasks
Tasks necessary to maintain a healthy OSX development system environment. Some tasks should be performed daily, weekly, and monthly.
##Daily
* Empty Trash
* Time Machine is automatically keeping daily backups locally, and a weekly Time Machine backup (automatic when you plug in the Time Machine external drive) will capture these. More frequent Time Machine synchronizations to the external drive could/should occur.
##Weekly
@kevinelliott
kevinelliott / osx-10.9-setup.md
Last active November 6, 2020 14:19 — forked from juev/gist:3124344
Clean Install – Mac OS X 10.9 Mavericks

Mac OS X 10.9 Mavericks

Custom recipe to get OS X 10.9 Mavericks running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install.

Install Software

The software selected is software that is "tried and true" --- software I need after any fresh install. I often install other software not listed here, but is handled in a case-by-case basis.

Install from App Store

Steganography Tools

@kevinelliott
kevinelliott / HOWTO-Install-Blockstream-Satellite-on-Raspberry-Pi-3B.md
Last active May 9, 2019 08:43
Installing Blockstream Satellite on Raspberry Pi 3B

Installing Blockstream Satellite on Raspberry Pi 3B

Raspberry Pi 3B is architecture armhf (arm7l + floating point) but you can install the Ubuntu MATE experimental amd64 image.

Install Ubuntu MATE

  1. Download image
  2. Decompress image
  3. Write image to SD card
  4. Insert SD card into Raspberry Pi 3B
@kevinelliott
kevinelliott / Sat Message Types
Last active April 23, 2019 03:31
Downloaded each sat message and ran it through file on the CLI.
messages/122: PNG image data, 128 x 32, 8-bit/color RGBA, non-interlaced
messages/123: ASCII text, with CRLF line terminators
messages/124: PGP message
messages/125: PNG image data, 75 x 75, 8-bit/color RGB, non-interlaced
messages/126: ASCII text
messages/127: ASCII text, with no line terminators
messages/128: ASCII text, with very long lines, with no line terminators
messages/129: ASCII text, with no line terminators
messages/130: ASCII text, with very long lines, with no line terminators
messages/131: ASCII text, with very long lines, with CRLF line terminators
@kevinelliott
kevinelliott / 177
Last active April 23, 2019 03:28
ST Transmissions
Welcome, Hunter.
This message should reach you at the middle of the fourth month of your calendar year, in the year 2019. If you are reading this, something has led you to search for things which bring excitement to an otherwise predictable world.
What you are reading is the first clue in a grand Hunt. It is not the first Hunt, nor of course will it be the last one, but this hunt is MINE, and so it is to me that you must prove yourself.
The treasure which will belong to the most successful Hunters and their clan is neither gold, nor jewels, nor the pieces of worthless paper that pass for money in this sad age; instead it is Bitcoin, a digital treasure forged from deep mathematical truths, in an amount equal to 1 million USD.
I have shattered this Bitcoin treasure into one thousand pieces, using the splitting magic of the wizard Shamir. To reassemble it, you or your clan must find exactly four hundred of the pieces, and meld them back together using Shamir's spell of recombination. Once you have done so,
@kevinelliott
kevinelliott / heroku_env_copy.sh
Created December 8, 2017 17:58 — forked from jamesr2323/heroku_env_copy.sh
Script to copy environment variables from an existing heroku app to another one
#!/bin/bash
# Source: http://blog.nonuby.com/blog/2012/07/05/copying-env-vars-from-one-heroku-app-to-another/
set -e
sourceApp="$1"
targetApp="$2"
config=""
@kevinelliott
kevinelliott / gist:9282848
Last active January 20, 2017 00:55
Sublime Text 3 Setup

Themes

  • Soda
  • RailsCasts Colour Scheme

Fonts

  • Source Code Pro, size 12

Plugins

if [ -f "$rvm_path/scripts/rvm" ]; then
source "$rvm_path/scripts/rvm"
if [ -f ".rvmrc" ]; then
source ".rvmrc"
fi
if [ -f ".ruby-version" ]; then
rvm use `cat .ruby-version`
fi