This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| //lsauer.com , lo sauer 2013 | |
| //JavaScript List of selected MIME types | |
| //A comprehensive MIME List is available here: https://gist.github.com/lsauer/2838503 | |
| var mimeTypes = | |
| { | |
| 'a' : 'application/octet-stream', | |
| 'ai' : 'application/postscript', | |
| 'aif' : 'audio/x-aiff', | |
| 'aifc' : 'audio/x-aiff', | |
| 'aiff' : 'audio/x-aiff', |
D3 Website
API / Docs
Wiki
d3 Based Libraries -
| $ cd /usr/bin/ | |
| $ sudo curl -LOk http://xrl.us/cpanm | |
| $ sudo chmod +x cpanm | |
| $ sudo cpanm local::lib | |
| -> FAIL Installing ExtUtils::MakeMaker failed. See /root/.cpanm/build.log for details. | |
| -> FAIL Bailing out the installation for App-cpanminus-1.5018. Retry with --prompt or --force. | |
| $ sudo yum install perl-devel |
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # This skeleton also assumes you're using the following gems: | |
| # | |
| # rspec-rails: https://github.com/rspec/rspec-rails |
| 2013-09-28 15:54:13.369 iOSFontListTest[3753:60b] Font Family Names ( | |
| "Academy Engraved LET", | |
| "Al Nile", | |
| "American Typewriter", | |
| "Apple Color Emoji", | |
| "Apple SD Gothic Neo", | |
| Arial, | |
| "Arial Hebrew", | |
| "Arial Rounded MT Bold", | |
| Avenir, |
| /** @jsx React.DOM */ | |
| define(['reactjs'], function(React){ | |
| return React.createClass({ | |
| getDefaultProps: function(){ | |
| return { | |
| multiple: false | |
| /* | |
| name: 'mySelect' |
| PostgreSQL Cheat Sheet | |
| ====================== | |
| CREATE DATABASE | |
| CREATE DATABASE dbName; | |
| CREATE TABLE (with auto numbering integer id) | |
| CREATE TABLE tableName ( | |
| id serial PRIMARY KEY, | |
| name varchar(50) UNIQUE NOT NULL, |