[BRIEF DESCRIPTION OF THE SLACK AND ITS PURPOSE]
The current admins are:
- [NAMES]
The dayone
command line tool was originally written to work with Day One Classic, and by default writes its entries to the default Day One Classic journal directory1. If you want to use the dayone
tool to write entries in to Day One 2 instead, there are a couple options.
Option 1. Use this option if you don't use Day One Classic at all.
Season | Episode | Title | Reason | |
---|---|---|---|---|
1 | 5 | The Enchiridion | A good intro to the series, plus introduces the important Enchiridion | |
1 | 8 | Business Time* | First mention of Ooo being post-apocalyptic | |
1 | 9 | My Two Favorite People | Intros the Jake and LR plotline | |
1 | 10 | Memories of Boom Boom Mountain | A look at how Finn was adopted into Jake's Family | |
1 | 12 | Evicted! | Intros Marceline | |
1 | 16 | Ocean of Fear | Introduces Finn's phobia | |
1 | 22 | Henchman* | Establishes Finn and Marceline as friends | |
1 | 23 | Rainy Day Daydream* | good episode to show someone who’s never seen the show before | |
1 | 25 | His Hero | introduces the Lich and Billy |
exports.index = { | |
auth: 'session', | |
handler: function (request, reply) { | |
reply('resource index'); | |
} | |
}; | |
exports.create = { | |
auth: 'session', | |
handler: function (request, reply) { |
/* | |
* Taken from http://stackoverflow.com/questions/5867534/how-to-save-canvas-data-to-file/5971674#5971674 | |
*/ | |
var fs = require('fs'); | |
// string generated by canvas.toDataURL() | |
var img = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0" | |
+ "NAAAAKElEQVQ4jWNgYGD4Twzu6FhFFGYYNXDUwGFpIAk2E4dHDRw1cDgaCAASFOffhEIO" | |
+ "3gAAAABJRU5ErkJggg=="; | |
// strip off the data: url prefix to get just the base64-encoded bytes |
This script for Google Spreadsheets allows you to generate slugs for your data such as might be used for creating unique urls.
Use it like this!
# | A | B | C |
---|---|---|---|
1 | a | b | slug |
2 | foo | baz bing | =slugify(A2:B4) |
3 | bar | BAZ | |
4 | FOO | baz-bing |
Is this a keystore | |
Is it in memory? | |
Caught in an event loop | |
No escape from reality | |
Open your append-only file | |
Confirm it's an rdb | |
I'm just a poor boy |
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
".gitkeep", | |
"dump.rdb" | |
], |
.list-container { | |
border-radius: 5px; | |
border: 1px solid #C5C5C5; | |
box-shadow: inset 0 1px 0 #FFF; | |
} | |
ol { | |
border: 1px solid transparent; | |
} |
# cd /Users/natevw/Library/Application\ Support/CouchbaseServer/ShutterStem/_attachments/scripts | |
#! /usr/bin/python | |
DB = "http://localhost:5984/photos" | |
SRC_ID = 'imgsrc-c393ded1a81e71d11859e937dd002ccd' | |
FOLDER = "/Volumes/FUJIFILM/DCIM" | |
from importer import Importer |