Skip to content

Instantly share code, notes, and snippets.

@justinphelps
justinphelps / resume.json
Last active February 22, 2024 15:47
resume.json
{
"basics": {
"name": "Justin Phelps",
"label": "CTO - Engineer",
"picture": "",
"email": "justin.phelps@gmail.com",
"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 ?

Keybase proof

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:

### 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>
@justinphelps
justinphelps / ar_courtney.rb
Created May 7, 2014 18:57
Active Record following
# 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
@justinphelps
justinphelps / 0_reuse_code.js
Created May 7, 2014 01:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@justinphelps
justinphelps / 0.2.1-boggle_class_from_methods.rb
Last active August 29, 2015 13:55 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
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]