This file contains 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
= /^Income:salary$/ | |
; [Accounts:checking] $ -200.00 | |
; [Budget:food] $ 200.00 | |
= /^Expense:food$/ | |
[Budget:food] -1.0 | |
[Accounts:checking] 1.0 | |
2014/04/13 Company Inc | |
Accounts:checking $ 1000.00 |
This file contains 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
package require http | |
namespace eval twitter { | |
variable status_url "http://api.twitter.com/1/statuses/user_timeline/" | |
bind pub -|- "!twitter" twitter::tweet | |
} | |
proc twitter::tweet {nick uhost hand chan argv} { | |
if {[string length $argv] < 1} { |