Skip to content

Instantly share code, notes, and snippets.

t = '''Inbox:
Project 01:
- Task 01
this is a comment
this is still a comment associate with task 01
- sub 01
- sub 02
- sub 05
- Task 02
@pslobo
pslobo / ThingsReminders
Created December 10, 2013 16:33
A quick first run at solving the problem posed by Rick Stawarz here: https://alpha.app.net/stwrz/post/17003173
tell application "Things"
repeat with todayToDo in to dos of list "Today"
set todoName to name of todayToDo
set todoBody to notes of todayToDo
tell application "Reminders"
set todayList to list named "Today"
tell todayList
make new reminder with properties {name:todoName, body:todoBody}
end tell
end tell
@pslobo
pslobo / swarm.sh
Created July 25, 2016 10:42 — forked from etoews/swarm.sh
docker-machine create -d virtualbox swarm-keystore
eval "$(docker-machine env swarm-keystore)"
docker run -d \
-p "8500:8500" \
-h "consul" \
progrium/consul -server -bootstrap
docker-machine create \
-d virtualbox \
@pslobo
pslobo / docker-cli-tips-and-tricks.md
Created September 9, 2016 09:12 — forked from BretFisher/docker-cli-tips-and-tricks.md
Docker CLI Tips and Tricks
@pslobo
pslobo / .tmux.conf
Created May 30, 2017 13:18 — forked from BretFisher/.tmux.conf
My ugly tmux config, much copied from others and tweaked
# tmux config for ultimate winning
# make tmux display things in 256 colors
#set -g default-terminal "screen-256color"
# use this if italic enabled in term profile
set -g default-terminal "tmux-256color"
# set just true color without custom term
#set -ga terminal-overrides ",xterm-256color:Tc"
# fixes bug: https://github.com/tmux/tmux/issues/435
#set -ga terminal-overrides ',xterm*:sitm=\E[3m'