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:
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) | |
func checkErr(e error) { | |
if e != nil { |
/* Go Lang find files with extension from the current working directory. | |
Copyright (c) 2010-2014 Alex Niderberg */ | |
package main | |
import ( | |
"fmt" | |
"os" | |
"path/filepath" | |
"regexp" |
package main | |
// using asymmetric crypto/RSA keys | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"time" |
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Prerequisites (for Homebrew at a minimum, lots of other tools need these too):
xcode-select --install
will prompt up a dialog)Install Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Commonly Used Commands:
#https://hub.mybinder.org/lab/user/jupyterlab-jupyterlab-demo-whkn85a9 | |
import pandas as pd | |
from io import StringIO | |
cabin_data = StringIO("""CABIN NAME,WHERE LOCATED,CABIN TYPE,PETS ALLOWED,MAXIMUM CAPACITY,PATC MAP,# MILES FROM D.C.,HIKE-IN DISTANCE,DISTANCE TO THE AT,PER NIGHT RATE THU/FRI/SAT,PER NIGHT RATE SUN - WED,PER NIGHT RATE ADVANCED RENTAL,PATC Membership Required,Available | |
Anna Michener,Pennsylvania,Primitive,yes,14,2-3,105,1 mile,0.3 mile,$50.00,$35.00,$100/$70,no,no | |
Argow Cabin,Virginia,Primitive,yes,8,11,120,1 mile,1 mile,$55.00,$40.00,$110/$80,yes,no | |
Bear Spring,Maryland,Primitive,yes,6,5-6,59,0.4 mile,0.8 mile,$50.00,$35.00,$100/$70,no,yes | |
Bears Den Cottage,Virginia,Semi-Primitive,yes,8,8,56,0.3 mile,300 feet,$75.00,$50.00,$150/$100,no,yes | |
Blackburn Tr. Ctr.,Virginia,Semi-Primitive,no,22,7,50,none,0.2 mile,$140.00*,$80.00*,$280/$160*,yes,yes | |
Catoctin Hollow Lodge,Maryland,Modern,no,8,5-6,65,0.7 miles,N/A,$140.00,$80.00,$280/$160,no,yes |