<?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>gloob @ devlog</title>
	<atom:link href="http://www.litio.org/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.litio.org/wp</link>
	<description>one Map/Reduce to rule them all</description>
	<lastBuildDate>Sun, 22 Jan 2012 14:59:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Rasberry Pi</title>
		<link>http://www.litio.org/wp/2012/01/22/rasberry-pi/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rasberry-pi</link>
		<comments>http://www.litio.org/wp/2012/01/22/rasberry-pi/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 14:59:18 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=352</guid>
		<description><![CDATA[Waiting anxiously for the Rasberry Pi, an ARM GNU/Linux box for $25! Kernel sources are at github now https://github.com/raspberrypi/linux More info at http://www.raspberrypi.org/]]></description>
			<content:encoded><![CDATA[<p>Waiting anxiously for the Rasberry Pi, an ARM GNU/Linux box for $25!<br />
<img alt="" src="http://www.omicrono.com/wp-content/uploads/2012/01/raspberry-pi-esquema.png" title="Rasberry Pi schematics" />Kernel sources are at github now <a href="https://github.com/raspberrypi/linux">https://github.com/raspberrypi/linux</a></p>
<p>More info at <a href="http://www.raspberrypi.org/">http://www.raspberrypi.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2012/01/22/rasberry-pi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Spice</title>
		<link>http://www.litio.org/wp/2011/10/11/testing-spice/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-spice</link>
		<comments>http://www.litio.org/wp/2011/10/11/testing-spice/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 10:58:48 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=322</guid>
		<description><![CDATA[Spice is a new and promising protocol for interaction with virtualized desktop devices. Recipe to install it #!/bin/sh set -x SPICE_VERSION="master" SPICE_VERSION="0.8" sudo apt-get install git libtool autotools-dev autoconf automake g++ sudo apt-get install libdirectfb-dev sudo apt-get install liblog4cpp5-dev libavcodec-dev &#8230; <a href="http://www.litio.org/wp/2011/10/11/testing-spice/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img alt="Virtual Reality" src="http://www.sciencephoto.com/image/351461/530wm/T4900091-Researcher_wearing_Virtual_Reality_headset-SPL.jpg" title="NASA researcher wearing the Virtual Interactive Environment Workstation " class="alignleft" width="530" height="409" /></p>
<p><a href="http://spice-space.org/" title="Spice">Spice</a> is a new and promising protocol for interaction with virtualized desktop devices.</p>
<p>Recipe to install it</p>
<p><code><br />
#!/bin/sh<br />
set -x</p>
<p>SPICE_VERSION="master"<br />
SPICE_VERSION="0.8"</p>
<p>sudo apt-get install git libtool autotools-dev autoconf automake g++</p>
<p>sudo apt-get install libdirectfb-dev</p>
<p>sudo apt-get install liblog4cpp5-dev libavcodec-dev libssl-dev xlibmesa-glu-dev libasound-dev libpng12-dev libfreetype6-dev libfontconfig1-dev libogg-dev libxrandr-dev kvm libgcrypt-dev libsdl-dev libnss3-dev libpixman-1-dev libxfixes-dev libjpeg8-dev libsasl2-dev python-pyparsing</p>
<p>rm -f celt-0.5.1.3.tar.gz<br />
wget http://downloads.us.xiph.org/releases/celt/celt-0.5.1.3.tar.gz<br />
tar xvzf celt-0.5.1.3.tar.gz<br />
cd celt-0.5.1.3<br />
./configure<br />
make<br />
sudo make install<br />
cd ..</p>
<p>git clone git://cgit.freedesktop.org/pixman<br />
cd pixman<br />
./autogen.sh<br />
make<br />
sudo make install<br />
cd ..</p>
<p>git clone git://cgit.freedesktop.org/spice/spice-protocol<br />
cd spice-protocol<br />
git checkout $SPICE_VERSION<br />
./autogen.sh<br />
make<br />
sudo make install<br />
cd ..</p>
<p>git clone git://git.freedesktop.org/git/spice/spice<br />
cd spice<br />
git checkout $SPICE_VERSION<br />
./autogen.sh --enable-opengl<br />
make<br />
sudo make install<br />
cd ..</p>
<p>echo "export LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH}" >> ~/.bashrc<br />
source ~/.bashrc</p>
<p>git clone git://git.freedesktop.org/git/spice/qemu<br />
cd qemu<br />
git checkout spice.v42<br />
./configure --enable-spice --enable-kvm --audio-drv-list=alsa,oss --enable-system<br />
make<br />
sudo make install<br />
cd ..<br />
</code></p>
<p>And launch it</p>
<p><code><br />
#!/bin/sh<br />
/usr/local/bin/qemu-system-x86_64 -spice port=5930,disable-ticketing -drive file=./machines/debian.img,if=virtio -vga qxl -device AC97 -usbdevice tablet -m 1024 -enable-kvm -net nic,model=virtio -net user<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2011/10/11/testing-spice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME ATK and AT-SPI Hackfest 2011</title>
		<link>http://www.litio.org/wp/2011/06/09/gnome-atk-and-at-spi-hackfest-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gnome-atk-and-at-spi-hackfest-2011</link>
		<comments>http://www.litio.org/wp/2011/06/09/gnome-atk-and-at-spi-hackfest-2011/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 09:46:24 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[a11y]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Orca]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=282</guid>
		<description><![CDATA[Every year, the GNOME Accessibility Team tries to have at least one hackfest. This year we had an ATK and AT-SPI hackfest hosted by Igalia in their offices where we talked about the future of ATK and identified next goals &#8230; <a href="http://www.litio.org/wp/2011/06/09/gnome-atk-and-at-spi-hackfest-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2683/5714492286_817d6737f8_d.jpg" alt="GNOME Accessibility Team" /></p>
<p>Every year, the GNOME Accessibility Team tries to have at least one hackfest. This year we had an <a href=\"https://live.gnome.org/Hackfests/ATK2011\">ATK and AT-SPI hackfest</a> hosted by <a href=\"http://www.igalia.com/\">Igalia</a> in their offices where we talked about the future of ATK and identified next goals and actions. Thanks to my company, <a href=\"http://www.emergya.com/\">Emergya</a>, for funding my colleague Javi and me.</p>
<h2>What did we do?</h2>
<p>Check the <a href=\"https://live.gnome.org/Hackfests/ATK2011/Agenda\">agenda</a>. If you want to collaborate there are many tasks without an owner, choose yours ;-)</p>
<h2>Summaries</h2>
<ul>
<li>
Alejandro Pinheiro did an awesome summary of <a href=\"http://blogs.igalia.com/apinheiro/2011/05/09/atkat-spi2-hackfest-2011-day-1/\">day 1</a> and <a href=\"http://blogs.igalia.com/apinheiro/2011/05/13/atkat-spi2-hackfest-2011-day-5/\">day 5</a>
</li>
<li>
Li Yuan also did his own summary, <a href=\"http://blogs.gnome.org/leeyuan/2011/05/25/gnome-atk-hackfest-2011/\">here</a>
</li>
<li>
And for Spanish speaking people, Javier Hernández thus did a summary in Spanish, <a href=\"http://universo.emergya.es/espacios/jhernandez/resumen-del-atkat-spi-hackfest-2011\">here</a>
</li>
</ul>
<h2>People</h2>
<ul>
<li>The QT a11y guy, <a href=\"http://www.ethupbolt.appspot.com/labs.qt.nokia.com/2011/05/16/atk-hackfest/\">Frederik Gladhorn</a></li>
<li>The Mozilla a11y guys, <a href=\"http://blogs.gnome.org/fherrera/\">Fernando Herrera</a> and Alexander Surkov</li>
<li>Igalia guys, <a href=\"http://blogs.igalia.com/apinheiro/\">Alejandro Piñeiro</a> and <a href=\"http://blogs.igalia.com/mario/\">Mario Sánchez</a></li>
<li>Orca Team, <a href=\"http://blog.grain-of-salt.com/\">Joanmarie Diggs</a>, Javier Hernández and <a href=\"http://www.litio.org\">me</a></li>
<li>The AT-SPI wizard, <a href=\"http://mgorse.freeshell.org/\">Mike Gorse</a></li>
<li>The ATK master, <a href=\"http://blogs.gnome.org/leeyuan/\">Li Yuan</a></li>
</ul>
<p>Thanks to everyone for making an awesome community!</p>
<h2>Resources</h2>
<ul>
<li>
Some photos of the event at <a href=\"http://www.flickr.com/photos/mariosp/sets/72157626707089924/with/5714489438/\">Mario\&#8217;s flickr gallery</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2011/06/09/gnome-atk-and-at-spi-hackfest-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOSDEM 2011</title>
		<link>http://www.litio.org/wp/2011/02/14/fosdem-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fosdem-2011</link>
		<comments>http://www.litio.org/wp/2011/02/14/fosdem-2011/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:58:45 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Orca]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=249</guid>
		<description><![CDATA[This year I had the opportunity to attend one of the main open source related conferences in Europe, FOSDEM 2011. Thanks to my company, Emergya, for funding some of us to attend this event. While there, I gave a talk &#8230; <a href="http://www.litio.org/wp/2011/02/14/fosdem-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/gloob/5422511353/"><img src="http://farm6.static.flickr.com/5176/5422511353_d92f4d7365.jpg" alt="FOSDEM sign photo" /><br />
</a></p>
<p>This year I had the opportunity to attend one of the main open source related conferences in Europe, <a href="http://www.fosdem.org/2011/">FOSDEM 2011</a>. Thanks to my company, <a href="http://www.emergya.es">Emergya</a>, for funding some of us to attend this event. While there, I gave <a href=\"http://www.fosdem.org/2011/schedule/event/orca_future\">a talk</a> about Orca. You can find the talk at <a href=\"http://www.slideshare.net/emergya/orca-a-screen-reader-sailing-into-uncharted-waters\">slideshare</a> and in a more accessible format <a href=\"http://www.litio.org/tmp/fosdem-orca.txt\">here</a>. </p>
<p>What I can say about my first time at FOSDEM? Well, for a Spaniard used to drinking beer of around 4% ABV, Belgian beer of > 10% ABV is crazy :-) Aside from the parties, I really enjoyed attending FOSDEM because I met with people that I only know in the virtual world. </p>
<p>I’m also very happy to see the <a href=\"http://www.xfce.org/\">XFCE</a> developers taking accessibility seriously. Thanks to our presence in FOSDEM, we’re starting to collaborate with them and I expect to see their <a href=\"http://wiki.xfce.org/releng/4.10/roadmap/accessibility\">roadmap</a> accomplished. You guys rock! </p>
<p>As a funny aside you can watch our sunday <a href=\"http://www.flickr.com/photos/gloob/5423105350/\">hackfest</a> around the application of <a href=\"http://blogs.igalia.com/mario/\">Mario Sanchez Prada</a>, <a href=\"http://gitorious.org/webkit-watcher\">webkit watcher</a>, trying to make it read <a href=\"http://build.gnome.org\">build.gnome.org</a> :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2011/02/14/fosdem-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New mailing list for Spanish-speaking Orca users</title>
		<link>http://www.litio.org/wp/2011/02/02/new-mailing-list-for-spanish-speaking-orca-users/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-mailing-list-for-spanish-speaking-orca-users</link>
		<comments>http://www.litio.org/wp/2011/02/02/new-mailing-list-for-spanish-speaking-orca-users/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 17:07:50 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Orca]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=237</guid>
		<description><![CDATA[Puedes ver este contenido en español en mi espacio personal del universo emergya, aquí Joanmarie Diggs and I are very pleased to announce the creation of the orca-es-list, an official GNOME list for Spanish speaking users of the Orca screen &#8230; <a href="http://www.litio.org/wp/2011/02/02/new-mailing-list-for-spanish-speaking-orca-users/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Puedes ver este contenido en español en mi espacio personal del universo emergya, <a href=\"http://universo.emergya.es/espacios/aleiva/nueva-lista-de-correo-de-orca-en-espa%C3%B1ol\">aquí</a></p>
<p><a href=\"http://blog.grain-of-salt.com/\">Joanmarie Diggs</a> and I are very pleased to announce the creation of the orca-es-list, an official GNOME list for Spanish speaking users of the <a href=\"http://live.gnome.org/Orca\">Orca screen reader</a>. </p>
<p>Providing ways for non-English speakers to get more involved in the Orca community has been a long-time goal of the Orca team &#8212; and up until recently, an unachievable one. Now, thanks to the support of the <a href=\"http://www.consorciofernandodelosrios.es/\">Consorcio Fernando de los Ríos</a>, the continued involvement of developers from Emergya, and the willingness of existing Spanish-speaking Orca users to contribute their time and knowledge, the team is able to support such as list.</p>
<p>To subscribe, fill out the form available here: <a href=\"https://mail.gnome.org/mailman/listinfo/orca-es-list\">https://mail.gnome.org/mailman/listinfo/orca-es-list</a></p>
<p>We are grateful to everyone who has made this new list possible, including <a href=\"http://www.gnome.org/\">GNOME</a> for providing the infrastructure through which to host it. And we look forward to seeing you on orca-es-list!</p>
<p>This list will be moderated by <a href=\"http://www.tiflolinux.org/\">Javier Dorado</a> a great user and hacker of Orca.</p>
<p>Enjoy!</p>
<p>Announced in the official orca mailing list: <a href=\"http://mail.gnome.org/archives/orca-list/2011-February/msg00012.html\">http://mail.gnome.org/archives/orca-list/2011-February/msg00012.html</a></p>
<p>Special thanks for their support and work for the creation of this list to <a href=\"http://blogs.gnome.org/juanje/\">Juanje Ojeda</a> and <a href=\"http://fontanon.org\">J. Félix Ontañón</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2011/02/02/new-mailing-list-for-spanish-speaking-orca-users/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Talk: Turning local need into global solutions: Guadalinfo accessible</title>
		<link>http://www.litio.org/wp/2010/11/29/talk-turning-local-need-into-global-solutions-guadalinfo-accessible/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=talk-turning-local-need-into-global-solutions-guadalinfo-accessible</link>
		<comments>http://www.litio.org/wp/2010/11/29/talk-turning-local-need-into-global-solutions-guadalinfo-accessible/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 15:07:14 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Orca]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=224</guid>
		<description><![CDATA[At the The 1st AEGIS International Conference, J. Félix Ontañón and I had the opportunity to give a presentation about Emergya’s work on the Guadalinfo Accessible project. This project, funded by the Consorcio Fernando de los Rios, is one of &#8230; <a href="http://www.litio.org/wp/2010/11/29/talk-turning-local-need-into-global-solutions-guadalinfo-accessible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At the The <a href=\"http://www.aegis-conference.eu/\">1st AEGIS International Conference</a>, <a href=\"http://fontanon.org/\">J. Félix Ontañón</a> and I had the opportunity to give a presentation about <a href=\"http://www.emergya.es\">Emergya’s</a> work on the <a href=\"http://live.gnome.org/Guadalinfo_accesible\">Guadalinfo Accessible project</a>. This project, funded by the Consorcio Fernando de los Rios, is one of the first projects I became involved with since joining <a href=\"http://www.emergya.es\">Emergya</a>. And I’m very happy with, and proud of, the work of my colleagues.</p>
<p>Through Guadalinfo Accessible, I became acquainted with the variety of assistive technology solutions used by people who are blind or visually impaired, including <a href=\"http://live.gnome.org/Orca\">Orca</a>, the screen reader of the GNOME desktop. I also had the chance to meet a number of the GNOME Accessibility Team members and developers like <a href=\"http://blogs.igalia.com/apinheiro/\">Alejandro Piñeiro</a> and <a href=\"http://www.joaquimrocha.com/\">Joaquim Rocha</a> (from Igalia), <a href=\"http://blog.grain-of-salt.com/\">Joanmarie Diggs</a> (Orca maintainer) and <a href=\"http://tiflolinux.org/\">Javier Dorado</a> among others.</p>
<p>Thanks to this project, I have been contributing to the GNOME a11y community, especially <a href=\"http://live.gnome.org/Orca\">Orca</a>, in my spare-time and some of my work-time. I expect to stay hacking and pushing in that community for a long time! :-)</p>
<p>You can read the slides here: <a href=\"http://www.slideshare.net/aegisproject/2-5392909\">http://www.slideshare.net/aegisproject/2-5392909</a></p>
<p>A really nice and interesting project to help bridge the digital divide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/11/29/talk-turning-local-need-into-global-solutions-guadalinfo-accessible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME Boston Summit 2010 (I)</title>
		<link>http://www.litio.org/wp/2010/11/03/gnome-boston-summit-2010-i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gnome-boston-summit-2010-i</link>
		<comments>http://www.litio.org/wp/2010/11/03/gnome-boston-summit-2010-i/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 10:49:22 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Orca]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=176</guid>
		<description><![CDATA[In a few days I\&#8217;ll start my trip to Boston to attend the Boston Summit 2010. I\&#8217;m very happy to have this opportunity to work face-to-face with my fellow GNOME hackers. What is Boston Summit? The Boston Summit is a &#8230; <a href="http://www.litio.org/wp/2010/11/03/gnome-boston-summit-2010-i/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In a few days I\&#8217;ll start my trip to Boston to attend the <a href=\"http://live.gnome.org/Boston2010\">Boston Summit 2010</a>. I\&#8217;m very happy to have this opportunity to work face-to-face with my fellow GNOME hackers.</p>
<p>What is Boston Summit? The <a href=\"http://live.gnome.org/Boston2010\">Boston Summit</a> is a three-day hackfest for GNOME developers and contributors.</p>
<p>As Orca co-maintainer we have tons of work to do in Boston! Anyway I expect to have some beer too :-)</p>
<p>I want to thank all the GNOME a11y team for being a very friendly gang and especially to the other part of the Orca Team,<a href=\"http://blog.grain-of-salt.com/\"> Joanmarie Diggs</a> for all the help in my venturing into Orca as maintainer and developer in all the GNOME a11y stack. Also to my company <a href=\"http://www.emergya.es/\">Emergya</a> for pushing me to do these crazy things and to the GNOME Foundation making this trip possible.</p>
<p><a href="http://www.litio.org/wp/wp-content/sponsored-badge-shadow.png"><img src="http://www.litio.org/wp/wp-content/sponsored-badge-shadow.png" alt="Sponsored Badge" title="sponsored-badge-shadow" width="230" height="230" class="aligncenter size-full wp-image-179" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/11/03/gnome-boston-summit-2010-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing Orca</title>
		<link>http://www.litio.org/wp/2010/08/01/testing-orca/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-orca</link>
		<comments>http://www.litio.org/wp/2010/08/01/testing-orca/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 19:09:26 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=165</guid>
		<description><![CDATA[How to test Orca Prerequisites: orca master: git clone git://git.gnome.org/orca orca accerciser master: git clone git://git.gnome.org/accerciser (Impressive tool for AT) gtk2-examples: (probably) sudo apt-get install gtk2.0-examples Run! cd ./test/harness (in orca root) ./runall.sh -a ../keystrokes/gtk-demo/ > ~/gtk-demo.out 2>&#038;1]]></description>
			<content:encoded><![CDATA[<p>How to test Orca</p>
<p>Prerequisites:</p>
<ul>
<li>orca master: <code>git clone git://git.gnome.org/orca orca</code></li>
<li>accerciser master: <code>git clone git://git.gnome.org/accerciser</code> (Impressive tool for AT)</li>
<li>gtk2-examples: (probably) sudo apt-get install gtk2.0-examples</li>
</ul>
<p>Run!<br />
<code><br />
cd ./test/harness (in orca root)<br />
./runall.sh -a ../keystrokes/gtk-demo/ > ~/gtk-demo.out 2>&#038;1<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/08/01/testing-orca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling GTK on osx (with jhbuild)</title>
		<link>http://www.litio.org/wp/2010/05/27/compiling-gtk-on-osx-with-jhbuild/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=compiling-gtk-on-osx-with-jhbuild</link>
		<comments>http://www.litio.org/wp/2010/05/27/compiling-gtk-on-osx-with-jhbuild/#comments</comments>
		<pubDate>Thu, 27 May 2010 18:25:15 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=161</guid>
		<description><![CDATA[deactivate macports! if (10.6) add to ~/.jhbuildrc-custom setup_sdk(\&#8221;10.6\&#8221;, \&#8221;10.6\&#8221;, [\"i386\"]) and build it $ jhbuild bootstrap $ jhbuild build gettext-fw $ jhbuild build meta-gtk-osx-bootstrap $ jhbuild build meta-gtk-osx-core Note: You can do a main bootstrap with &#8211;ignore-system flag but the &#8230; <a href="http://www.litio.org/wp/2010/05/27/compiling-gtk-on-osx-with-jhbuild/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>deactivate macports!</p>
<p>if (10.6)<br />
add to ~/.jhbuildrc-custom<br />
<em>setup_sdk(\&#8221;10.6\&#8221;, \&#8221;10.6\&#8221;, [\"i386\"])</em></p>
<p>and build it</p>
<p><code><br />
$ jhbuild bootstrap<br />
$ jhbuild build gettext-fw<br />
$ jhbuild build meta-gtk-osx-bootstrap<br />
$ jhbuild build meta-gtk-osx-core<br />
</code></p>
<p>Note: You can do a main bootstrap with &#8211;ignore-system flag but the compiled gettext version won\&#8217;t work. You need to do a build gettext-fw (until someone merge this)</p>
<p>Would be nice to have 64bits support!</p>
<p>Interesting links<br />
<a href=\"http://sourceforge.net/apps/trac/gtk-osx/wiki/Build\">http://sourceforge.net/apps/trac/gtk-osx/wiki/Build</a><br />
<a href=\"http://sourceforge.net/apps/trac/gtk-osx/wiki/SnowLeopard\">http://sourceforge.net/apps/trac/gtk-osx/wiki/SnowLeopard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/05/27/compiling-gtk-on-osx-with-jhbuild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New term coined: Hybrid posting</title>
		<link>http://www.litio.org/wp/2010/04/29/new-term-hybrid-posting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-term-hybrid-posting</link>
		<comments>http://www.litio.org/wp/2010/04/29/new-term-hybrid-posting/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 19:59:03 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=134</guid>
		<description><![CDATA[Abstract hybrid posting: use top posting to mark a leaf on the conversation thread, use bottom posting to receive a response. Interleaved style: an extension of hybrid posting. Some examples Hybrid posting From: god@heaven.org To: gloob@litio.org Subject: start thread Will &#8230; <a href="http://www.litio.org/wp/2010/04/29/new-term-hybrid-posting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Abstract</h2>
<p><strong>hybrid posting</strong>: use top posting to mark a leaf on the conversation thread, use bottom posting to receive a response.</p>
<p><strong><a href=\"http://en.wikipedia.org/wiki/Posting_style#Interleaved_style\">Interleaved style</a></strong>: an extension of hybrid posting. </p>
<h2>Some examples</h2>
<h3>Hybrid posting</h3>
<p><code><br />
From: god@heaven.org<br />
To: gloob@litio.org<br />
Subject: start thread</p>
<p>Will you have bought a new car before summer?</p>
<p>I was thinking in buy a toyoya \"hybrid\" prius.<br />
</code></p>
<h3>case A: Use top posting to mark a leaf on the conversation thread</h3>
<p><code><br />
From: gloob@litio.org<br />
To: god@heaven.org<br />
Subject: RE: start thread</p>
<p>i don\'t think so.</p>
<p>> Will you have bought a new car before summer?</p>
<p>>I was thinking in buy a toyoya \"hybrid\" prius.<br />
</code></p>
<p><strong>Result</strong> One email to close the thread with one response.</p>
<h3>case B: Use bottom posting to receive a response.</h3>
<p><code><br />
From: gloob@litio.org<br />
To: god@heaven.org<br />
Subject: RE: start thread</p>
<p>> Will you have bought a new car before summer?</p>
<p>>I was thinking in buy a toyoya \"hybrid\" prius.</p>
<p>Toyota is a good brand of cars, I\'m very happy with it.</p>
<p>Did you check Lexus, too?<br />
</code></p>
<p><strong>Result</strong> One email to continue the thread and inviting others to response it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/29/new-term-hybrid-posting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

