Name: myname 2011-01-16 13:48
how you liek that
; active threads from http://dis.4chan.org/list/prog
; returns a list of (thread-id subject #posts last-post)
(prog/active-threads)
; creates a new thread
; returns boolean
(prog/new-thread! subject name email text)
; post a reply in a thread
; returns boolean
(prog/reply thread-id name email text)
; read the replies in a thread (after a certain post)
; returns list of (post-id name email time text)
(prog/read-replies thread-id #:after post-id)