<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>zedstar dot org &#187; bobot</title>
	<atom:link href="http://zedstar.org/blog/tag/bobot/feed/" rel="self" type="application/rss+xml" />
	<link>http://zedstar.org/blog</link>
	<description>open telecommunication</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:40:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tweeting from an IRC bot</title>
		<link>http://zedstar.org/blog/2009/06/26/tweeting-from-an-irc-bot/</link>
		<comments>http://zedstar.org/blog/2009/06/26/tweeting-from-an-irc-bot/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 19:25:05 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[twitter]]></category>
		<category><![CDATA[bobot]]></category>
		<category><![CDATA[guile]]></category>
		<category><![CDATA[irc]]></category>

		<guid isPermaLink="false">http://zedstar.org/blog/?p=145</guid>
		<description><![CDATA[I have made a Guile module which is capable of being used by the IRC bot bobot++. The code is available here:
http://zedstar.org/tarballs/sneektweet-0.1.tar.gz
The readme:
sneektweet 0.1:

Wraps some C/GLib code which posts to Twitter.

setup:

Edit configure.ac to set twitter account details.

from REPL:

john@thinkpad:~/workspace/sneektweet$ guile
guile> (use-modules (twitter sneektweet))
guile> (tweet "foobar")
guile> ** Message: posted update to Twitter

todo:

Add reading updates and posting back [...]]]></description>
			<content:encoded><![CDATA[<p>I have made a Guile module which is capable of being used by the IRC bot <a href="http://unknownlamer.org/code/bobot.html">bobot++</a>. The code is available here:</p>
<p><a href="http://zedstar.org/tarballs/sneektweet-0.1.tar.gz">http://zedstar.org/tarballs/sneektweet-0.1.tar.gz</a></p>
<p>The readme:</p>
<pre>sneektweet 0.1:

Wraps some C/GLib code which posts to Twitter.

setup:

Edit configure.ac to set twitter account details.

from REPL:

john@thinkpad:~/workspace/sneektweet$ guile
guile> (use-modules (twitter sneektweet))
guile> (tweet "foobar")
guile> ** Message: posted update to Twitter

todo:

Add reading updates and posting back to IRC channel. 

bobot example code:

(use-modules (twitter sneektweet))

(define (sneektweet channel message)
  (if (> (string-length message) 140)
    (bot:say channel "Your message needs to be under 140 characters in length!")
    (tweet message)))

(bot:addcommand "tweet" sneektweet #t 2 0)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://zedstar.org/blog/2009/06/26/tweeting-from-an-irc-bot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
