I hereby claim:
- I am JesseHerrick on github.
- I am jesseg17 (https://keybase.io/jesseg17) on keybase.
- I have a public key whose fingerprint is 4C6A B069 91E2 1130 40F9 E813 CE5E BC41 A8B6 2FDE
To claim this, I am signing this object:
| # Kettering Staff "API" | |
| # | |
| # kettering-staff.rb <LAST NAME> | |
| # | |
| # The MIT License (MIT) | |
| # | |
| # Copyright (c) 2015 Jesse Herrick | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal |
I hereby claim:
To claim this, I am signing this object:
| [ | |
| // fusion | |
| "Ashlynn Broedling", | |
| "Ben Phipps", | |
| "Ben Reineke", | |
| "Danni McClendon", | |
| "Eric Turner", | |
| "Imani Terrell", | |
| "Jean Joo", | |
| "Jesse Herrick", |
| mkdir passwds | |
| cd passwds | |
| netsh wlan export profile key=clear | |
| ren *.xml *.txt |
| require 'faraday' | |
| require 'json' | |
| class BestBuy | |
| API_KEY = 'APIKEYHERE' # get one at developer.bestbuy.com | |
| # initializes faraday and adds API key to options hash | |
| def initialize | |
| @options = { apiKey: API_KEY } | |
| location ~ ^/(.+?)(/.*)?$ { | |
| alias /home/$1/www$2; | |
| index index.html; | |
| autoindex on; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| pv -tpreb ~/path/to/foo.img | sudo dd of=/dev/rdisk2 bs=1m |
| // responsiveness | |
| @mixin breakpoint($point) { | |
| @if $point == morbidly-obese-bear { | |
| @media (min-width: 1601px) { @content; } | |
| } | |
| @if $point == papa-bear { | |
| @media (max-width: 1600px) { @content; } | |
| } | |
| @else if $point == mama-bear { | |
| @media (max-width: 1250px) { @content; } |
| /** | |
| * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) | |
| * http://cssreset.com | |
| */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, | |
| b, u, i, center, |