| TODO | DOING | DONE |
|---|---|---|
| Web Audio API | Server Architecture | |
| DSL | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asana personal | perl -lne 'm/\d{14}?/; print ${^MATCH}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Emacs macro to add a kanban table to file | |
| ;; Requires Kanban (M-x package-install "kanban") | |
| (fset 'kanban | |
| " | |
| | TODO | DOING | DONE | | |
| |------+-------+------| | |
| | | | | | |
| | | | | | |
| | | | | | |
| #+TBLFM: @1='(kanban-headers $#)::@2$1..@>$>='(kanban-zero @# $# nil (list \"~/path/to/file.org\")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/bash | |
| # Script to quickly reload the browser | |
| # while creating a presentation using Hovercraft (impressjs) | |
| # | |
| # Requires: | |
| # pip install hovercraft | |
| # pip install watchdog | |
| # chromix: https://github.com/smblott-github/chromix | |
| watchmedo shell-command \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class MysqlConnectorJava < Formula | |
| homepage 'http://dev.mysql.com/downloads/connector/j/' | |
| url 'http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.30.tar.gz' | |
| sha1 '726240f679eddb3429755e24624505666b97b199' | |
| def install | |
| prefix.install_metafiles | |
| libexec.install Dir['*.jar'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;Add your default-elisp task id to "id-of-default-elisp-task" | |
| (defvar ype/default-elisp-id "id-of-default-elisp-task") | |
| ;;This lets you M-x to your elisp task | |
| (defun ype/clock-in-default-elisp () | |
| (interactive) | |
| (org-with-point-at (org-id-find p_e/default-elisp-id 'marker) | |
| (org-clock-in '(16)))) | |
| ;;In the elisp task do something like this... |
NewerOlder