Skip to content

Instantly share code, notes, and snippets.

@ts
ts / html5video.sh
Created October 29, 2013 22:20 — forked from dajoho/html5.sh
#!/bin/bash
# FILTERS="-filter:v crop=504:374:6:4,unsharp=5:5:1.0:5:5:0.0";
FILTERS="";
RESIZE="960x540";
VIDEO_BITRATE="2048k";
AUDIO_BITRATE="96k";
############################################################
for f in "$@"
do
@ts
ts / about.md
Created September 12, 2011 17:43 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@ts
ts / LogIt.scpt
Created September 24, 2009 14:06 — forked from sippey/LogIt.scpt
using terms from application "Quicksilver"
on process text log_text
set theDate to (do shell script "date '+%m-%d-%Y %H:%M'")
set theText to log_text
set theText to theDate & " " & theText & "
"
set thePosixFilePath to "/Users/ts/Dropbox/Sync/todo.txt" as string
set theFilePath to POSIX file thePosixFilePath
set theFileReference to open for access theFilePath with write permission
write theText to theFileReference starting at eof