How to use:
./wordle.sh
Or try the unlimit mode:
| On the criteria to be used in decomposing systems into modules – David Parnas | |
| http://sunnyday.mit.edu/16.355/parnas-criteria.html | |
| A Note On Distributed Computing – Jim Waldo, Geoff Wyant, Ann Wollrath, Sam Kendall | |
| http://web.cs.wpi.edu/~cs3013/a11/Papers/Waldo_NoteOnDistributedComputing.pdf | |
| The Next 700 Programming Languages – P. J. Landin | |
| http://thecorememory.com/Next_700.pdf | |
| Can Programming Be Liberated from the von Neumann Style? – John Backus |
| = Resources = | |
| * zsh - http://www.zsh.org/ | |
| * ZSH-LOVERS - http://grml.org/zsh/zsh-lovers.html | |
| * manual - http://zsh.sourceforge.net/Doc/Release/index.html | |
| * oh-my-zsh - https://github.com/robbyrussell/oh-my-zsh | |
| * prezo - https://github.com/sorin-ionescu/prezto | |
| * zsh-users - https://github.com/zsh-users | |
| = Functions = |
| #! /usr/bin/env bash | |
| # Install any build dependencies needed for curl | |
| sudo apt-get build-dep curl | |
| # Get latest (as of Feb 25, 2016) libcurl | |
| mkdir ~/curl | |
| cd ~/curl | |
| wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2 | |
| tar -xvjf curl-7.50.2.tar.bz2 |
%gh-tag
% https://gist.github.com/rbf/6434162
gh-tag is a shell tool to help creating a meaningful tag in the git
repo in the current folder. It will show a pre-filled tag message,
with a out-commented list of the commits that have been done since the
last released version (i.e. annotated tag). If GitHub issues are
%process-md
% https://gist.github.com/rbf/6064734
process-md is a bash tool to recursively generate files from
markdown files in other formats using pandoc, which is assumed
installed. By default (i.e. calling command tool with no arguments) it
processes all markdown files in the current directory and places the
resulting PDF files in a ./target directory.
| // Copy this to your keybindings (Preferences > Key Bindings - User) | |
| // Change the keybinding, color schemes, and themes to your preferences | |
| { "keys": ["ctrl+1"], "command": "toggle_color_scheme", | |
| "args": { | |
| "light_color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
| "dark_color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
| "light_theme": "Soda Light.sublime-theme", | |
| "dark_theme": "Soda Dark.sublime-theme" | |
| } |