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
<?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', |
{ | |
"name": "upstatement/cooltheme", | |
"description": "Starter theme to build a Timber theme", | |
"type":"wordpress-theme", | |
"minimum-stability" : "dev", | |
"authors": [ | |
{ | |
"name": "andyrader", | |
"email": "[email protected]" |
atom.packages.onDidActivatePackage (pack) -> | |
if pack.name == 'ex-mode' | |
Ex = pack.mainModule.provideEx() | |
Ex.registerCommand 'tabl', -> atom.workspace.getActivePane().moveItemLeft() | |
Ex.registerCommand 'tabr', -> atom.workspace.getActivePane().moveItemRight() | |
Ex.registerCommand 'e', -> atom.workspace.getActiveTextEditor().getBuffer().reload() | |
treeView = document.querySelector('.tool-panel.tree-view') |