Skip to content

Instantly share code, notes, and snippets.

View flanger001's full-sized avatar
🧱

David Shaffer flanger001

🧱
View GitHub Profile
@flanger001
flanger001 / adding_a_key.md
Last active October 15, 2018 16:28
PGP stuff

Adding a new PGP key

Scenario:

I have a key that is currently on two computers. I want to do these things:

  • Create a new key with better security
  • Sign my old key with my new key
  • Revoke my old key
  • Export both keys
@flanger001
flanger001 / btw.md
Last active October 15, 2018 02:03
Babel + Typescript + Webpack resources
class String
def spongebob
each_char.map { |c| rand > 0.5 ? c.swapcase : c }.join
end
end
$animation: MoveBG 100s ease infinite;
body {
background: linear-gradient(240deg,#a24bcf,#4b79cf,#4bc5cf);
background-size: 400% 400%;
-webkit-animation: $animation;
-moz-animation: $animation;
-o-animation: $animation;
animation: $animation;
}
@flanger001
flanger001 / pre-commit
Last active October 18, 2017 22:46
Rubcop git hook
#! /usr/bin/env ruby
if system('bundle exec rubocop')
puts 'Rubocop is pleased.'
else
puts 'Rubocop demands penance.'
exit(1)
end
class A
def foo
'hello'
end
alias_method :bar, :foo
end
class B < A
def foo
'bye'
@flanger001
flanger001 / breakfast.py
Last active April 4, 2017 13:35
Eggs in a mug
# An object-oriented breakfast
class Mug(object):
def __init__(self, article):
self.article = article
print('You put a', self.article.get_name().lower(), 'in the mug')
def heat(self, heater, time):
heater.heat(self.article, time)
def get_article(self):

Keybase proof

I hereby claim:

  • I am flanger001 on github.
  • I am flanger001 (https://keybase.io/flanger001) on keybase.
  • I have a public key ASAk-Xk1h0680J2gvJ2DHU3IRBOCPrGN-ejC18u2JN19wgo

To claim this, I am signing this object:

@flanger001
flanger001 / readme.md
Last active October 12, 2016 13:31
Ionic 1.3 and Typescript

How to get Ionic 1.3 working with Typescript 2.0

This is a huge pain in the butt process. Work in progress.

Starting from a new Ionic app

  • ionic start myapp tabs
  • cd myapp
  • npm install --save-dev gulp-typescript browserify tsify typings typescript vinyl-buffer vinyl-source-stream (I'm not using all of these yet)
  • Edit gulpfile: