<?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 &#187; Uncategorized</title>
	<atom:link href="http://www.litio.org/wp/category/uncategorized/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>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>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>
		<item>
		<title>ximDEX gource</title>
		<link>http://www.litio.org/wp/2010/04/22/ximdex-gource/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ximdex-gource</link>
		<comments>http://www.litio.org/wp/2010/04/22/ximdex-gource/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 13:13:45 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=123</guid>
		<description><![CDATA[Autogenerated video using gource ximDEX gource from gloob on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>Autogenerated video using <a href="http://code.google.com/p/gource/">gource</a></p>
<p><object width="500" height="281"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11124639&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=59a5d1&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11124639&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=59a5d1&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="281"></embed></object>
<p><a href="http://vimeo.com/11124639">ximDEX gource</a> from <a href="http://vimeo.com/user810913">gloob</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/22/ximdex-gource/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ximDEX codeswarm</title>
		<link>http://www.litio.org/wp/2010/04/17/ximdex-codeswarm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ximdex-codeswarm</link>
		<comments>http://www.litio.org/wp/2010/04/17/ximdex-codeswarm/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 15:53:52 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=105</guid>
		<description><![CDATA[As a memento of my last work at Open Ximdex Evolution I made a video of the activity of our main project svn. ximDEX codeswarm from gloob on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>As a memento of my last work at <a href="http://www.ximdex.com">Open Ximdex Evolution</a> I made a video of the activity of our main project svn.</p>
<p><object width="500" height="281"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10958358&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=59a5d1&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10958358&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=59a5d1&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="281"></embed></object>
<p><a href="http://vimeo.com/10958358">ximDEX codeswarm</a> from <a href="http://vimeo.com/user810913">gloob</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/17/ximdex-codeswarm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>self.wordle()</title>
		<link>http://www.litio.org/wp/2010/04/17/self-wordle/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=self-wordle</link>
		<comments>http://www.litio.org/wp/2010/04/17/self-wordle/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 13:29:13 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=100</guid>
		<description><![CDATA[I really love autogenerated graphics]]></description>
			<content:encoded><![CDATA[<p>I really love autogenerated graphics</p>
<p><a href="http://www.wordle.net/show/wrdl/1913215/litio.org" title="Wordle: litio.org"><img src="http://www.wordle.net/thumb/wrdl/1913215/litio.org" alt="Wordle: litio.org\" style="padding:4px;border:1px solid #ddd"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/17/self-wordle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating video with codeswarm</title>
		<link>http://www.litio.org/wp/2010/04/15/creating-video-with-codeswarm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creating-video-with-codeswarm</link>
		<comments>http://www.litio.org/wp/2010/04/15/creating-video-with-codeswarm/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 10:22:10 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=90</guid>
		<description><![CDATA[A very fast recipe to do a video with codeswarm (Relative to codeswarm home) #!/bin/sh mkdir project_build svn log -v https://urltoprojectsvn/svn/project > project_build/activity.log python convert_logs/convert_logs.py -s project_build/activity.log -o project_build/activity.xml ffmpeg -f image2 -r 24 -i ./project_build/frames/code_swarm-%05d.png -sameq ./project.mov -pass 2]]></description>
			<content:encoded><![CDATA[<p>A very fast recipe to do a video with codeswarm (Relative to codeswarm home)</p>
<p><code><br />
#!/bin/sh</p>
<p>mkdir project_build</p>
<p>svn log -v https://urltoprojectsvn/svn/project > project_build/activity.log</p>
<p>python convert_logs/convert_logs.py -s project_build/activity.log -o project_build/activity.xml</p>
<p>ffmpeg -f image2 -r 24 -i ./project_build/frames/code_swarm-%05d.png -sameq ./project.mov -pass 2<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/15/creating-video-with-codeswarm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First</title>
		<link>http://www.litio.org/wp/2010/04/15/first/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=first</link>
		<comments>http://www.litio.org/wp/2010/04/15/first/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 00:20:08 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=94</guid>
		<description><![CDATA[Es la primera vez que me cuesta leer google en una imagen de google]]></description>
			<content:encoded><![CDATA[<p>Es la primera vez que me cuesta leer google en una imagen de google</p>
<p><a href="http://www.google.es/logos/childrensday-hp.gif"><img alt="\" src="http://www.google.es/logos/childrensday-hp.gif" title="childrens day google logo" class="alignnone" width="341" height="129" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/15/first/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ffmpeg on osx 10.6 (snow leopard)</title>
		<link>http://www.litio.org/wp/2010/04/13/ffmpeg-on-osx-10-6-snow-leopard/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ffmpeg-on-osx-10-6-snow-leopard</link>
		<comments>http://www.litio.org/wp/2010/04/13/ffmpeg-on-osx-10-6-snow-leopard/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 16:05:35 +0000</pubDate>
		<dc:creator>Alejandro Leiva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=81</guid>
		<description><![CDATA[(using MacPorts 1.8.2) Update MacPorts dendrita:~ gloob$ sudo port selfupdate dendrita:~ gloob$ sudo port upgrade outdated Install ffmpeg :) dendrita:~ gloob$ port variants ffmpeg ffmpeg has the variants: darwin_10: Platform variant, selected automatically no_gpl: disallow use of GPL code, license &#8230; <a href="http://www.litio.org/wp/2010/04/13/ffmpeg-on-osx-10-6-snow-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>(using <a href=\"http://www.macports.org/\">MacPorts</a> 1.8.2)</p>
<p><strong>Update MacPorts</strong><br />
<code><br />
dendrita:~ gloob$ sudo port selfupdate<br />
dendrita:~ gloob$ sudo port upgrade outdated<br />
</code></p>
<p><strong>Install ffmpeg :)</strong><br />
<code><br />
dendrita:~ gloob$ port variants ffmpeg<br />
ffmpeg has the variants:<br />
   darwin_10: Platform variant, selected automatically<br />
   no_gpl: disallow use of GPL code, license will be LGPL<br />
   no_mmx: disable all x86 asm optimizations<br />
   speex: enable Speex decoding via libspeex</p>
<p>dendrita:~ gloob$ port install ffmpeg +speex<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/04/13/ffmpeg-on-osx-10-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

