<?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"
	>

<channel>
	<title>Monotonous.org</title>
	<atom:link href="http://monotonous.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://monotonous.org</link>
	<description>Eitan's Pitch</description>
	<pubDate>Sat, 05 Jul 2008 20:13:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Introducing Pyia</title>
		<link>http://monotonous.org/2008/07/01/introducing-pyia/</link>
		<comments>http://monotonous.org/2008/07/01/introducing-pyia/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 17:14:59 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=77</guid>
		<description><![CDATA[Last week I was doing my best to dive into the wonderful world of Windows accessibility. So to flatten the curve, I decided to take shot at making a lightweight Python MSAA client library, Pyia.
It is heavily inspired by pyatspi&#8217;s class mixins. pyOrbit made it very easy to do this in pyatspi, making CORBA friendly [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I was doing my best to dive into the wonderful world of Windows accessibility. So to flatten the curve, I decided to take shot at making a lightweight Python MSAA client library, Pyia.</p>
<p>It is heavily inspired by <a title="Pyatspi wiki page" href="http://live.gnome.org/GAP/PythonATSPI">pyatspi</a>&#8217;s class mixins. pyOrbit made it very easy to do this in pyatspi, making CORBA friendly and Pythonic. <a title="Comtypes sourceforge page" href="http://sourceforge.net/projects/comtypes/">Comtypes</a>, does the same in Windows, making COM cool as a cucumber.</p>
<p>Accessible objects emulate containers for easy access to children nodes. Also notice a few convienient methods, like getDesktop which returns the desktop client. Also getStateName will return a human readable list of states rather than a bitmask.</p>

<div class="wp_syntax"><div class="code"><pre class="python"><span style="color: #66cc66;">&gt;&gt;&gt;</span> <span style="color: #ff7700;font-weight:bold;">import</span> pyia
<span style="color: #66cc66;">&gt;&gt;&gt;</span> desktop = pyia.<span style="color: black;">getDesktop</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
<span style="color: #66cc66;">&gt;&gt;&gt;</span> <span style="color: #ff7700;font-weight:bold;">for</span> window <span style="color: #ff7700;font-weight:bold;">in</span> desktop:
        <span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #ff7700;font-weight:bold;">not</span> window.<span style="color: black;">accState</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#41;</span> <span style="color: #66cc66;">&amp;</span>amp<span style="color: #66cc66;">;</span> \
          pyia.<span style="color: black;">STATE_SYSTEM_INVISIBLE</span>:
          <span style="color: #ff7700;font-weight:bold;">print</span> window
&nbsp;
<span style="color: black;">&#91;</span>window | <span style="color: black;">&#93;</span>
<span style="color: black;">&#91;</span>window | Python Shell<span style="color: black;">&#93;</span>
<span style="color: black;">&#91;</span>window | Mozilla Firefox Start Page - Mozilla Firefox<span style="color: black;">&#93;</span>
<span style="color: black;">&#91;</span>window | Program Manager<span style="color: black;">&#93;</span>
&nbsp;
<span style="color: #66cc66;">&gt;&gt;&gt;</span> desktop<span style="color: black;">&#91;</span><span style="color: #ff4500;">14</span><span style="color: black;">&#93;</span>.<span style="color: black;">accStateName</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
u<span style="color: #483d8b;">'unavailable invisible'</span></pre></div></div>

<p>This might be a bad idea, but I added some AT-SPI concepts, for example a registry, where you connect event callbacks. Also, events are wrapped in structures with a &#8220;source&#8221; field that is a reference to the accessible that is responsible for the event. There is no extra wire traffic because the reference is not retrieved until the source field is either explicitly called, or the event is printed (converted to a string).</p>

<div class="wp_syntax"><div class="code"><pre class="python"><span style="color: #66cc66;">&gt;&gt;&gt;</span> <span style="color: #ff7700;font-weight:bold;">import</span> pyia
<span style="color: #66cc66;">&gt;&gt;&gt;</span> <span style="color: #ff7700;font-weight:bold;">def</span> event_cb<span style="color: black;">&#40;</span>event<span style="color: black;">&#41;</span>:
        <span style="color: #ff7700;font-weight:bold;">print</span> event
&nbsp;
<span style="color: #66cc66;">&gt;&gt;&gt;</span> pyia.<span style="color: black;">Registry</span>.<span style="color: black;">registerEventListener</span><span style="color: black;">&#40;</span>
        event_cb, pyia.<span style="color: black;">EVENT_OBJECT_FOCUS</span><span style="color: black;">&#41;</span>
<span style="color: #66cc66;">&gt;&gt;&gt;</span> pyia.<span style="color: black;">Registry</span>.<span style="color: black;">start</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
gainFocus
        source: <span style="color: black;">&#91;</span>client | Mozilla Firefox Start Page - Mozilla Firefox<span style="color: black;">&#93;</span>
        window: <span style="color: #ff4500;">524618</span>
        <span style="color: #dc143c;">thread</span>: <span style="color: #ff4500;">568</span>
        tstamp: <span style="color: #ff4500;">14692927</span>
gainFocus
        source: <span style="color: black;">&#91;</span>client | Python Shell<span style="color: black;">&#93;</span>
        window: <span style="color: #ff4500;">1573178</span>
        <span style="color: #dc143c;">thread</span>: <span style="color: #ff4500;">352</span>
        tstamp: <span style="color: #ff4500;">14694599</span>
<span style="color: #66cc66;">&gt;&gt;&gt;</span></pre></div></div>

<p>You could try this stuff out by checking it out from <a title="Pyia tree on Github" href="http://github.com/eeejay/pyia/tree/master">Github</a>.<br />
If that is too much overhead, here is a <a title="Pyia executable installer" href="http://www.gnome.org/~eitani/win32/pyia-0.0.1.win32.exe">binary Windows installer</a>.</p>
<p>You will need the comtypes Python module.</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/07/01/introducing-pyia/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sahlab</title>
		<link>http://monotonous.org/2008/06/18/sahlab/</link>
		<comments>http://monotonous.org/2008/06/18/sahlab/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 19:50:42 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=76</guid>
		<description><![CDATA[I used to love sahlab from a mix when I was in Israel. Unfortunately, I didn&#8217;t know how to make it until recently. If you are going to be in Istanbul this summer, you will probably get the real stuff. Oh, how I envy you.


Half a liter of milk.
3 tbs. of corn starch.
2 tbs. sugar.
1 [...]]]></description>
			<content:encoded><![CDATA[<p>I used to love <a title="Wikipedia section about sahlab" href="http://en.wikipedia.org/wiki/Salep#Beverage">sahlab</a> from a mix when I was in Israel. Unfortunately, I didn&#8217;t know how to make it until recently. If you are going to be in <a href="http://www.guadec.org">Istanbul this summer</a>, you will probably get the real stuff. Oh, how I envy you.<br />
<a href="http://flickr.com/photos/mostlypictures/2590859322/"><img style="margin-top: 5px; margin-bottom: 5px;" src="http://farm4.static.flickr.com/3022/2590859322_356a8f5d04_d.jpg " alt="A cup of sahleb" width="333" height="500" /></a></p>
<ul>
<li>Half a liter of milk.</li>
<li>3 tbs. of corn starch.</li>
<li>2 tbs. sugar.</li>
<li>1 tbs. orange flower or rose water.</li>
</ul>
<p>Pour milk in saucepan, leaving about a third of a cup out. Use the remaining milk to emulsify the corn starch. Boil the milk in the saucepan with the lid on. When the milk comes to a boil, add the emulsified corn starch, sugar and flower water. Continue stirring on a medium flame until the milk thickens.</p>
<p>Pour in to cups and garnish with crushed nuts and cinamon.</p>
<p><img class="alignleft" style="float: left; margin-right: 15px;" src="http://farm4.static.flickr.com/3284/2590151067_1c0ecffc2c_m_d.jpg" alt="Orange flower water bottle" width="160" height="240" />The flavor that I am familiar with comes from &#8220;mey zahar&#8221;, orange flower water, I was surprised to find this stuff in QFC in the cocktail mixer section.</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/06/18/sahlab/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I *heart* Translators</title>
		<link>http://monotonous.org/2008/06/12/i-heart-translators/</link>
		<comments>http://monotonous.org/2008/06/12/i-heart-translators/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 01:15:03 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=75</guid>
		<description><![CDATA[I know that I am supposed to be all gratuitous and all when it comes to translators who do a thankless job, and improve software by orders of magnitude to make them accessible to many locales. I usually am very thankful.
In the past month I have briefly turned my back Accerciser trunk, and in that [...]]]></description>
			<content:encoded><![CDATA[<p>I know that I am supposed to be all gratuitous and all when it comes to translators who do a thankless job, and improve software by orders of magnitude to make them accessible to many locales. I usually am very thankful.</p>
<p>In the past month I have briefly turned my back Accerciser trunk, and in that time some cuddly translator managed to bugger it not once, but twice.</p>
<p>Once when someone uncommented a comment in the LINGUAS file, which resulted in an unconfigurable tree. Another time when someone changed a *.po file to have executable permissions. This was more annoying, since there is some script there in s.g.o&#8217;s guts that rejects any commit if the repo has an executable. Now you know me, I never look at the output message after I commit to SVN, especially now since I am doing it through git. Result: all my commits to Accerciser in the last month have been rejected, and I never realized it.</p>
<p>I know what you all are thinking:</p>
<ol>
<li>Why don&#8217;t you just look into the Subversion history, and see who is messing with you? Well, I prefer to remain ignorant, and make sweeping accusations - I am bored.</li>
<li>How in hell did an executable po file get into the repo in the first place? I don&#8217;t know, and searching for the answer might lead me to the answer of the first question, so I won&#8217;t bother.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/06/12/i-heart-translators/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Orca Doings</title>
		<link>http://monotonous.org/2008/05/16/orca-doings/</link>
		<comments>http://monotonous.org/2008/05/16/orca-doings/#comments</comments>
		<pubDate>Fri, 16 May 2008 19:14:45 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=73</guid>
		<description><![CDATA[This last couple of months has been characterized by random bursts of productivity. After I reached all of the deliverables from my last Mozilla Foundation grant, I decided to give it another liberal reinterpretation, and have just been picking up different bits and pieces of Orca, and found stuff that interested me to work on.
Contracted [...]]]></description>
			<content:encoded><![CDATA[<p>This last couple of months has been characterized by random bursts of productivity. After I reached all of the deliverables from my last Mozilla Foundation grant, I decided to give it another liberal reinterpretation, and have just been picking up different bits and pieces of Orca, and found stuff that interested me to work on.</p>
<h4>Contracted Braille</h4>
<p>This work has mostly been completed in early march. Since we are depending on an external library, liblouis, one of the most important tasks was to get liblouis into a shape that could allow it to be shipped in major distros. All sorts of distros arose, from packaging to licensing. Luckily, John Boyer has been extremely helpful, and thanks to the ViewPlus folks, we were able to get liblouis re-licensed as LGPL 3. I am maintaining liblouis and liblouisxml &#8220;forks&#8221; that are autotooled and easy to install and package for distributions. Hopefully the main development and releases will be on these autotooled versions, making users lives easier, and getting distributions to package it.</p>
<h4>Firefox Braille Support</h4>
<p>When I was working on the contracted braille bit, I noticed that cursor routing was not yet implemented in our Firefox support. I got basic braille display cursor routing support to work in Firefox, and also link following support. A braille display user does not have to take her fingers off the braille display to surf the web. This is neat.</p>
<h4>Mouse Review</h4>
<p>When I was playing with a friend&#8217;s Wii, I noticed how cool and easy it is to point and click with the controller to type in your name on an on-screen keyboard from across the room. It was easy because of the &#8220;resistance&#8221; the controller&#8217;s motor emitted. This made me think of how we could apply that in Orca: with one of those vibrating gaming mice, and with speaking the current component we could allow low-vision (maybe even blind?) users get a better picture of the graphical interface, and allow folks to use the mouse for those tasks that have no keyboard access. I thought I deserved a Nobel prize.</p>
<p>When I got to CSUN, I discovered that this is actually not a new idea at all. Some products already do that. Even NVDA does it by default. Mike said it would be a useful feature, so I hacked away during CSUN, and had something to show in the final days. Mouse review mode is available in development versions of Orca today, and will be in our 2.24 release.</p>
<h4>Script Support Refactor</h4>
<p>One of the stuff that I have been thinking about since I got involved in Orca is how do we add support for non-application customizations. For example, today it is possible for core or third party developers to extend Orca and override the default behavior and allow better access for specific applications like Evolution. We needed a way to support similar scripts, but for web applications like GMail too. When I took a look at how the source tree looked, I realized that there is an opportunity for a refactor. Last July just before GUADEC I got so excited about refactoring Orca&#8217;s codebase, that I even drew up pretty UML diagrams and attached them to a bug report. I met Willie Walker for the first time in GUADEC. He apologized for dousing my enthusiasm, but there were bigger tasks at the time than large-scale cleanups. Before CSUN we re-targeted web application scripting as a certain priority, and my refactor ideas were finally heard! The entire team stayed supportive and kept an open mind while I spliced files and created a lot of new directories. The diagram below is the UML I made last year.</p>
<p><a href="http://monotonous.org/wp-content/uploads/2008/05/scripts_proposal.png"><img class="alignnone size-full wp-image-74" title="July 2007 Refactor Proposal" src="http://monotonous.org/wp-content/uploads/2008/05/scripts_proposal.png" alt="This is a UML diagram that I sketched up last year." width="450" height="624" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/05/16/orca-doings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twinkle And Twitter</title>
		<link>http://monotonous.org/2008/04/30/twinkle-and-twitter/</link>
		<comments>http://monotonous.org/2008/04/30/twinkle-and-twitter/#comments</comments>
		<pubDate>Thu, 01 May 2008 06:09:47 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[twinkle]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=72</guid>
		<description><![CDATA[About a week back I downloaded an app for my iPhone called Twinkle. It&#8217;s a Twitter client with two catches: It allows you to geotag posts, and it allows you to take attach photo snaphots of whatever it is you are doing. Both of these features make Twinkle a real great toy. It is a [...]]]></description>
			<content:encoded><![CDATA[<p>About a week back I downloaded an app for my iPhone called Twinkle. It&#8217;s a Twitter client with two catches: It allows you to geotag posts, and it allows you to take attach photo snaphots of whatever it is you are doing. Both of these features make Twinkle a real great toy. It is a lot of fun browsing the twitters within a one mile radius, and trying to make out from the photos where the picture was taken. It really puts a whole new dimension to social networking.</p>
<p>The downside is that there is no way to relay this experience to non-iPhone users. So I made a few Yahoo pipes that mash up the photo with the proper twitters. This is my <a title="Twinkle RSS feed" href="http://pipes.yahoo.com/pipes/pipe.run?_id=67c7356101ecda7e4c351a810ee6dea8&amp;_render=rss&amp;img_height=480&amp;img_width=320&amp;twitter_name=eeejay">personal feed</a>.</p>
<p>You could create new feeds from my <a title="My Yahoo Pipes" href="http://pipes.yahoo.com/eeejays_pipes">pipes page</a>.</p>
<p><script src="http://pipes.yahoo.com/js/listbadge.js">{"pipe_id":"67c7356101ecda7e4c351a810ee6dea8","_btype":"list","pipe_params":{"twitter_name":"eeejay","img_width":"320","img_height":"480"}}</script></p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/04/30/twinkle-and-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Names And Faces</title>
		<link>http://monotonous.org/2008/04/28/names-and-faces/</link>
		<comments>http://monotonous.org/2008/04/28/names-and-faces/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 00:01:44 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://monotonous.org/?p=71</guid>
		<description><![CDATA[It used to be that when you used the Planet GNOME feed, you would get the faces and and names of the folks who were posting. For some reason this hasn&#8217;t been the case lately. Sometimes I see posts with no author names at all, and I have to click through to see who&#8217;s post [...]]]></description>
			<content:encoded><![CDATA[<p>It used to be that when you used the <a href="http://planet.gnome.org">Planet GNOME</a> feed, you would get the faces and and names of the folks who were posting. For some reason this hasn&#8217;t been the case lately. Sometimes I see posts with no author names at all, and I have to click through to see who&#8217;s post it is.</p>
<p>This is unfortunate, because I rarely remember names, but I always remember faces. And there are a bunch of faces on the planet that I love reading.</p>
<p>Does anyone know why the hakergotchi and author names dissapeared from the Atom and RSS2 feeds?</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/04/28/names-and-faces/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Manischewitz For You!</title>
		<link>http://monotonous.org/2008/04/05/no-manischewitz-for-you/</link>
		<comments>http://monotonous.org/2008/04/05/no-manischewitz-for-you/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 03:13:59 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://monotonous.org/2008/04/05/no-manischewitz-for-you/</guid>
		<description><![CDATA[I spent some time today going over some details for a Passover Seder that I am helping to organize. I needed to know how much wine is in a standard Manischewitz bottle.

The internet is mainly safe for children, as long as you keep them away from porn and information about Manischewitz.
I hope schools have updated [...]]]></description>
			<content:encoded><![CDATA[<p>I spent some time today going over some details for a <a href="http://en.wikipedia.org/wiki/Passover_Seder">Passover Seder </a>that I am helping to organize. I needed to know how much wine is in a standard Manischewitz bottle.</p>
<p><img src="http://monotonous.org/wp-content/uploads/2008/04/screenshot.png" alt="Manischewitz age verification" /></p>
<p>The internet is mainly safe for children, as long as you keep them away from porn and information about Manischewitz.</p>
<p>I hope schools have updated their blaklisted sites on their web proxies.</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/04/05/no-manischewitz-for-you/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Danny Boy</title>
		<link>http://monotonous.org/2008/03/17/danny-boy/</link>
		<comments>http://monotonous.org/2008/03/17/danny-boy/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 22:07:42 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://monotonous.org/2008/03/17/danny-boy/</guid>
		<description><![CDATA[BoingBoing today posted a link to one of my favorite Muppet clips of all time. I even saved it on my laptop a while back so I could watch it frequently. Here is a direct link.
Happy Ireland Day.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.boingboing.net" title="BoingBoing">BoingBoing</a> today <a href="http://www.boingboing.net/2008/03/17/muppet-danny-boy-per.html" title="BoingBoing: Muppet Danny Boy performed by Beaker, Swedish Chef and Animal ">posted a link</a> to one of my favorite Muppet clips of all time. I even saved it on my laptop a while back so I could watch it frequently. Here is a <a href="http://www.youtube.com/watch?v=OCbuRA_D3KU" title="Muppets sing Danny Boy">direct link</a>.</p>
<p>Happy Ireland Day.</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/03/17/danny-boy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSUN Fun</title>
		<link>http://monotonous.org/2008/03/14/csun-fun/</link>
		<comments>http://monotonous.org/2008/03/14/csun-fun/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 19:39:44 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://monotonous.org/2008/03/14/csun-fun/</guid>
		<description><![CDATA[I spent most of this week at CSUN. It&#8217;s been fun, I am really happy to finally meet a bunch of people, and to meet new folks. Manning the Mozilla booth is easy: every passerby is a grateful user. A lot of subdued dogs.

Update: I Made that sound like past tense. I still am at [...]]]></description>
			<content:encoded><![CDATA[<p>I spent most of this week at CSUN. It&#8217;s been fun, I am really happy to finally meet a bunch of people, and to meet new folks. Manning the Mozilla booth is easy: every passerby is a grateful user. A lot of subdued dogs.</p>
<p><img title="A companion dog taking a rest" src="http://farm4.static.flickr.com/3142/2333700886_d83cb00de3_m.jpg" alt="A companion dog taking a rest" width="240" height="160" /></p>
<p><strong>Update:</strong> I Made that sound like past tense. I still am at CSUN, and I will be here till tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/03/14/csun-fun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accerciser: The First GNOME Module</title>
		<link>http://monotonous.org/2008/03/10/accerciser-the-first-gnome-module/</link>
		<comments>http://monotonous.org/2008/03/10/accerciser-the-first-gnome-module/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 19:02:03 +0000</pubDate>
		<dc:creator>Eitan</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://monotonous.org/2008/03/10/accerciser-the-first-gnome-module/</guid>
		<description><![CDATA[No, really. Accerciser is always listed first, not sure why. I think it has something to do with it being so good.
But seriuosly, I just rolled the tarballs for the 1.2.0 release, our second major release. You could get them here.
Besides the translation effort, which was awesome, as usual. This release saw plenty of contributions, [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: left; margin-right: 5px" src="http://monotonous.org/wp-content/uploads/2008/03/accerciser.png" alt="accerciser.png" />No, really. Accerciser is always listed first, not sure why. I think it has something to do with it being so good.</p>
<p>But seriuosly, I just rolled the tarballs for the 1.2.0 release, our second major release. You could get them <a title="Download Accerciser" href="http://ftp.gnome.org/pub/GNOME/sources/accerciser/1.2/">here</a>.</p>
<p>Besides the translation effort, which was awesome, as usual. This release saw plenty of contributions, here is an incomplete list of helpful folks, thank you!</p>
<ul>
<li>Brian G. Merrell</li>
<li>Claude Paroz</li>
<li>Frederic Peters</li>
<li>Peter Parente</li>
<li>Rich Burridge</li>
<li>Scott Haeger</li>
<li>Wouter Bolsterlee</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://monotonous.org/2008/03/10/accerciser-the-first-gnome-module/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
