start new:
tmux
start new with session name:
tmux new -s myname
| import Foundation | |
| typealias NewFileCallback = (fileURL: NSURL) -> Void | |
| class ScreenshotDetector: NSObject, NSMetadataQueryDelegate { | |
| let query = NSMetadataQuery() | |
| var newFileCallback: NewFileCallback? | |
| //Original | |
| const makeRequest = () => { | |
| return getJSON() | |
| .then(data => { | |
| if (data.needsAnotherRequest) { | |
| return makeAnotherRequest(data) | |
| .then(moreData => { | |
| console.log(moreData) | |
| return moreData | |
| }) |
| const makeRequest = () => { | |
| return getJSON() | |
| .then(data => { | |
| if (data.needsAnotherRequest) { | |
| return makeAnotherRequest(data) | |
| .then(moreData => { | |
| console.log(moreData) | |
| return moreData | |
| }) | |
| } else { |
| #!/bin/bash | |
| # mov2giv in out width | |
| # mov2gif video_file_in.mov gif_file_out.gif 300 | |
| tmp_dir=/tmp/frames_$(date +%s) | |
| mkdir $tmp_dir | |
| if [ -z "$3" ] | |
| then | |
| size=600 |