<?php | |
/** | |
* Time for humans | |
* {{ time_for_humans when="insert a time and/or date in any format here" }} | |
* For more details see: http://carbon.nesbot.com/docs/#api-humandiff | |
*/ | |
use \Carbon\Carbon; |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
http://alexarmstrong.net/2015/02/rainy-paris-cafe |
LibGuides v2 Notes |
This is a guide to implementing Getting Things Done (GTD) using [Simpletask][] by [Mark Janssen][].
Simpletask uses the [todo.txt][] syntax, but has sufficient differences and quirks of its own to be worth describing in detail---at least, that's the story I'm going with. I actually began this guide as an exploration of my own trusted system. Personal workflows are by definition eccentric; I have included only what seems to me to be broadly useful.
This implementation of GTD covers the "standard" classifications: next actions by context, projects, somedays, agendas by person and meeting, etc. In a departure from strict GTD, each entry in these lists is also tagged with an area of focus, interest or responsibility. I find that the ability to slice the system by this extra dimension is worth the additional complexity at the processing and organizing stages. Limitations, issues and workarounds are discussed at the end.
Before we begin, some words of wisdom
comment | |
comment punctuation | |
comment.block.documentation | |
comment.block.preprocessor | |
comment.documentation | |
constant | |
constant.character | |
constant.character punctuation | |
constant.character.entity | |
constant.character.escape |
// MultiBind | |
// Modal Navigation for Colemak -- inspired by [Miniguru](http://www.guru-board.com/english/layout_en) | |
{ "keys": ["alt+'"], "command": "multibind_toggle", "args" : { "layout": "modal-nav-colemak" } }, | |
{ "keys": ["ctrl+shift+'"], "command": "multibind_show" }, | |
{ "keys": ["escape"], "command": "multibind_toggle", "args" : { "layout": "default" }, "context": [ { "key": "multibind.modal-nav-colemak" } ] }, | |
{ "keys": ["n"], "command": "move", "args": {"by": "characters", "forward": false}, "context": [ { "key": "multibind.modal-nav-colemak" } ] }, | |
{ "keys": ["i"], "command": "move", "args": {"by": "characters", "forward": true}, "context": [ { "key": "multibind.modal-nav-colemak" } ] }, | |
{ "keys": ["u"], "command": "move", "args": {"by": "lines", "forward": false}, "context": [ { "key": "multibind.modal-nav-colemak" } ] }, |
/* Good things about LESS */ | |
// Variables (or constants, rather) | |
// & operations | |
@baseline: 21px; | |
@red: #a00; | |
.error { | |
margin-bottom: @baseline; | |
padding: (@baseline / 2); | |
color: @red; |