<?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>jamesoff.net &#187; irc</title>
	<atom:link href="http://jamesoff.net/site/tag/irc/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamesoff.net/site</link>
	<description>you heard</description>
	<lastBuildDate>Wed, 16 Dec 2009 10:32:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Irssi typing speed script</title>
		<link>http://jamesoff.net/site/2008/04/10/irssi-typing-speed-script/</link>
		<comments>http://jamesoff.net/site/2008/04/10/irssi-typing-speed-script/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:40:45 +0000</pubDate>
		<dc:creator>jamesoff</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[my stuff]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[irssi]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://jamesoff.net/site/?p=351</guid>
		<description><![CDATA[I have written an irssi script which measures how fast you type on IRC and reports both words per minute and characters per minute. More details and download: WPM script.]]></description>
			<content:encoded><![CDATA[<p>I have written an irssi script which measures how fast you type on IRC and reports both words per minute and characters per minute.</p>

<p>More details and download: <a href="/site/irssi-scripts/wpm/">WPM script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamesoff.net/site/2008/04/10/irssi-typing-speed-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>irssi and ZNC</title>
		<link>http://jamesoff.net/site/2008/02/21/irssi-and-znc/</link>
		<comments>http://jamesoff.net/site/2008/02/21/irssi-and-znc/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 22:38:24 +0000</pubDate>
		<dc:creator>jamesoff</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[internets]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[irssi]]></category>
		<category><![CDATA[znc]]></category>

		<guid isPermaLink="false">http://jamesoff.net/site/2008/02/21/irssi-and-znc/</guid>
		<description><![CDATA[ZNC is an IRC bouncer with some pretty nice features. For a number of reasons I wanted to move my ircing from home to a shell, so I decided to give ZNC a try. ZNC isn&#8217;t in ports, but compiles fine using gmake. The only problem I encountered was getting it set up to work [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.znc.in">ZNC</a> is an IRC bouncer with some pretty nice features. For a number of reasons I wanted to move my ircing from home to a shell, so I decided to give ZNC a try. ZNC isn&#8217;t in ports, but compiles fine using <code>gmake</code>.</p>

<p>The only problem I encountered was getting it set up to work with multiple networks in irssi. Configuring ZNC itself to put me on many networks was easy enough, and when I connected irssi to it for each network using <code>/connect</code> it worked fine. Using <code>/server add</code> to set up irssi&#8217;s server list didn&#8217;t work out so well.</p>

<p>Every time I tried to add another server (for connecting to another network), irssi would remove the first one. This is because irssi only considers a server&#8217;s hostname and port when trying to work out if it&#8217;s unique. When I added another server which differed from the first only by password and associated network, irssi assumed I was updating the existing one and changed it. Putting the required entries in irssi&#8217;s config by hand also didn&#8217;t work.</p>

<p>The solution was easy enough; one ZNC instance can listen on multiple ports, so I got it to listen on a selection of ports using multiple <code>Listen</code> directives in its config file, and then added each network&#8217;s server to irssi using a different port number.</p>

<p>Now I can take advantage of cool things like buffer replay and detaching from channels. Sorry, irssi-proxy &#8211; you don&#8217;t quite cut it now :)</p>
]]></content:encoded>
			<wfw:commentRss>http://jamesoff.net/site/2008/02/21/irssi-and-znc/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>GuardChan now bans</title>
		<link>http://jamesoff.net/site/2008/02/17/guardchan-now-bans/</link>
		<comments>http://jamesoff.net/site/2008/02/17/guardchan-now-bans/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 23:31:55 +0000</pubDate>
		<dc:creator>jamesoff</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[eggdrop]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://jamesoff.net/site/2008/02/17/guardchan-now-bans/</guid>
		<description><![CDATA[After a user request on IRC, my guardchan script can now actually ban as well as kicking when it detects an unauthorised user joining the channel. (The page for the script incorrectly said that it kickbanned already, but that was an error due to me writing the script about a thousand years ago.) Hope it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>After a user request on IRC, my <a href="/site/code/eggdrop-scripts/guardchan">guardchan</a> script can now actually ban as well as kicking when it detects an unauthorised user joining the channel.</p>

<p>(The page for the script incorrectly said that it kickbanned already, but that was an error due to me writing the script about a thousand years ago.)</p>

<p>Hope it&#8217;s of some use :)</p>
]]></content:encoded>
			<wfw:commentRss>http://jamesoff.net/site/2008/02/17/guardchan-now-bans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
