<?xml version="1.0" encoding="utf-8"?>

<feed xmlns="http://www.w3.org/2005/Atom">
 <title>Luca's meaningless thoughts</title>
 <link rel="alternate" type="text/html" href="https://llucax.com/blog/blog.cgi"/>
 <link rel="self" type="application/atom+xml" href="https://llucax.com/blog/blog.cgi/atom"/>
 <id>https://llucax.com/blog/blog.cgi</id> <!-- TODO: find a better <id>, see RFC 4151 -->
 <updated>2020-11-18T11:38:15Z</updated>

	

  <entry>
    <title>The LANGUAGE variable is broken for English as main language</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/49e1bde5" />
    <id>https://llucax.com/blog/blog.cgi/post/49e1bde5</id>
    <summary>The LANGUAGE variable is broken for English as main language</summary>
    <published>2020-11-18T11:38:15Z</published>
    <updated>2020-11-18T11:38:15Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>The <tt class="docutils literal">LANGUAGE</tt> environment variable can <a class="reference external" href="https://www.gnu.org/software/gettext/manual/gettext.html#The-LANGUAGE-variable">accept multiple fallback
languages</a> (at least if your commands are using <tt class="docutils literal">gettext</tt>), so if your main
<tt class="docutils literal">LANG</tt> is, say, <tt class="docutils literal">es</tt>, but you also speak <tt class="docutils literal">fr</tt>, then you can use
<tt class="docutils literal">LANGUAGE=es:fr</tt>.</p>
<p>But what happens when you main <tt class="docutils literal">LANG</tt> is <tt class="docutils literal">en</tt>, so for example your
<tt class="docutils literal">LANGUAGE</tt> looks like <tt class="docutils literal">en:es:de</tt>? You'll notice some message that used to
be in perfect English before using the multi-language fallback now seem to be
shown randomly in <tt class="docutils literal">es</tt> or <tt class="docutils literal">de</tt>.</p>
<p>Well, it is not random. The thing is, since English tends to be the de-facto
language for the original strings in a program, it looks like almost <strong>nobody</strong>
provides an <tt class="docutils literal">en</tt> <em>translation</em>, so when fallback is active, almost no
programs will show messages in English.</p>
<p>For example, this is my Debian testing system with roughly 3.5K packages
installed:</p>
<pre class="code console literal-block">
<span class="generic prompt">$ </span>dpkg -l <span class="punctuation">|</span>wc -l
<span class="generic output">3522
</span><span class="generic prompt">$ </span>ls /usr/share/locale/en/LC_MESSAGES/ <span class="punctuation">|</span> wc -l
<span class="generic output">12</span>
</pre>
<p>Only 12 packages have a plain English locale. <tt class="docutils literal">en_GB</tt> does a bit better:</p>
<pre class="code console literal-block">
<span class="generic prompt">$ </span>ls /usr/share/locale/en_GB/LC_MESSAGES/ <span class="punctuation">|</span> wc -l
<span class="generic output">732</span>
</pre>
<p>732 packages. This is still lower than both <tt class="docutils literal">en</tt> and <tt class="docutils literal">de</tt>:</p>
<pre class="code console literal-block">
<span class="generic prompt">$ </span>ls /usr/share/locale/es/LC_MESSAGES/ <span class="punctuation">|</span> wc -l
<span class="generic output">821
</span><span class="generic prompt">$ </span>ls /usr/share/locale/de/LC_MESSAGES/ <span class="punctuation">|</span> wc -l
<span class="generic output">820</span>
</pre>
<p>The weird thing is packages as basic as <tt class="docutils literal">psmisc</tt> (providing, for example,
<tt class="docutils literal">killall</tt>) and <tt class="docutils literal">coreutils</tt> (providing, for example, <tt class="docutils literal">ls</tt>) don't have an
<tt class="docutils literal">en</tt> locale, and <tt class="docutils literal">psmisc</tt> doesn't provide <tt class="docutils literal">es</tt>. This is why at some point
it seemed like a random locale was being used. I had something like
<tt class="docutils literal">LANGUAGE=en_GB:en_US:en:es:de</tt> and I use KDE as my desktop environment. KDE
seems to be correctly <em>translated</em> to <tt class="docutils literal">en_GB</tt>, so I was seeing most of my
desktop in English as expected, but when using <tt class="docutils literal">killall</tt>, I got errors in
German, and when using <tt class="docutils literal">ls</tt>, I got errors in Spanish.</p>
<p>If you don't provide other fallback languages, gettext will automatically fall
back to the <tt class="docutils literal">C</tt> locale, which is the original strings embedded in the source
code, which are usually in English, and this is why if you don't provide
fallback languages (other than English at least), all will work in English as
expected. Of course if you use <tt class="docutils literal">C</tt> in your fallback languages, before any
non-English language, then they will be ignored as the <tt class="docutils literal">C</tt> locale should
always be present, so that's not an option.</p>
<p>I find it very curious that this issue has almost zero visibility. At least my
searches for the issue didn't throw any useful results. I had to figure it all
out by myself like in the good old pre-stackoverflow times...</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">I know is not a typical use case, as since almost all software use
English for the <tt class="docutils literal">C</tt> locale it hardly makes any sense to use fallback
languages in practice if your main language is English. But theoretically it
could happen, and providing an <tt class="docutils literal">en</tt> translation is trivial.</p>
</div>

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Elephone P9000</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/14349555" />
    <id>https://llucax.com/blog/blog.cgi/post/14349555</id>
    <summary>Elephone P9000</summary>
    <published>2020-11-18T11:10:52Z</published>
    <updated>2020-11-18T11:10:52Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This post is <strong>really</strong> old (May 2016), but was never published for
