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:
| #!/bin/bash | |
| # | |
| # What is that | |
| # ============ | |
| # | |
| # This script will help you setting up your digital ocean | |
| # infrastructure with Ansible v2.0+ and DO API v2 | |
| # | |
| # Usually, when working with DO, one is supposed to use digital_ocean.py | |
| # inventory file, and spin up instances in a playbook. |
Welcome and thank you for signing up for NodeSchool at NationJS 2014. To make this NodeSchool the best NodeSchool, there are a few things that you can do before you arrive to be ready to excel at this NodeSchool!
| #! /usr/bin/env node | |
| var feedparser = require( 'feedparser' ); | |
| var request = require( 'request' ); | |
| var feedTest = function (url){ | |
| var object = {}; | |
| object.articles =[]; | |
| request( url, {timeout: 20000}, function(error, resp, body){ | |
| if (error){ |
| var mongoose = require('mongoose'); | |
| mongoose.connect('localhost', 'testing_535'); | |
| console.error('mongoose version', mongoose.version); | |
| var OID = mongoose.Types.ObjectId; | |
| var ASchema = new mongoose.Schema({ | |
| square: mongoose.Schema.ObjectId | |
| , task: Number | |
| }); |