I hereby claim:
- I am justinphelps on github.
- I am justinphelps (https://keybase.io/justinphelps) on keybase.
- I have a public key ASDv7nxIIIKzbUSnhAVWKttE_gqyv2Ike82dvGA7mPUR8wo
To claim this, I am signing this object:
| { | |
| "basics": { | |
| "name": "Justin Phelps", | |
| "label": "CTO - Engineer", | |
| "picture": "", | |
| "email": "[email protected]", | |
| "phone": "+46707509890", | |
| "website": "", | |
| "summary": "Seasoned Technology Leader offering hands-on tech leadership and systems engineering with a strong entrepreneurial background. I have over 20 years of technical operations management, software development, security, network and systems administration and engineering experience. From small ISPs, ASPs/SaaS, cloud and mobile apps to offshore datacenters, mission critical infrastructure and high availability internet applications.", | |
| "location": { |
| Notes on the Abbott LibreView CSV export format for the Libre FreeStyle 2. | |
| * Device: Device name (e.g., FreeStyle Libre 12) | |
| * Serial Number: Device Serial | |
| * Device Timestamp: When the recording was logged | |
| * Record Type: | |
| * 0 = Computed/passive collected every 15 minutes, only stores the last 8 hours ("Historic Glucose" column) | |
| * 1 = Manual scanned ("Scan Glucose" column) | |
| * 2 ? | |
| * 3 ? |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am justinphelps on github. | |
| * I am justinphelps (https://keybase.io/justinphelps) on keybase. | |
| * I have a public key whose fingerprint is 5B09 F74B 89AC 6D2C 89FF 2174 37B7 F250 DA99 B88D | |
| To claim this, I am signing this object: |
| use Rack::MethodOverride | |
| It will help you interpret post methods with parameter "_method" with value "delete" as put. Then you can write | |
| <form action="/search" method="post"> | |
| <div style="margin:0;padding:0"> | |
| <input name="_method" type="hidden" value="delete" /> | |
| </div> | |
| </form> |
| # Study has_many, belongs_to methods (10 or so) | |
| ActiveRecord::Migration.create_table :followings do |t| | |
| t.belongs :follower | |
| t.belong :stalked | |
| end | |
| ActiveRecord::Migrator.up "db/migrate" | |
| class User < ActiveRecord::Base |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| SIZE = 10 | |
| class BoggleBoard | |
| attr_reader :board | |
| def initialize | |
| @board = Array.new(SIZE){ Array.new(SIZE){ (('a'..'z').to_a[rand(26)]) }} | |
| end | |
| def get_row(row) | |
| @board[row] |