As configured in my dotfiles.
start new:
tmux
start new with session name:
set dFolder to "~/Desktop/screencapture/" | |
do shell script ("mkdir -p " & dFolder) | |
set i to 0 | |
repeat 960 times | |
do shell script ("screencapture " & dFolder & "frame-" & i & ".png") | |
delay 30 -- Wait for 30 seconds. | |
set i to i + 1 | |
end repeat |
FROM ubuntu:13.10 | |
RUN apt-get update | |
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install golang | |
RUN mkdir /go | |
RUN export GOPATH=/go | |
ENV GOPATH /go | |
RUN export PATH=$PATH:$GOPATH/bin |
// minimal vertical spread | |
w = { foo : "bar" | |
, foo2 : { hello : "world" } | |
, foo3 : { wow : "this", is : "really", getting : "long" } } | |
// some more vertical spread | |
x = { foo : "bar" | |
, foo2 : { hello : "world" } | |
, foo3 : { wow : "this" | |
, is : "really" |
As configured in my dotfiles.
start new:
tmux
start new with session name: