<?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>Be the signal &#187; wget</title>
	<atom:link href="http://bethesignal.org/blog/tag/wget/feed/" rel="self" type="application/rss+xml" />
	<link>http://bethesignal.org</link>
	<description>where we&#039;re going, we don&#039;t need roads...</description>
	<lastBuildDate>Thu, 26 Jan 2012 05:52:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<atom:link rel='hub' href='http://bethesignal.org/?pushpress=hub'/>
		<item>
		<title>inbox zero status: ZERO</title>
		<link>http://bethesignal.org/blog/2008/07/23/inbox-zero-status-zero/</link>
		<comments>http://bethesignal.org/blog/2008/07/23/inbox-zero-status-zero/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 21:26:25 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[identi.ca]]></category>
		<category><![CDATA[inbox zero]]></category>
		<category><![CDATA[laconi.ca]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1097</guid>
		<description><![CDATA[After declaring inbox bankruptcy, changing the way I collect and manage my email, and tweeting a few times about my attempt to embrace the zen of Inbox Zero, I decided to automate the process, removing any potential editorialising between email &#8230; <a href="http://bethesignal.org/blog/2008/07/23/inbox-zero-status-zero/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After declaring inbox bankruptcy, changing the way I collect and manage my email, and tweeting a few times about my attempt to embrace the zen of Inbox Zero, I decided to automate the process, removing any potential editorialising between email client and <a href="http://twitter.com/jdub/statuses/865495855">reporting</a> of the project status. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' />  I&#8217;ve set it up to post at 22:00 every night.</p>
<p>Here&#8217;s the script if anyone else wants to play (it also demonstrates how to post to twitter with wget, which may be handy for other automation projects):</p>
<pre>#!/bin/sh
MB_POST="http://identi.ca/api/statuses/update.xml
  http://twitter.com/statuses/update.xml"

MB_USER=<span style="color: #800000;">state your username</span>
MB_PASS=<span style="color: #800000;">state your password</span>

IZ="$(find Maildir/cur/ Maildir/new/ -type f | wc -l)"
if [ $IZ -gt 0 ]; then
 Â IZ="$IZ"
else
 Â IZ="ZERO"
fi
IZ="inbox zero status: $IZ"

for MB_HTTP in $MB_POST; do
  wget -qO- --delete-after \
    --user="$MB_USER" --password="$MB_PASS" \
    --post-data "status=$IZ" $MB_HTTP &gt; /dev/null
done</pre>
<p><strong>Update:</strong> Fixed script to use any Twitter-style microblog API, and included example URL from <a href="http://identi.ca/">identi.ca</a>. Go freedom!</p>
<p><strong>Update:</strong> Even better, just post to all of them at once! Also fixed anchor&#8230; Despite switching to the visual editor weeks ago, I&#8217;m still not 100% used to the convenience of it. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/07/23/inbox-zero-status-zero/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

