I hereby claim:
- I am dreki on github.
- I am seangilbertson (https://keybase.io/seangilbertson) on keybase.
- I have a public key whose fingerprint is 7C9F 2610 F048 7E96 BF90 0FF3 4683 3068 E26C 3245
To claim this, I am signing this object:
module DstHelper | |
# Have a Time inherit DST status from a Date. | |
def inherit_dst date, time | |
time = time.change(:year => date.year, :month => date.mon, :day => date.day) | |
end | |
def self.included includer | |
# Mix in class methods. | |
includer.extend ClassMethods | |
end |
# Flash your local Rails database with data from your Heroku environment. | |
# Much faster than heroku db:pull. | |
# | |
# Notes: | |
# - Requires that you use postgres locally | |
# - Requires that pg_restore is available | |
# - Requires initialized Heroku setup for the given project | |
# - Requires that the pgbackups addon be installed for the given Heroku app | |
require "open-uri" |
-- SET METADATA | |
property Title : "Title: URL List from Safari Tabs" | |
property Notebook : "Notebook: Reading List" | |
property Tags : "Tags: linklist, temp" | |
-- DATE STAMP | |
set dateStamp to do shell script "date '+%Y-%m-%d, %I:%M %p'" | |
-- PREPARE THE LIST | |
set urlList to {} |
`rinari-minor-mode' Minor Mode Bindings: | |
key binding | |
--- ------- | |
C-c Prefix Command | |
C-c ' Prefix Command | |
C-c ; Prefix Command | |
C-c ' ' rinari-find-by-context |
// Feature definitions: | |
var features = { | |
'incoming email': [ | |
when('email with link arrives', function() { | |
doThese([ | |
action('extract article from link'), | |
action('send article as HTML attachment to Kindle') | |
]); |
.tab-bar { | |
overflow-x: auto; | |
} | |
.tab-bar .tab { | |
min-width: 125px; // also prevents from becoming squished | |
padding-right: 15px; | |
} |
The man was in a cabin on a cruise ship and sleepwalked over the side and into the ocean. |
I hereby claim:
To claim this, I am signing this object:
/* global document */ | |
// Welcome! require() some modules from npm (like you were using browserify) | |
// and then hit Run Code to run your code on the right side. | |
// Modules get downloaded from browserify-cdn and bundled in your browser. | |
const diff = require('diffhtml'); | |
const container = document.querySelector('.js-container'); | |
document.querySelector('.js-add').addEventListener('click', () => { | |
/* |