This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " appearance | |
| colorscheme desert | |
| set number | |
| syntax enable | |
| " searching | |
| set incsearch | |
| set hlsearch | |
| " indent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " appearance | |
| colorscheme desert | |
| set number | |
| syntax enable | |
| " searching | |
| set incsearch | |
| set hlsearch | |
| " indent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/gosh | |
| (use srfi-1) | |
| (use srfi-13) | |
| (use www.cgi) | |
| (use text.html-lite) | |
| (use file.util) | |
| (use sxml.serializer) | |
| (use wiliki.parse) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # tweet notifier plugin | |
| Earthquake.init do | |
| output do |item| | |
| next unless item["_stream"] | |
| if item["text"] | |
| notify "#{item["text"]}", :title => "#{item["user"]["screen_name"]}" | |
| end | |
| end | |
| end |