Skip to content

Instantly share code, notes, and snippets.

View heliostatic's full-sized avatar

Ben Lee-Cohen heliostatic

View GitHub Profile
@heliostatic
heliostatic / main.rb
Created October 26, 2011 18:04 — forked from daz4126/main.rb
Short, Long and Pretty Urls - Using Sinatra & DataMapper to demonstrate different types of urls
require 'sinatra'
require 'data_mapper'
require 'slim'
require 'digest/sha1'
DataMapper.setup(:default, ENV['DATABASE_URL'] || File.join("sqlite3://",settings.root, "development.db"))
class Note
include DataMapper::Resource
property :id, Serial
@heliostatic
heliostatic / gist:3001755
Created June 27, 2012 05:47 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@heliostatic
heliostatic / output.txt
Created November 12, 2017 20:39
./organize-ebooks.sh -d -v
[/Users/bc..et - Honore de Balzac.epub] =====================================================
[/Users/bc..ns - Honore de Balzac.epub] Testing '/DIRECTORY/Balzac, Honore de/Lost Illusions - Honore de Balzac.epub' for corruption...
[/Users/bc..ns - Honore de Balzac.epub] tr: Illegal byte sequence
[/Users/bc..ns - Honore de Balzac.epub] The file has a '.epub' extension, testing with 7z...
[/Users/bc..ns - Honore de Balzac.epub] File passed the corruption test, looking for ISBNs...
[/Users/bc..ns - Honore de Balzac.epub] Searching file '/DIRECTORY/Balzac, Honore de/Lost Illusions - Honore de Balzac.epub' for ISBN numbers...
[/Users/bc..ns - Honore de Balzac.epub] usage: grep [-abcDEFGHhIiJLlmnOoqRSsUVvwxZ] [-A num] [-B num] [-C[num]]
[/Users/bc..ns - Honore de Balzac.epub] [-e pattern] [-f file] [--binary-files=value] [--color=when]
[/Users/bc..ns - Honore de Balzac.epub] [--context[=num]] [--directories=action] [--label] [--line-buffered]
[/Users/bc..ns - Honore de Balzac.epub] [--null] [
@heliostatic
heliostatic / justfile
Last active May 10, 2019 13:37
mastodon docker justfile
fetch:
git fetch
update VERSION:
git stash
git checkout v{{VERSION}}
git stash pop
sed 's/:v[0-9]\.[0-9]\.[0-9]/:v{{VERSION}}/g' docker-compose.yml
restart: