This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
| #!/usr/bin/env python | |
| # Copyright (c) 2008 Carnegie Mellon University. | |
| # | |
| # You may modify and redistribute this file under the same terms as | |
| # the CMU Sphinx system. See | |
| # http://cmusphinx.sourceforge.net/html/LICENSE for more information. | |
| import pygtk | |
| pygtk.require('2.0') |
| Byobu Commands | |
| ============== | |
| byobu Screen manager | |
| Level 0 Commands (Quick Start) | |
| ------------------------------ | |
| <F2> Create a new window |
Last Update: May 13, 2019
Offline Version
| license: mit |
| (use-modules (system base lalr)) | |
| (define csv-parse | |
| (lalr-parser | |
| (CELL COMMA NEWLINE RETURN) | |
| (csv () : '() | |
| (csv row) : (cons $2 $1)) | |
| (row (nl) : (list "") | |
| (COMMA row) : (cons "" $2) | |
| (CELL nl) : (list $1) | |
| (CELL COMMA row) : (cons $1 $3)) |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| Byobu is a suite of enhancements to tmux, as a command line | |
| tool providing live system status, dynamic window management, | |
| and some convenient keybindings: | |
| F1 * Used by X11 * | |
| Shift-F1 Display this help | |
| F2 Create a new window | |
| Shift-F2 Create a horizontal split | |
| Ctrl-F2 Create a vertical split | |
| Ctrl-Shift-F2 Create a new session |