<?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>soledad penadés &#187; Software</title>
	<atom:link href="http://soledadpenades.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://soledadpenades.com</link>
	<description>repeat 4[fd 100 rt 90]</description>
	<lastBuildDate>Sun, 29 Jan 2012 23:03:40 +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>ffmpeg on Mac Os X Lion</title>
		<link>http://soledadpenades.com/2012/01/18/ffmpeg-on-mac-os-x-lion/</link>
		<comments>http://soledadpenades.com/2012/01/18/ffmpeg-on-mac-os-x-lion/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 22:28:03 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac os x]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3878</guid>
		<description><![CDATA[Now that I&#8217;m using a Mac (with Mac OS) at work I&#8217;m sorely missing truly essential tools such as ffmpeg. The only binary build I could find (without having to download fink and a ton more packages that I don&#8217;t really need) was a build from 2006. Two thousand and six! Which in ffmpeg terms [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m using a Mac (with Mac OS) at work I&#8217;m sorely missing truly essential tools such as <a href="http://ffmpeg.mplayerhq.hu/">ffmpeg</a>. The only binary build I could find (without having to download fink and a ton more packages that I don&#8217;t really need) was a build from 2006. <em>Two thousand and six</em>! Which in ffmpeg terms is like <strong>the Pleistocene</strong>.</p>
<p>So given that I have XCode installed anyway, I decided to build ffmpeg myself, just as I had done back in 2007. It should be as doable as back then!<br />
<span id="more-3878"></span><br />
I found a <a href="http://www.martinlos.com/?p=41">post</a> by Martin Los, which was pretty much all I needed to get started. I just changed a few things; for example you don&#8217;t need to <em>-enable-libfaad</em> anymore with recent versions of ffmpeg as I think they have their own (experimental?) faad encoder, and don&#8217;t rely on an external library. I also didn&#8217;t install <a href="http://www.libsdl.org/">SDL</a> as from what I remember it was only used for showing ffplay&#8217;s output (mostly for opening a window, showing the decoded video, etc). In any case, ffmpeg compiled fine without having SDL, so I&#8217;m assuming it just didn&#8217;t compile ffplay which frankly I don&#8217;t use.</p>
<p>After I checked that Martin&#8217;s method worked, I decided to convert his instructions into an script. Usually I would write this script with <a href="http://www.python.org/">Python</a> but I am trying to learn a bit more bash lately, so I made an effort (and several searches) and wrote it in <a href="http://www.gnu.org/software/bash/">bash</a> &#8211;and a couple of other utilities such as <a href="http://www.gnu.org/software/sed/manual/sed.html">sed</a> which were already installed on Mac. I believe the only tool which isn&#8217;t installed by default is <a href="http://subversion.apache.org/">Subversion</a>, but I am not entirely sure about this (and I&#8217;m not going to format the system just to check!).</p>
<p>It was also interesting to use <a href="http://curl.haxx.se/">cURL</a> (which is installed on a bare Mac Os) instead of <a href="http://www.gnu.org/software/wget">wget</a>, which I expected to be installed already (it wasn&#8217;t). Apparently SourceForge (which is where the libraries&#8217; sources are hosted) makes some sort of redirection even if you&#8217;re using a direct link. The -L option allows it to follow through 30x redirections until it finds a 200 code or similar.</p>
<p>And here is <a href="https://github.com/sole/snippets/blob/master/video/get_ffmpeg_on_macosx.sh">the script</a> for your enjoyment and all that:</p>
<div class="syhi_block"><code><span style="color: #666666; font-style: italic;">#!/bin/bash</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Thanks to Martin Los for his guide: http://www.martinlos.com/?p=41</span><br />
<br />
<span style="color: #007800;">URLS</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">&quot;http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.3.tar.gz&quot;</span> <span style="color: #ff0000;">&quot;http://downloads.sourceforge.net/project/faac/faac-src/faac-1.28/faac-1.28.tar.gz&quot;</span> <span style="color: #ff0000;">&quot;http://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.gz&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${URLS[@]}</span>&quot;</span><br />
<span style="color: #000000; font-weight: bold;">do</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$i</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; curl <span style="color: #660033;">-O</span> <span style="color: #660033;">-L</span> <span style="color: #007800;">$i</span><br />
<span style="color: #000000; font-weight: bold;">done</span><br />
<br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #000000; font-weight: bold;">*</span>.tar.gz <span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzvf</span> <span style="color: #007800;">$i</span><br />
<span style="color: #000000; font-weight: bold;">done</span><br />
<br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-d</span> <span style="color: #000000; font-weight: bold;">*/</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$i</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; .<span style="color: #000000; font-weight: bold;">/</span>configure<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">make</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">cd</span> ..<br />
<span style="color: #000000; font-weight: bold;">done</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">svn</span> checkout <span style="color: #c20cb9; font-weight: bold;">svn</span>:<span style="color: #000000; font-weight: bold;">//</span>svn.ffmpeg.org<span style="color: #000000; font-weight: bold;">/</span>ffmpeg<span style="color: #000000; font-weight: bold;">/</span>trunk <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span><br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-libmp3lame</span> <span style="color: #660033;">--enable-libfaac</span> <span style="color: #660033;">--enable-gpl</span> <span style="color: #660033;">--enable-nonfree</span> <span style="color: #660033;">--enable-shared</span> <span style="color: #660033;">--disable-mmx</span> <span style="color: #660033;">--arch</span>=x86_64 <span style="color: #660033;">--cpu</span>=core2<br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></code></div>
<p>Using this shiny fresh build of ffmpeg I was able to convert several .MOV files which were rendered for iOS devices into MP4 files that Android devices could palate. This is <a href="https://github.com/sole/snippets/blob/master/video/ios_mov_to_android_mp4.sh">the script</a> I wrote (also with bash, to practise <em>even</em> more):</p>
<div class="syhi_block"><code><span style="color: #007800;">WIDTH</span>=<span style="color: #ff0000;">&quot;720&quot;</span><br />
<span style="color: #007800;">HEIGHT</span>=<span style="color: #ff0000;">&quot;480&quot;</span><br />
<span style="color: #007800;">BITRATE</span>=<span style="color: #ff0000;">&quot;1500k&quot;</span><br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #000000; font-weight: bold;">*</span>.mov<span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-i</span> <span style="color: #007800;">$i</span> <span style="color: #660033;">-r</span> <span style="color: #000000;">30</span> <span style="color: #660033;">-vcodec</span> mpeg4 <span style="color: #660033;">-acodec</span> libfaac <span style="color: #660033;">-ac</span> <span style="color: #000000;">1</span> <span style="color: #660033;">-ar</span> <span style="color: #000000;">44100</span> <span style="color: #660033;">-vf</span> <span style="color: #007800;">scale</span>=<span style="color: #007800;">$WIDTH</span>:<span style="color: #007800;">$HEIGHT</span> <span style="color: #660033;">-b</span> <span style="color: #007800;">$BITRATE</span> &nbsp;<span style="color: #660033;">-y</span> <span style="color: #007800;">$i</span>.mp4<br />
<span style="color: #000000; font-weight: bold;">done</span><br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">*</span>.mov.mp4; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #007800;">j</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$i</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/.mov.mp4/.mp4/'</span><span style="color: #000000; font-weight: bold;">`</span>; <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$i</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$j</span>&quot;</span>; <span style="color: #000000; font-weight: bold;">done</span></code></div>
<p>Hope it&#8217;s useful!</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3878&amp;md5=f98dfe69ba0ee49fa02e589f6d30b4b1" title="Flattr" target="_blank"><img src="http://soledadpenades.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2012/01/18/ffmpeg-on-mac-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make Chromium/Chrome blend seamlessly with Gnome 3</title>
		<link>http://soledadpenades.com/2012/01/12/make-chromiumchrome-blend-seamlessly-with-gnome-3/</link>
		<comments>http://soledadpenades.com/2012/01/12/make-chromiumchrome-blend-seamlessly-with-gnome-3/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 21:26:27 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[gnome3]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3864</guid>
		<description><![CDATA[&#8220;Thanks to the power of CSS&#8221; you just need to install these extensions: Adwaita (GNOME 3) Adwaita (GNOME 3) scrollbars (this is optional. Makes the scrollbars look more Gnome-ish) With compliments to mr.doob for revealing me the secret!]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Thanks to the power of CSS&#8221;</em> you just need to install these extensions:</p>
<ul>
<li><a href="https://chrome.google.com/webstore/detail/oojbknijfmdmidgcgchmojbildmbdamm">Adwaita (GNOME 3)</a></li>
<li><a href="https://chrome.google.com/webstore/detail/bkgmaggeefkcgmhmgiadbhgdoeiajccd/details?hl=en">Adwaita (GNOME 3) scrollbars</a> (this is optional. Makes the scrollbars look more Gnome-ish)</li>
</ul>
<p><em>With compliments to <a href="http://mrdoob.com">mr.doob</a> for revealing me the secret!</em></p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3864&amp;md5=9e6e372c3c90a32bb704a432a9246e7f" title="Flattr" target="_blank"><img src="http://soledadpenades.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2012/01/12/make-chromiumchrome-blend-seamlessly-with-gnome-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distro/desktop (s)hopping, part 4: GNOME 3 (+ extensions)</title>
		<link>http://soledadpenades.com/2011/12/04/distrodesktop-shopping-part-4-gnome-3-extensions/</link>
		<comments>http://soledadpenades.com/2011/12/04/distrodesktop-shopping-part-4-gnome-3-extensions/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 17:01:45 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome3]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3846</guid>
		<description><![CDATA[I finally succumbed to temptation and installed GNOME 3 on my machine. I was slightly worried that it would end up breaking everything, but it did work quite nicely, and once I installed gnome-session, the option for starting a GNOME session appeared at the login window, along with the existing XFCE session. So&#8211;first impression: confusing. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/imgs/2011/gnome3.jpg" alt="GNOME 3" /></p>
<p>I finally succumbed to temptation and installed GNOME 3 on my machine.</p>
<p><span id="more-3846"></span></p>
<p>I was slightly worried that it would end up breaking everything, but it did work quite nicely, and once I installed gnome-session, the option for starting a GNOME session appeared at the login window, along with the existing XFCE session.</p>
<p>So&#8211;first impression: <strong>confusing</strong>. Thankfully <a href="http://mrdoob.com">mr.doob</a> had demonstrated GNOME 3 on his laptop several times (although he was testing Fedora and Ubuntu, not ArchLinux), so I roughly knew how to navigate the system. The key is to use precisely that&#8211;the keyboard. Forget <em>ye good old Applications</em> menu and start launching stuff in the <em>Quiksilver</em>/<em>GNOME Do</em> style, by invoking the &#8220;launcher&#8221; and then typing the name of the application you want to run. Using the mouse feels quite slow.</p>
<p>The next step has been launching my commonly used programs to make sure they kept working. They did! More things that worked well or even better than with XFCE or old Ubuntu:</p>
<ul>
<li><strong>Fonts support.</strong> It&#8217;s way better and nicer now than I remember (whether with XFCE or with Ubuntu). I am referring to the way fonts are displayed on screen. Antialias is there without being excessive, etc.</li>
<li><strong>Nautilus integration.</strong> I didn&#8217;t manage to configure it properly with XFCE and for some reason it didn&#8217;t quite work as I expected it. Now I configured it to manage the desktop too, yay! (more on that later on).</li>
<li><strong>Keyring integration.</strong> Apparently it&#8217;s a silly thing, but it gets very annoying having to enter the same password for a remote system once and once again. Installing and configuring gnome-keyring in XFCE was an item in my TODO list&#8230; but it seems to have been resolved by installing GNOME shell &amp; co, so great! One thing less to do!</li>
<li><strong>&#8220;Multimedia&#8221; keys</strong> also work without me doing anything (unlike in XFCE where I had to configure them manually). This includes the volume keys and also the brightness keys which now allow me to set the brightness in my Apple Cinema Display. This is something that didn&#8217;t work before, and since I dislike very bright screens, I had to reduce the brightness by tapping the side keys on the monitor itself. Super YAY!</li>
</ul>
<p>The remaining step was, evidently, customising the rest of the system to my liking. I made a list of things I was missing, and in a matter of minutes they were sorted out (!!!), thanks to a bit of gconf-editor and the awesomeness of the <a href="https://extensions.gnome.org/">Shell extensions</a> website plus its one-click install method. Apart from it being incredibly rewarding, I guess that&#8217;s what happens when you wait and leave some time before hopping on the novelty bandwagon: somebody else will have written the extension you need already.</p>
<p>The annoyances &#8220;I&#8221; fixed:</p>
<ul>
<li><strong>Lack of a dock or currently running applications panel</strong>. I fixed this with the <a href="https://extensions.gnome.org/extension/25/window-list/">Window list</a> extension.</li>
<li><strong>Lack of min/max buttons, and them being on the right side</strong>. I wanted them <em>all</em>, and I wanted them on the left side, as I was used to having them on the left side since Ubuntu 10.x and I use Mac OS in the office too. I fixed this with a combination of gnome-tweak-tool and gconf-editor:
<ol>
<li>In gnome-tweak-tool, select &#8220;Shell -&gt; Arrangement of buttons in the title bar -&gt; All&#8221;</li>
<li>In gconf-editor, modify the <em>desktop/gnome/shell/windows/button_layout</em> entry to read <em>close,minimize,maximize:</em>. This reorders and relocates the icons to the left side of the title bar.</li>
</ol>
</li>
<li><strong>No desktop icons</strong>. GNOME 3 tries to fix the <em>overpopulated desktop syndrome</em> by forbidding <em>all</em> icons in the Desktop, but that&#8217;s against my workflow: while I&#8217;m not a fan of overpopulated desktops, I do like placing the stuff I&#8217;m currently working on in the Desktop.  The way to overcome this limitation is to use gnome-tweak-tool and enable &#8220;Desktop -&gt; Have file manager handle the desktop&#8221;. Voila, Nautilus is managing your desktop and thus you can have icons in it. Business as usual!</li>
<li><strong>The clock in the middle of the top bar</strong> (why!?). Moved it to the right with the amazingly simple <a href="https://extensions.gnome.org/extension/2/move-clock/">Frippery move clock</a> extension.</li>
<li><strong>That accessibility icon on the top bar</strong>. While I recognise it&#8217;s great to be accessible from the start, I like managing my own screen state. So as before&#8211;removed it with a couple of clicks thanks to the <a href="https://extensions.gnome.org/extension/43/">noa11y</a> extension.</li>
<li><strong>System monitor</strong>. When I&#8217;m doing anything that eats too much CPU I like to measure why, and how much. I couldn&#8217;t find any nice widget for XFCE, and I was missing the old GNOME 2 system monitor panel. Fortunately the new <a href="https://extensions.gnome.org/extension/9/">SystemMonitor</a> extension is sort of similar, but it isn&#8217;t visible all the time, as it&#8217;s in the notifications area (on the bottom area of the screen, visible only when something gets notified to you or when manually focused). Still, I think I prefer this version, as I don&#8217;t need to be looking at the widget <em>all the time</em>, and this is more efficient space-wise. It also opens the full blown <em>System monitor</em> application when clicked, as the old widget did.</li>
</ul>
<p>I also dabbled with the <a href="https://extensions.gnome.org/extension/17/dock/">Dock</a> extension before installing the <em>Window list</em> extension, but it annoyed me that it wasn&#8217;t visible all the time and I couldn&#8217;t configure it in an intuitive obvious way, so I disabled it.</p>
<p>Overall, I like GNOME 3 once I changed all those details to suit my tastes, but I&#8217;d like to be able to right click over things and access their configuration instead of going through arcane settings trees <em>à la</em> Windows Registry. That&#8217;s quite awful, and there is no official documentation on this, or at least it&#8217;s not visible in the obvious places. As an example, <strong>there&#8217;s no obvious explanation</strong> on how to install <em>and</em> enable an extension in the GNOME extensions wiki <a href="http://live.gnome.org/GnomeShell/Extensions">page</a>. While the process is somewhat easy if installing extensions with the website, it took me a few minutes until I found that method, and even then I wasn&#8217;t sure it would work. This issue is present in pretty much all open source projects anyway: bragging about a project, but not explaining how to install/start it.</p>
<p>That aside, GNOME 3 feels great and fluid, even if I&#8217;m using the nouveau driver. I feared it would require me to install the proprietary nvidia driver, but it works quite well with the free driver, which is excellent news. The only graphical oddity I&#8217;ve found is with the <a href="http://blogs.gnome.org/cosimoc/2011/04/29/sushi/">sushi</a> previewer; it does some sort of jerky window relocation on start which I don&#8217;t know if it&#8217;s because of the graphics driver or because of sushi itself.</p>
<p>Conclusion: <strong>I&#8217;m going to stay with GNOME 3</strong>, as XFCE is not as mature as I&#8217;d wish it to be, and GNOME 3 seems to perform quite well (plus I&#8217;ve always liked the GNOME Do style of launching stuff, and being able to write extensions in Javascript is one of the best ideas for desktop environments).</p>
<p>I&#8217;m also looking forward to installing ArchLinux + GNOME 3 on my laptop (which is currently still running Ubuntu 10.10 :-D). Hopefully the brightness keys will work there too!</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3846&amp;md5=48b69d625012d2c7beaf1f42461ab834" title="Flattr" target="_blank"><img src="http://soledadpenades.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2011/12/04/distrodesktop-shopping-part-4-gnome-3-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;gnome-shell is a requirement&#8221;</title>
		<link>http://soledadpenades.com/2011/11/03/gnome-shell-is-a-requirement/</link>
		<comments>http://soledadpenades.com/2011/11/03/gnome-shell-is-a-requirement/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 08:44:15 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Silly stuff]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bloat]]></category>
		<category><![CDATA[gnome]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3806</guid>
		<description><![CDATA[[root@courgette ~]# pacman -Syu :: Synchronizing package databases... &#160;core is up to date &#160;extra &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; 975.5K &#160;744.1K/s 00:00:01 [######################] 100% &#160;community &#160; &#160; &#160; &#160; &#160; &#160; &#160; 582.4K &#160;608.1K/s 00:00:01 [######################] 100% &#160;multilib is up to date :: Starting full system upgrade... resolving dependencies... looking for [...]]]></description>
			<content:encoded><![CDATA[<div class="syhi_block"><code>[root@courgette ~]# pacman -Syu<br />
:: Synchronizing package databases...<br />
&nbsp;core is up to date<br />
&nbsp;extra &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 975.5K &nbsp;744.1K/s 00:00:01 [######################] 100%<br />
&nbsp;community &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 582.4K &nbsp;608.1K/s 00:00:01 [######################] 100%<br />
&nbsp;multilib is up to date<br />
:: Starting full system upgrade...<br />
resolving dependencies...<br />
looking for inter-conflicts...<br />
<br />
Targets (32): zenity-3.2.0-1 &nbsp;libcanberra-0.28-2 &nbsp;mutter-3.2.1-1 &nbsp;js-1.8.5-3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gjs-1.30.0-1 &nbsp;bluez-4.96-1 &nbsp;openobex-1.5-2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; obex-data-server-0.4.6-2 &nbsp;gvfs-obexftp-1.10.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; obexd-client-0.42-1 &nbsp;gnome-bluetooth-3.2.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gnome-menus-3.2.0.1-1 &nbsp;libgee-0.6.2.1-1 &nbsp;rest-0.7.11-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; libwebkit3-1.6.1-1 &nbsp;gnome-online-accounts-3.2.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; libgweather-3.2.1-1 &nbsp;libical-0.46-1 &nbsp;liboauth-0.9.4-2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; libgdata-0.10.1-1 &nbsp;evolution-data-server-3.2.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; libsocialweb-0.25.19-2 &nbsp;folks-0.6.4.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; telepathy-logger-0.2.12-1 &nbsp;networkmanager-0.9.1.95-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; at-spi2-core-2.2.1-1 &nbsp;at-spi2-atk-2.2.1-1 &nbsp;pyatspi-2.2.1-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; caribou-0.4.1-1 &nbsp;telepathy-mission-control-5.9.3-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gnome-shell-3.2.1-1 &nbsp;gnome-tweak-tool-3.2.1-1<br />
<br />
Total Download Size: &nbsp; &nbsp;20.76 MB<br />
Total Installed Size: &nbsp; 136.15 MB<br />
<br />
Proceed with installation? [Y/n] n<br />
[root@courgette ~]# pacman -R gnome-tweak-tool<br />
checking dependencies...<br />
<br />
Remove (1): gnome-tweak-tool-3.2.0-1<br />
<br />
Total Removed Size: &nbsp; 0.47 MB<br />
<br />
Do you want to remove these packages? [Y/n] y<br />
(1/1) removing gnome-tweak-tool &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[######################] 100%<br />
[root@courgette ~]# pacman -Syu<br />
:: Synchronizing package databases...<br />
&nbsp;core is up to date<br />
&nbsp;extra is up to date<br />
&nbsp;community is up to date<br />
&nbsp;multilib is up to date<br />
:: Starting full system upgrade...<br />
&nbsp;there is nothing to do</code></div>
<p><a href="http://projects.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/gnome-tweak-tool&#038;id=21d047844eb4963e47d665dc5f1069bc8a226b8e">Amazing</a>.</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3806&amp;md5=357c19d4c15b84eb5a5c7ef783d0fce9" title="Flattr" target="_blank"><img src="http://soledadpenades.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2011/11/03/gnome-shell-is-a-requirement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Breaking news: there&#8217;s an alternative to Google Reader</title>
		<link>http://soledadpenades.com/2011/11/02/breaking-news-theres-an-alternative-to-google-reader/</link>
		<comments>http://soledadpenades.com/2011/11/02/breaking-news-theres-an-alternative-to-google-reader/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 20:04:01 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3800</guid>
		<description><![CDATA[Tiny Tiny RSS. Here&#8217;s a demo. If you like it, you can install it in any server with PHP + (MySQL&#124;PostgreSQL). If you like it a lot, you can enable the multiuser support and share your own online reader service with some friends. Then stop moaning worrying about Google datamining your interests or profiling your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tt-rss.org/">Tiny Tiny RSS</a>. Here&#8217;s a <a href="http://tt-rss.org/demo/tt-rss.php">demo</a>. If you like it, you can install it in any server with PHP + (MySQL|PostgreSQL). If you like it a lot, you can enable the multiuser support and share your own online reader service with some friends.</p>
<p>Then stop <del datetime="2011-11-02T19:07:55+00:00">moaning</del> worrying about Google datamining your interests or profiling your attention span, or feature X being changed arbitrarily because of business reasons, or <em>Gorgeous Google Reader Alternative Yet To Be Developed</em> to have even an alpha release that you can have a look at if you&#8217;re lucky and get an early invitation.<br />
<span id="more-3800"></span><br />
Also, if you don&#8217;t like something about the software, just <a href="https://github.com/gothfox/Tiny-Tiny-RSS">fork it</a> and change it. Then maybe send a pull request? All hail the powers of Git!</p>
<p>Jokes aside, I&#8217;ve been sporadically using this nifty little web application for a couple of months now. It might not be as &#8220;polished&#8221; as Google Reader, but it certainly is the best of all the alternatives I tried. I&#8217;m not a heavy user of feed readers&#8211;I use them as the equivalent of a customised magazine which caters to <em>my</em> tastes, and not as a news source. I read feeds when I have time and feel like reading, not as a mandatory duty that I have to fulfill every day, lest the reader explode with unread items.</p>
<p>Tiny Tiny RSS also has support for autopurging feeds (the way Google Reader deletes stuff you haven&#8217;t read in X days); an API so things such as a <a href="http://code.google.com/p/ttrss-reader-fork/">mobile TTRSS app</a> can be possible, and there also are some sort of functionalities such as sharing public items and interconnecting TTRSS installations that I haven&#8217;t tried but sound cool in any case.</p>
<p>So there you go. Enjoy it!</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3800&amp;md5=549a7725c6d626e9f89c46e84ef3dd79" title="Flattr" target="_blank"><img src="http://soledadpenades.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2011/11/02/breaking-news-theres-an-alternative-to-google-reader/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

