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:
| # GNU Screen configuration file | |
| # | |
| # Balaji S. Srinivasan <balajis_at_stanford_dot_edu> | |
| # This file can be found at http://jinome.stanford.edu/stat366/unix/.screenrc | |
| # Modified to play well with emacs, by moving Ctrl-A to Ctrl-T | |
| # Modification of original files by Sven Guckes, Sarunas Vancevicius, and Mike Perry | |
| # Sarunas Vancevicius original: http://www.redbrick.dcu.ie/~svan/configs/screenrc | |
| # Mike Perry original: http://fscked.org/writings/225notes/unix/.screenrc |
| <?php | |
| /* From https://www.usps.com/send/official-abbreviations.htm */ | |
| $us_state_abbrevs_names = array( | |
| 'AL'=>'ALABAMA', | |
| 'AK'=>'ALASKA', | |
| 'AS'=>'AMERICAN SAMOA', | |
| 'AZ'=>'ARIZONA', | |
| 'AR'=>'ARKANSAS', |
To remove a submodule you need to:
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var sass = require('gulp-sass'); | |
| var browserSync = require('browser-sync').create(); | |
| var reload = browserSync.reload; | |
| gulp.task('sass', function () { | |
| gulp.src('./assets/styles/**/*.scss') | |
| .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) |
| -- Save this file to ~/Library/Application Support/Microsoft/Office/Outlook Script Menu Items folder on your ma | |
| tell application "Microsoft Outlook" | |
| set totalSize to 0 | |
| set msgs to current messages | |
| set myDocumentFolder to POSIX path of (path to documents folder as string) | |
| set myAttachmentsFolder to myDocumentFolder & "Attachments" | |
| tell application "Finder" | |
| if not (exists myAttachmentsFolder) then | |
| #make new folder at myDocumentFolder with properties {name:"Attachments"} | |
| do shell script "mkdir -p " & quoted form of myAttachmentsFolder |
| 'use strict'; | |
| export class Facebook { | |
| getScript() { | |
| return new Promise((resolve) => { | |
| if (window.FB) { | |
| resolve(window.FB); | |
| } | |
| const id = 'facebook-jssdk'; |
| **/*.min.js | |
| **/*.build.js | |
| **/node_modules/** | |
| **/vendor/** | |
| build | |
| coverage | |
| cypress | |
| node_modules | |
| vendor |