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:
| ;;; org-airmail.el - Support for links to Airmail 3 messages in Org | |
| (require 'org) | |
| (org-add-link-type "airmail" 'org-airmail-open) | |
| (defun org-airmail-open (url) | |
| "Visit the Airmail message referenced by URL. | |
| URL should be a vaid Airmail message url retrieved from Airmail with | |
| 'Copy Message Link'." |
| to create a new environment | |
| conda create -n mynewenviron package1 package2 etc | |
| conda create -n newenv --clone ~anaconda | |
| to remove an environment | |
| conda remove -n myenvirontoremove --all | |
| always start with |
Roll your own iPython Notebook server with Amazon Web Services (EC2) using their Free Tier.
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |