Skip to content

Instantly share code, notes, and snippets.

# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->

Keybase proof

I hereby claim:

  • I am madasi on github.
  • I am madasi (https://keybase.io/madasi) on keybase.
  • I have a public key whose fingerprint is 2E7A 8381 F585 4881 1CBC 5B53 676F C405 16B5 C435

To claim this, I am signing this object:

@madasi
madasi / gist:10740991
Created April 15, 2014 15:19
Observer
2014-04-15 14:48:05 Preprocessing...
2014-04-15 14:48:33 Rendered 0 of 524286. 0% complete
2014-04-15 14:48:33 E An error has occurred. This may be a bug. Please let us know!
See http://docs.overviewer.org/en/latest/index.html#help
This is the error that occurred:
Traceback (most recent call last):
File "/usr/bin/overviewer.py", line 553, in <module>
ret = main()
File "/usr/bin/overviewer.py", line 501, in main
@madasi
madasi / template
Created November 15, 2012 18:27 — forked from Gen2ly/template
Description of script
#!/bin/bash
# Description of script
# Required program(s)
req_progs=(prog1 prog2)
for p in ${req_progs[@]}; do
hash "$p" 2>&- || \
{ echo >&2 " Required program \"$p\" not installed."; exit 1; }
done
@madasi
madasi / template-basic
Created November 15, 2012 18:27 — forked from Gen2ly/template-basic
Description of script
#!/bin/bash
# Description of script
# Display usage if no parameters given
if [[ -z "$@" ]]; then
echo " ${0##*/} <input> - description"
exit
fi
# Required program(s)