Skip to content

Instantly share code, notes, and snippets.

@maxx
maxx / portrait_landscape_msword.rtf
Created February 14, 2011 12:11
Portrait and Landscape in RTF for Microsoft Word (2003+)
{\rtf1\ansi
{This is some text in portrait}
{\sect }
\sectd \lndscpsxn\pgwsxn16840\pghsxn11901
{This is some text in landscape }
@maxx
maxx / gist:5334178
Last active December 15, 2015 22:39
applescript to vary vlc volume based on load average (for ambient sound representing load avg)
to getLoadAvgsResult()
return do shell script "(uptime | awk '{print $10}' | cut -d \",\" -f 1)"
end getLoadAvgsResult
set last_load to getLoadAvgsResult()
repeat 999 times
set current_load to getLoadAvgsResult()
log last_load
log current_load