I hereby claim:
- I am mathie on github.
- I am mathie (https://keybase.io/mathie) on keybase.
- I have a public key whose fingerprint is CF61 9DD5 6116 D3CD 4380 C1AE 8F7E 58DD 002D C29B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I’m not asking for much, really. I just want a task management system that provides me with the mechanisms I think I need in order to organise my life. Most of these are based on features I currently use in OmniFocus, and those I’ve wished were there at one time or another. In no particular order, they are:
An inbox which easily allows me to capture new tasks without thinking about organising them. I should be able to enter items into the inbox through a global shortcut on Mac OS X (ctrl-alt-space
being my current one) and through a seamless interface on iOS (an obvious, always-available button in-app and importing Reminders from the native iOS app, so that I get Siri integration). And I should be able to capture emails into the inbox in such a way that it’s straightforward to get back to the original email (for replying).
It should be straightforward to work through the Inbox, moving individual tasks into the right place inside existing projects, or creating new pro
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: https://github.com/mxcl/homebrew | |
HEAD: dc7109eccb9753db6fefb40f3bd4b46c91647215 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: 8-core 64-bit ivybridge | |
OS X: 10.9-x86_64 | |
Xcode: 5.0 | |
LLVM-GCC: N/A | |
Clang: 5.0 build 500 |
[root@10-60-4b-92-74-84 ~]# dladm show-phys | |
LINK MEDIA STATE SPEED DUPLEX DEVICE | |
e1000g0 Ethernet up 1000 full e1000g0 | |
bge0 Ethernet up 1000 full bge0 | |
bge1 Ethernet up 1000 full bge1 | |
[root@10-60-4b-92-74-84 ~]# dladm show-link | |
LINK CLASS MTU STATE BRIDGE OVER | |
e1000g0 phys 1500 up -- -- | |
bge0 phys 1500 up -- -- | |
bge1 phys 1500 up -- -- |
user=> (def foo 'hello) | |
#'user/foo | |
user=> (defn bar [] foo) | |
#'user/bar | |
user=> (bar) | |
hello | |
user=> (def foo 'world) | |
#'user/foo | |
user=> (bar) | |
world |
on run {input, parameters} | |
tell application "Evernote" | |
repeat with pdf in input | |
create note from file pdf | |
end repeat | |
end tell | |
end run |
exec { | |
'touch-site-pp': | |
command => '/usr/bin/touch /etc/puppet/manifests/site.pp', | |
unless => '/usr/bin/test -z $(/usr/bin/find /etc/puppet/manifests/ -follow -newer /etc/puppet/manifests/site.pp)', | |
require => File['/etc/puppet/manifests']; | |
} |
class postgresql::server::config { | |
exec { | |
'postgresql-drop-cluster': | |
command => '/usr/bin/pg_dropcluster --stop 9.1 main', | |
onlyif => "/usr/bin/psql -c '\\l+' |awk '/template0/ { print \$5 }' |grep 'SQL_ASCII'", | |
user => postgres, | |
notify => Exec['postgresql-create-cluster']; | |
'postgresql-create-cluster': | |
command => '/usr/bin/pg_createcluster --locale=en_GB.UTF-8 9.1 main', |
class SerialNumber | |
def self.new(str = nil) | |
# Our new method is really a factory to one of the concrete subclasses. | |
if SerialNumber == self | |
if str.blank? | |
nil | |
# Zigbee serial numbers are easy to spot; they start with eight '0's. | |
elsif str.strip =~ /^00000000/ | |
ZigbeeSerialNumber.new(str) | |
else |
-- This property controls whether full project paths (including parent folders) are displayed | |
property includeFullProjectPaths : true | |
-- These properties control whether additional task content is displayed | |
property includeTaskContext : true | |
property includeTaskEstimatedTime : true | |
property includeTaskStartDate : true | |
property includeTaskModificationDate : false | |
property includeTaskCompletionDate : true | |
property includeTaskNotes : true |