some reason. I'm publishing it now just as an archeological artifact :)</p>
</div>
<p>I usually don't do reviews for anything, but I want to write a few points about
this phone, in part for folks out there to know, but also as some sort of
internal reminder of the things I've been finding.</p>
<p>I should say before anything else that I'm basically comparing this phone
against my previous one, a Samsung Galaxy S4 (I9505) using <a class="reference external" href="http://www.cyanogenmod.org/">CyanogenMod</a>.</p>
<p>The <a class="reference external" href="http://www.elephone.hk/elephone-p9000-specs-features-purchase">Elephone P900</a> is a super
tempting device. Here are the main reasons why I chosen this phone (in <strong>bold</strong>
my hard requirements, in <em>italics</em> things I didn't really care about but it was
a good opportunity to try out):</p>
<ul class="simple">
<li>It has <strong>4GB of RAM and fast CPU</strong> (octacore)</li>
<li>It supports <strong>memory expansion</strong> (micro SD up to 256GB 8-)</li>
<li>It has a very <strong>high screen to body ratio</strong> (about 83%, for comparison the Nexus
5 has 71% and the iPhone 5s has 61%). I was looking for a 5 inch phone, so to
go for a 5.5 inch one, the overall size of the phone had to be as small as
possible.</li>
<li>It has <strong>USB Type-C</strong> (I thought if I'm getting a new phone, better to have
the new shiny no-non-sense connector)</li>
<li>It comes with <strong>Android 6</strong> (I want either that or to be supported by CM)</li>
<li>Decent battery (3000mAh, which I expected to last for a full day of intensive
use)</li>
<li>It has at least one &quot;navigation button&quot; (I don't want to lose part of my
screen with software buttons)</li>
<li>It has a Sony camera sensor with f/2.0 and laser focus, which is supposed to
be of decent quality really fast to do focus. That said, I read some reviews
not speaking well about the camera</li>
<li>It has a rouged back (my S4 was a bit slippery)</li>
<li>It costs less than €250 (here in Germany)</li>
<li>It has <em>wireless charging and quick charging</em></li>
<li>It has a <em>fingerprint reader</em></li>
<li>It has a quite <em>high-res frontal camera</em> (8 megapixel)</li>
<li>It supports <em>dual-SIM</em> although the second SIM shares the slot with the memory
expansion, so is not something I'll be able to use anyway</li>
</ul>
<p>So, after using it for about a couple of days, these are my findings:</p>
<p>The good:</p>
<ul class="simple">
<li><strong>The build quality is very nice</strong>, it really looks like a high end phone.
More than my old S4 (which is made of plastic, while the P9000 is metallic).</li>
<li><strong>Is very light</strong>, even when it's a few grams extra compared to the S4, you
can't really feel it. For offering 0.5 extra inches of screen is quite
impressive.</li>
<li><strong>It is fast</strong>. I wasn't expecting to notice a difference with the S4 really,
basically because I don't feel the S4 is slow. But you can tell the
difference. The P9000 is snappier.</li>
<li><strong>It looks beautiful</strong> (at least for my minimalistic taste). I never care much
about looks, but I really like this phone (much more than the S4).</li>
<li>Despite the big screen and feeling a bit too big at first, <strong>the size seems
manageable and the extra screen space is useful</strong>.</li>
<li>Now having a <strong>fingerprint reader</strong> will probably be a requirement for my next
phone. I encrypt my phone and use a longish password to unlock it. Being able
to unlock it securely with just one touch is a huge gain.</li>
<li><strong>It can be rooted</strong>. It took me a while to find the right flasher for Linux
(you need the latest version of it), but I could do it, and even TWRP is
available for it already, which gives me some hope about better ROMs, and
maybe even CM, appearing in the future.</li>
</ul>
<p>The Bad:</p>
<ul class="simple">
<li><strong>The fingerprint reader sucks</strong>. I've seen a video review complaining about
it, and even for this guy complaining it worked much better than for me.
I would say in my case it succeeds reading my fingerprint about less than 20%
of the time. I even registered my fingerprint like five 5 times, using
different finger positions and it still fails most of the time, and after 3 or
5 failures you have to wait 30 seconds before being able to retry.</li>
<li><strong>The screen is not bright enough for a sunny day</strong>. You can still see the
screen, but it's not as bright as the one in my old S4.</li>
<li><strong>The camera pretty much sucks too</strong>. The f/2.0 I don't know where is it,
pictures are always quite noisy. The auto-focus is not faster than my old S4.
The sensor is supposed to be good, so I guess they just screwed it with the
lenses. Or maybe is a firmware thing? But I doubt it.</li>
<li><strong>The sound really SUCKS</strong>. I never thought about it before. Even when
I listen to music <strong>a lot</strong>, I never had a good year and never could pick up
on bad quality recordings for example. Is a blessing. But with this phone
I noticed. It sounds like <strong>crap</strong> (and I'm not talking about the speaker,
which is understandable, I'm talking about plugging earphones). When I noticed
I thought it might be the album. I tried another one, and another one, and
finally I compared the same files in my old S4 and... Oh boy. This new phone's
audio just <strong>SUCKS SO BAD</strong>. It's the phone. I would say this was the final
deal breaker for me.</li>
<li><strong>The battery can't take an intense full day of usage</strong>. It's basically the
same as my old S4 (and I want an improvement on this area).  If I use it just
for a few messages and most of the time inside with WiFi, it can last 2 full
days. If I take it outside using mobile data, and listen to music during
a hold day, it barely last for a day. If I add to that using maps and the GPS
having the screen on more time, like when I'm traveling, it can barely last
more than half a day.</li>
<li><strong>The Android version is missing some features</strong> that I thought it was pure
Android (not CM), like the Ambient Display (shows notifications in a dimmed
screen), the LiveDisplay (adjust the screen color temperature according to the
time of the day) and the Do Not Disturb mode(s). The keyboard doesn't support
swiping (major drawback for me).</li>
<li><strong>The touchscreen is not very sensitive</strong>. I can tell the difference with the
S4. Maybe the one in the S4 is too sensitive, sometimes it reacts without even
contacting the glass, but in the P9000 sometimes I feel I have to press the
glass too much to get it reacting. Some gestures are harder to do because of
this (like swipe-up to unlock).</li>
<li><strong>Only one navigation button</strong>. Even when is better than nothing, I found much
more convenient having 3 navigation buttons like the S4 provides.</li>
<li><strong>No multicolor notification light</strong>. The navigation button on the bottom also
serves as a notification light, but it has only one color and the frequency
can't be configured either (AFAIK). The S4 has a multi-color led, which let
you know what kind of notification is there before you even look at the
screen.</li>
<li><strong>USB Type-C is not popular enough yet</strong>. Even when this is not the phone's
fault, I realized we are not there yet. Micro USB cables are everywhere out
there. You'll never miss one. With Type-C you better carry your cable
everywhere or buy a bunch, because you are all alone now.</li>
</ul>
<p>So, even when the external quality is amazing and, even when I never cared about
looks, it looks extremely nice too, it looks like the low price tag has to come
from somewhere, and that somewhere is the internal components, which seems like
they are not the best.</p>
<p>Still the quality-price ratio is quite impressive IMHO, on paper you have the
same specs as an iPhone 6, or Samsung S7, at less than half the price. But
I think I prefer to spend an extra few bucks to get higher internal components
qualities (specially with the sound), so I will probably return this phone and
continue looking for one. Also I miss my CM too much. I think I will have to
settle for an older phone that's is supported by CM.</p>
<p>TODO:</p>
<ul class="simple">
<li>Fingerprint unlock and screen gestures makes the phone never enter deep sleep,
nice features but until it's fixed it might be better to disable them, at
least when you know you'll need some juice.</li>
<li>Fingerprint starts working better after some use (only 2 or 3 attempts are
needed)</li>
<li>WiFi consumes more battery than mobile data (WTF!?)</li>
<li>RoDrIgUeZsTyLe™ MODPACK V1.1<ul>
<li>Sound is saved (probably is not amazing, but I don't notice the obvious
creepiness anymore). Praise the Lord!</li>
<li>Touchscreen is more sensitive, not as the S4 but definitely an appreciable
improvement.</li>
<li>Battery life improved a lot. One day of moderate activity (for me) and still
about 65% battery left. I used the phone for 12 hours after fully charged,
and my usage pattern was: about 6 hours outside (using mobile data), about
40 minutes of music playing + GPS working in high accuracy mode. The rest
inside using WiFi. I also did some messaging and internet use, but nothing
too intensive.  BetterBatteryStats reports: 66% (~8h) deep sleep (which is
still low, I wonder what this phone could last if it were more aggressive
about going to deep sleep), 8% (~1h) screen on.  Wifi running 100% of the
time (~12h).  Battery consumption average was 3%/h.  My guess is that with
a similar usage, the S4 I would probably ended the day with not more than
30% or 40% battery.</li>
</ul>
</li>
<li>Ways to improve the battery life and fix other stuff: Xposed framework, but
not supported yet. For example with &quot;Amplify Battery Extender&quot; I could disable
the wakelock for the fingerprint or NlpWakelock. Wakelock Terminator might
also help (also needs Xposed)</li>
<li>For now using DisableService to disable NlpService from MTK NLP Service, the
location seems to keep working fine. Another option is to put the GPS in
device-only mode to avoid the NPL service from running.</li>
<li>Install Xposed using Eragon 2.0 ROM:<ol class="arabic">
<li>Install Xposed Material installer (3.0 alpha4)
<a class="reference external" href="http://forum.xda-developers.com/xposed/material-design-xposed-installer-t3137758">http://forum.xda-developers.com/xposed/material-design-xposed-installer-t3137758</a></li>
<li>Edit /etc/init.d/07permissive and comment out the <tt class="docutils literal">sleep 60</tt></li>
<li>Install Xposed framework v82 (not a newer one otherwise settings will force
close)</li>
</ol>
</li>
<li>Battery life saved via update from 2016-05-31. Fingerprint reader and WiFi
don't keep the phone awake anymore (5~10% awake when screen is off with both
enabled).</li>
</ul>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Simplicity</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/bad49ad4" />
    <id>https://llucax.com/blog/blog.cgi/post/bad49ad4</id>
    <summary>Simplicity</summary>
    <published>2016-04-01T22:58:27Z</published>
    <updated>2016-04-01T22:58:27Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>This is mostly an article I want to save for myself about simplicity. It was
