Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus| Total props to Brian Cray: http://briancray.com/posts/estimated-reading-time-web-design/ |
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Twitter (app store) |
| { | |
| "New York": [ | |
| "New York", | |
| "Buffalo", | |
| "Rochester", | |
| "Yonkers", | |
| "Syracuse", | |
| "Albany", | |
| "New Rochelle", | |
| "Mount Vernon", |
| <?php | |
| /** | |
| * Query builder scope to list neighboring locations | |
| * within a given distance from a given location | |
| * | |
| * @param Illuminate\Database\Query\Builder $query Query builder instance | |
| * @param mixed $lat Lattitude of given location | |
| * @param mixed $lng Longitude of given location | |
| * @param integer $radius Optional distance |
| # now run in your console: (I'm actually using powershell) | |
| pm2 start .\ecosystem.config.js |
| /** | |
| * Changes value to past tense. | |
| * Simple filter does not support irregular verbs such as eat-ate, fly-flew, etc. | |
| * http://jsfiddle.net/bryan_k/0xczme2r/ | |
| * | |
| * @param {String} value The value string. | |
| */ | |
| Vue.filter('past-tense', function(value) { | |
| // Slightly follows http://www.oxforddictionaries.com/us/words/verb-tenses-adding-ed-and-ing | |
| var vowels = ['a', 'e', 'i', 'o', 'u']; |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
| set nocompatible " Disable vi-compatibility | |
| set t_Co=256 | |
| colorscheme xoria256 | |
| set guifont=menlo\ for\ powerline:h16 | |
| set guioptions-=T " Removes top toolbar | |
| set guioptions-=r " Removes right hand scroll bar | |
| set go-=L " Removes left hand scroll bar | |
| set linespace=15 |