my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add tmpgo

+12
+12
bin/tmpgo
··· 1 + #!/bin/sh 2 + # 3 + # make a tempdir & cd to it 4 + 5 + set -e 6 + 7 + d="$(pwgen 10)" 8 + mkdir "/tmp/$d" 9 + printf '%s\n' "/tmp/$d" 10 + cd "/tmp/$d" 11 + printf "package main\n\nfunc main() {\n\t\n}\n" >main.go 12 + vi "+normal Gk" +startinsert! main.go && go run main.go