start new:
tmux
start new with session name:
tmux new -s myname
| TrueCrypt (the topic for this meeting) | |
| http://www.truecrypt.org/ | |
| http://en.wikipedia.org/wiki/TrueCrypt | |
| http://www.truecrypt.org/docs/plausible-deniability | |
| Eric's slides on TrueCrypt (from presentation at the meeting): | |
| https://www.dropbox.com/s/bitqurkz17mv9nf/TrueCrypt.odp | |
| ArchLinux comparison of Disk Encryption packages: | |
| https://wiki.archlinux.org/index.php/Disk_Encryption#Comparison_table |
| <?php | |
| /** | |
| * SplClassLoader implementation that implements the technical interoperability | |
| * standards for PHP 5.3 namespaces and class names. | |
| * | |
| * http://groups.google.com/group/php-standards/web/final-proposal | |
| * | |
| * // Example which loads classes for the Doctrine Common package in the | |
| * // Doctrine\Common namespace. |
| #!/usr/bin/env ruby | |
| brews = [] | |
| out = IO.popen("brew leaves", "r") do |io| | |
| brews = io.read.split "\n" | |
| end | |
| def parse(brew, brew_info) | |
| in_options = false | |
| print "brew reinstall -v #{brew} " |
| function renderPage(url) { | |
| var page = require('webpage').create(); | |
| var redirectURL = null; | |
| page.onResourceReceived = function(resource) { | |
| if (url == resource.url && resource.redirectURL) { | |
| redirectURL = resource.redirectURL; | |
| } | |
| }; |
This was inspired by
If you can check everything on this list, congratulations, you are doing it right!
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: [links are broken] | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # curl -sL https://gist.githubusercontent.com/kgust/9528677/raw/87abace383ef4321d6e9174c29105f66300331d7/hack.sh | sh | |
| # see it at: https://gist.github.com/kgust/9528677#file-hack-sh |
| function generateNoise(opacity) { | |
| if ( !!!document.createElement('canvas').getContext ) { | |
| return false; | |
| } | |
| var canvas = document.createElement("canvas"), | |
| ctx = canvas.getContext('2d'), | |
| x, y, | |
| number, | |
| opacityopacity = opacity || .2; |
This GIST contains a list of front end development frameworks, libraries, and plugins I have found or used at some point or another.
This was inspired by a list I saw on github at https://github.com/mrmartineau/ZM-Resources.
* libraries I (mcallan83) have used