Skip to content

Instantly share code, notes, and snippets.

View keegoid's full-sized avatar

Keegan Mullaney keegoid

View GitHub Profile
@keegoid
keegoid / workflow
Created August 19, 2014 13:18
A description of my current workflow for Markdown and git.
## workflow
#### Markdown
After much tribulation with [Markdown][md] editors and various workflows, I've found what I think is a great way to create/maintain my [Markdown][md] docs.
For blog posts or any long-form writing, [Draft][draftin] is wonderful, especially the `F11` mode. It mostly works with [GitHub Flavored Markdown][gfm] except for strikethrough and alignment of table columns.
I then *Export* my document to the appropriate [git][git] repository in [Dropbox][db] (which then syncs with my various devices).
Finally, I commit the new document with [git][git] and push it to the remote repository (which then gets automatically built and deployed on [BitBalloon][bb]).
@keegoid
keegoid / keegan-mullaney-pgp.txt
Last active December 21, 2019 21:21
My PGP public key. Use this to send me encrypted messages. Fingerprint: 17692138D44F2A81980F30D60D8F7627F4E5B8C0
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBFN/NQ4BEACm0jnavw7NKz37mQbEOOdVhWkFao6nTK1i7o0dSWrlnBIy6Khk
PB1UGDnHX0QnasaeJi8iTxHfaNgAfDHfqozsgOvcBRR2C8dVylebxI/4bmV1dLI6
aZd+6AZlwkOzakt89pr+ARXMtrlAiFkbNUTJM1UmMgBWMBbrwSOXsz/0m6JEJ1xv
RlJNZNs1agsqK9hvuhSNuhfX8cLvAmdEJxeMrvRnKkucLVpq5KBdLAYfPHR3Wu5J
lTHLSe1l06CctJ02QMtOrpsVRBjWjXiM7rGew/qWALqq7D5yHt2J240yhPsaso3C
4I6EjUw51ANjHaN8rMTkMEbZ7xSWBK9P6xQ06qv0szOD+BI9PEZGbY+bHL7+FSjQ
54OW8H3v97Z+veW53coXPbvrDkY4QOu8HkxO8VU+KioxOk+FiFv5DA6KYnhMkwSf
5kwAGdxtTAoxVvh5+T6OJRZU6w7eq2/Lb07DJvDr5W8pRM9C3U/K9tZDa9QVlb+h
@keegoid
keegoid / WeAreHere
Last active August 29, 2015 14:12
message in a bottle
In a universe with two futures...
if we alter the entropy of our solar system in a nonrandom way,
this will be instantly noticeable in the other future's deep past...right?
The speed of light no longer matters for real-time communication between
the two futures (Assuming we had a way to see the other future in our own
past and vice versa.)
A random thought by Keegan Mullaney.
@keegoid
keegoid / gene_mods.md
Last active September 26, 2015 07:08
10 very desirable genetic variants

10 very desirable genetic variants

-- Business Insider, March 2015
http://uk.businessinsider.com/genes-that-make-you-stronger-and-healthier-2015-3?r=US&IR=T

1. A variant that codes for extra-strong bones (LRP5 G171V/+).
1. A variant that codes for lean muscles (MSTN).
1. A variant that makes people less sensitive to pain ? something that could be dangerous, as pain can be a useful warning signal, but may be helpful in some contexts (SCN9A).
  1. A variant that's associated with low odor production (ABCC11).
@keegoid
keegoid / WindowsBootEFI.sh
Last active May 24, 2024 15:30
How to repair Windows Boot Manager from Linux
# use Windows repair disc to run Startup Repair
# update grub config file for EFI system
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg # Fedora
sudo update-grub # Ubuntu
# if grub doesn't find Windows Boot Manager
# find EFI partition (could be on sdb, sdc, etc if you have more than one hard drive)
gdisk -l /dev/sda
@keegoid
keegoid / keybase.md
Last active December 21, 2019 22:05
Keybase proof

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@keegoid
keegoid / vim.conf
Last active February 13, 2018 09:31
vim-gtk settings
" vim settings
let mapleader = ',' " use comma as leader key instead of backslash
filetype plugin indent on " Automatically detect file types.
syntax on " Syntax highlighting
set mouse=a " Automatically enable mouse usage
set mousehide " Hide the mouse cursor while typing
set backspace=indent,eol,start " Backspace for dummies
set linespace=0 " No extra spaces between rows
set number " Line numbers on
set showmatch " Show matching brackets/parenthesis
@keegoid
keegoid / gitignore_global
Last active March 5, 2016 08:38 — forked from octocat/.gitignore
Some common .gitignore configurations
# global list of file types to ignore
# from https://gist.githubusercontent.com/octocat/9257657
# -------------------------- COMPILED SOURCES
*.com
*.class
*.dll
*.exe
*.o
@keegoid
keegoid / mutt.conf
Last active October 1, 2017 23:44
A Mutt config file with PGP, Gmail settings and storing aliases and sigs in Dropbox
# A basic .muttrc for use with Gmail and GPG
set imap_user="###@gmail.com"
set imap_pass="###"
set smtp_url="smtp://###@gmail.com@smtp.gmail.com:587/"
set smtp_pass="###"
set from="###@gmail.com"
set realname="###"
set editor="vi"
set folder="imaps://imap.gmail.com:993"
set spoolfile="+INBOX"
@keegoid
keegoid / SublimeLinter.sublime-settings
Last active December 23, 2019 04:23
SublimeLinter user settings for Sublime Text 3
// SublimeLinter Settings - User
{
"linters": {
"jshint": {
"args": ["--config", "~/.config/sublime-text-3/Packages/User/.jshintrc"]
},
}
}