originally written by Mark Ramm in the context of a Python web framework I used
(TurboGears). The original article seems to be gone, but you can still <a class="reference external" href="https://web.archive.org/web/20120913081139/http://compoundthinking.com/blog/index.php/2006/05/31/what-is-simplicity/">find it
in the Archive.org's Wayback Machine</a>.</p>
<p>Here is a transcription:</p>
<blockquote>
<div class="line-block">
<div class="line"><strong>What is Simplicity?</strong></div>
<div class="line">(May 31st, 2006 by Mark Ramm)</div>
</div>
<p>Simplicity is knowing when one more rock would be too many, and one less rock
would be too few. But it’s not just knowing the right number of rocks, it’s
also knowing which rocks are right, and how to arrange them.</p>
<p>As Brad reminds us, simplicity is not achieved merely by making something
easier, or less complex.</p>
<p>Take away all the complexity, all the difficulty, and all of the details from
anything and what you are left with is not simple: it’s just boring.</p>
<p>On the other hand, Simplicity embraces exactly the right details, the right
difficulties, the right complexity, but because everything is tied together in
the right way, you are left with a sense of clarity, and a sense that
everything belongs exactly where it is. Simplicity is achieved when everything
means something.</p>
<p>In other words, simplicity is defined by what you add — clarity, purpose, and
intentionality — not by what you remove.</p>
<p>For those of us who write software, simplicity is not a simple thing to learn.
Writing the TurboGears book and working with the amazing group of people who
contribute to the project has been a learning experience for me. Everybody is
focused on making the web development simpler — and it’s amazing how much
experience and depth of understanding is necessary to create a simple
interface. It’s easy to build an interface that solves 80% of the problem, or
an interface that solves 200% of the problem, but it is hard to solve just the
right problem, and to do it in a clean, clear, way.</p>
<p>Of course, every project has warts, and TurboGears re-uses other projects which
also have warts. So there’s no way I can say that TurboGears has arrived. But
the will is there, and the journey sure has been productive for me.</p>
</blockquote>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Día de la condena errada</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/87159d03" />
    <id>https://llucax.com/blog/blog.cgi/post/87159d03</id>
    <summary>Día de la condena errada</summary>
    <published>2015-09-26T20:32:18Z</published>
    <updated>2015-09-26T20:32:18Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>El Día de la Condena Errada es creado como un Día Internacional destinado
a reconocer los daños tanto personales como sociales e institucionales asociados
a las condenas erradas, y a informar y concientizar a toda la comunidad
internacional sobre sus causas, consecuencias y otras problemáticas asociadas
a ellas.</p>
<p>¡Sumate a difundir el Día de la Condena Errada!</p>
<p>Apoyemos a las personas inocentes privadas de su libertad. Cambiemos el sistema
penal juntos! #IWCD2015 #DICE2015</p>
<iframe frameborder='0' height='540px' width='250px'
        src='https://www.thunderclap.it/projects/31957-2-10-d-a-de-la-condena-errada/embed'>
</iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Incredible Machine - Hurricane Heart Attacks</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/a595b935" />
    <id>https://llucax.com/blog/blog.cgi/post/a595b935</id>
    <summary>Incredible Machine - Hurricane Heart Attacks</summary>
    <published>2015-08-25T08:12:11Z</published>
    <updated>2015-08-25T08:12:11Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<iframe style="border: 0; width: 350px; height: 470px;"
src="https://bandcamp.com/EmbeddedPlayer/album=2623155971/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/"
seamless><a
href="http://sadness.bandcamp.com/album/incredible-machine-hurricane-heart-attacks">Incredible
Machine - Hurricane Heart Attacks by Sadness</a></iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>The Black Keys - Turn incompressible</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/ddee021a" />
    <id>https://llucax.com/blog/blog.cgi/post/ddee021a</id>
    <summary>The Black Keys - Turn incompressible</summary>
    <published>2014-05-06T22:33:16Z</published>
    <updated>2014-05-06T22:33:16Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>Maybe you heard about the new album from The Black Keys. Maybe you didn't. In
any case, I don't want to talk about the album (which is good BTW), I want to
talk about the album cover:</p>
<a class="reference external image-reference" href="https://llucax.com/blog/posts/2014/05/07-the-black-keys-turn-blue-big.jpg"><img alt="The Black Keys - Turn Blue album cover" class="align-center" src="https://llucax.com/blog/posts/2014/05/07-the-black-keys-turn-blue.jpg" /></a>
<p>See how bad it looks? Now click on the image and see how good it looks (in terms
of quality, the album cover is pretty ugly anyway :P). The thing is, this stupid
pattern is very hard to compress, so even using a JPG quality of 90%, you get
a quite big file size and a pretty crappy image quality (126KB for a 500x500
image is quite a lot, 294KB for PNG using compression 9). If you look at the big
image, even the colors are different, so the image makes resizing algorithms
also go nuts, the image looks darker (or is this just an ilusion because of the
changed relationship between both colors?).</p>
<p>Try it yourself, download the image, resize it, save it with different formats
and qualities.</p>
<p>Coincidence? I guess not.</p>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>The Day We Fight Back</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/f9fdf58e" />
    <id>https://llucax.com/blog/blog.cgi/post/f9fdf58e</id>
    <summary>The Day We Fight Back</summary>
    <published>2014-02-10T18:59:25Z</published>
    <updated>2014-02-10T18:59:25Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>On Anniversary of Aaron Swartz's Tragic Passing, Leading Internet Groups and
Online Platforms Announce Day of Activism Against NSA Surveillance.</p>
<p>Participants including Access, Demand Progress, the Electronic Frontier
Foundation, Fight for the Future, Free Press, BoingBoing, Reddit, Mozilla,
ThoughtWorks, and more to come, will join potentially millions of Internet users
to pressure lawmakers to end mass surveillance -- of both Americans and the
citizens of the whole world.</p>
<p><a class="reference external" href="https://thedaywefightback.org/">https://thedaywefightback.org/</a></p>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Oscar</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/e57a37c5" />
    <id>https://llucax.com/blog/blog.cgi/post/e57a37c5</id>
    <summary>Oscar</summary>
    <published>2013-12-17T20:26:03Z</published>
    <updated>2013-12-17T20:26:03Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<iframe width="560" height="315"
        src="https://www.youtube.com/embed/2QUacU0I4yU"
        frameborder="0" allowfullscreen></iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>First Flattr</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/5d95a4d2" />
    <id>https://llucax.com/blog/blog.cgi/post/5d95a4d2</id>
    <summary>First Flattr</summary>
    <published>2013-11-16T00:24:03Z</published>
    <updated>2013-11-16T00:24:03Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>9 months ago I decided to try <a class="reference external" href="https://flattr.com/">Flattr</a>. I created an account, put some money on
it, started flattring and <a class="reference external" href="/blog/blog/post/-235be78e">made myself flattrable</a>. But nothing happened. Also
sometimes you don't know if the people you are flattring will even reclaim your
flattrs (in services that automatically provides flattr links).</p>
<p>Conclusion, I got quite disappointed. But today I see the light again, as
I received my <a class="reference external" href="https://flattr.com/thing/1141699/eventxx">first and only flattr</a> (for <a class="reference external" href="/proj/eventxx/">eventxx</a>). Thanks whoever you are,
anonymous hero, you brought hope again to humanity :P</p>
<p>Anyway, I'll try to give it a shot again, and try to keep the wheel moving.</p>
<p>You should do that too.</p>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Obvio</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/eeb170b0" />
    <id>https://llucax.com/blog/blog.cgi/post/eeb170b0</id>
    <summary>Obvio</summary>
    <published>2013-07-23T16:54:10Z</published>
    <updated>2013-07-23T16:54:10Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<div class="figure align-center">
<a class="reference external image-reference" href="https://llucax.com/blog/posts/2013/07/23-obvio-01.jpg"><img alt="No tocar" class="pic" src="https://llucax.com/blog/posts/2013/07/23-obvio-01.mini.jpg" /></a>
<p class="caption">En una exposición de cactus.</p>
<div class="legend">
<div class="line-block">
<div class="line">2013-05-26 17:05:11 CEST</div>
<div class="line">[ Canon PowerShot SX210 IS 1/60s f/3.1 iso200 5.0 mm Daylight Aperture-priority AE  ]</div>
</div>
</div>
</div>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Better Call Dominguez!</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/a1102a5d" />
    <id>https://llucax.com/blog/blog.cgi/post/a1102a5d</id>
    <summary>Better Call Dominguez!</summary>
    <published>2013-07-22T17:19:17Z</published>
    <updated>2013-07-22T17:19:17Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>Seems like this is the real <a class="reference external" href="https://en.wikipedia.org/wiki/Saul_Goodman_%28Breaking_Bad%29">Saul Goodman</a>!</p>
<div class="figure align-center">
<a class="reference external image-reference" href="https://llucax.com/blog/posts/2013/07/better-call-dominguez-01.jpg"><img alt="On a bus" class="pic" src="https://llucax.com/blog/posts/2013/07/better-call-dominguez-01.mini.jpg" /></a>
<p class="caption">On a bus</p>
<div class="legend">
<div class="line-block">
<div class="line">2013-04-29 11:18:01 CEST</div>
<div class="line">[ Canon PowerShot SX210 IS 1/125s f/3.5 iso80 6.6 mm Auto Aperture-priority AE  ]</div>
</div>
</div>
</div>
<div class="figure align-center">
<a class="reference external image-reference" href="https://llucax.com/blog/posts/2013/07/better-call-dominguez-02.jpg"><img alt="On the metro" class="pic" src="https://llucax.com/blog/posts/2013/07/better-call-dominguez-02.mini.jpg" /></a>
<p class="caption">On the metro</p>
<div class="legend">
<div class="line-block">
<div class="line">2013-04-29 11:50:21 CEST</div>
<div class="line">[ Canon PowerShot SX210 IS 1/60s f/3.1 iso320 5.0 mm Auto Aperture-priority AE  ]</div>
</div>
</div>
</div>
<p>Signs like these were all over the streets in LA.</p>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Radiohead Nude via zx80+printer+scanner+hdd</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/57cabf0e" />
    <id>https://llucax.com/blog/blog.cgi/post/57cabf0e</id>
    <summary>Radiohead Nude via zx80+printer+scanner+hdd</summary>
    <published>2013-04-13T20:53:02Z</published>
    <updated>2013-04-13T20:53:02Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>Fucking awesome, be patient for the first minute...</p>
<iframe width="560" height="315"
        src="https://www.youtube.com/embed/Xxz630u7YlQ"
        frameborder="0" allowfullscreen></iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>The Money Myth</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/f717dac5" />
    <id>https://llucax.com/blog/blog.cgi/post/f717dac5</id>
    <summary>The Money Myth</summary>
    <published>2013-02-21T21:13:47Z</published>
    <updated>2013-02-21T21:13:47Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<iframe width="560" height="315"
        src="https://www.youtube.com/embed/X5uGLbV5zVo"
        frameborder="0" allowfullscreen></iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>Flattr</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/dca41872" />
    <id>https://llucax.com/blog/blog.cgi/post/dca41872</id>
    <summary>Flattr</summary>
    <published>2013-02-17T21:02:15Z</published>
    <updated>2013-02-17T21:02:15Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<p>I learned that <a class="reference external" href="https://flattr.com/">Flattr</a>, a social micropayment service that I've been
overlooking for a long time, was created by some of the founders of <a class="reference external" href="https://thepiratebay.se/">The Pirate
Bay</a> after watching <a class="reference external" href="http://watch.tpbafk.tv/">TPB AFK</a>.</p>
<p>I'm trying to donate (or pay) more and more to people using alternative means to
produce stuff, like artists using <a class="reference external" href="https://creativecommons.org/">CC</a> licenses or software developers working
with free licenses (I already <em>bought a copy</em> of the movie :). I feel like
I have to get more involved to keep the wheel spinning and help people keep
doing stuff, cutting the intermediaries as much as possible.</p>
<p>I don't know why I had some resistance to get into Flattr, maybe is because
Facebook made me hate anything that have a thumbs up, or a +1 or counter, but
knowing the history behind it a little better encouraged me to finally get an
<a class="reference external" href="https://flattr.com/profile/llucax">account</a> and start using Flattr. And is really nice. Is much easier than going
through Paypal each time a want to give some bucks to someone, and allows you to
even make very small donations.</p>
<p>I recommend to see this introductory video:</p>
<iframe width="560" height="315"
        src="https://www.youtube.com/embed/9zrMlEEWBgY"
        frameborder="0" allowfullscreen></iframe><p>I also decided to flattr-ize all my website, each project individually and even
this blog. Not exactly for economical reasons (I think very few people know
about anything I do so I don't really expect to earn any money from this), but
as another way to spread the word. Also, I'm really curious about what I just
said, I really wonder if there is someone out there grateful enough to make even
a micro-donation to anything I do or did :)</p>
<p>Anyway, I would like to recommend to do the same, if you do something great, add
a Flattr button to what you do, and if you like something out there and it has
a Flattr, click it. Let's see if it helps to keep the wheel spinning :)</p>
<!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		

  <entry>
    <title>TPB AFK</title>
    <author><name>Leandro Lucarella</name></author>
    <link href="https://llucax.com/blog/blog.cgi/post/98ca90b7" />
    <id>https://llucax.com/blog/blog.cgi/post/98ca90b7</id>
    <summary>TPB AFK</summary>
    <published>2013-01-13T20:01:41Z</published>
    <updated>2013-01-13T20:01:41Z</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
<iframe width="560" height="315"
        src="https://www.youtube.com/embed/KCAGb7oSwDs"
        frameborder="0" allowfullscreen></iframe><!-- vim: set et sw=3 sts=3 tw=80 fo+=lt1n: -->

      </div>
    </content>
  </entry>
		
</feed>
<!-- render time: 0:00:00.987713 -->
