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:
/* ================== */ | |
/** | |
* Concepts: | |
* Global Context | |
* Chained Assignment | |
*/ | |
var x = 1; | |
var y = 2; | |
var z = 3; |
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
var FORMAT_ONELINE = 'One-line'; | |
var FORMAT_MULTILINE = 'Multi-line'; | |
var FORMAT_PRETTY = 'Pretty'; | |
var LANGUAGE_JS = 'JavaScript'; | |
var LANGUAGE_PYTHON = 'Python'; |
#A team
##What is Rails?
Rails is an open source web application framework written in Ruby. It is a full-stack framework that has been optimised for programmer happiness and sustainable productivity. It emphasises the use of well-known software engineering patterns and paradigms, including convention over configuration (CoC), don't repeat yourself (DRY), the active record pattern, and model–view–controller (MVC).
Extra: David Heinemeier Hansson (DHH) is the creator of Rails, having extracted it from his work on Basecamp. He first released Rails as open source in July 2004.
Useful Links:
v = Vimeo::Advanced::Video.new("api_key", "secret_key") | |
response = v.get_list_by_tag("dog") | |
# returns: | |
# { | |
# "rsp"=> { | |
# "videos" => { | |
# "perpage"=>"25", "on_this_page"=>"25", "page"=>"1", | |
# "video"=> | |
# [{"title"=>"Arduino Web Controlled Dog Waterer", "id"=>"4620716", "owner"=>"76289", "privacy"=>"anybody", "is_hd"=>"1"}, |
Need to quickly calculate ems while developing? Enter in your base, desired font size, and get to work.
Forked from Chris Deacy's Pen Em Converter.
A Pen by Sonya Corcoran on CodePen.
DNA is represented by an alphabet of the following symbols: 'A', 'C', 'G', and 'T'.
Each symbol represents a nucleotide, which is a fancy name for the particular molecules that happen to make up a large part of DNA.
Shortest intro to biochemistry EVAR:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |