<?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</title>
	<atom:link href="http://soledadpenades.com/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>London-New York (and back), via Hong Kong, Macau, Tokyo and San Francisco</title>
		<link>http://soledadpenades.com/2012/01/29/london-new-york-and-back-via-hong-kong-macau-tokyo-and-san-francisco/</link>
		<comments>http://soledadpenades.com/2012/01/29/london-new-york-and-back-via-hong-kong-macau-tokyo-and-san-francisco/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 23:03:40 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[hong kong]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[macau]]></category>
		<category><![CDATA[new york]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[sketches]]></category>
		<category><![CDATA[tokyo]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3891</guid>
		<description><![CDATA[The sketch book I mentioned a couple weeks ago has finally been released! To recap (just in case you accidentally ended here and have no context), it is a travel sketchbook depicting our experiences while travelling around the world these past April and May. I&#8217;ve finally settled on building a simple HTML(5) page with a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://5013.es/data/projects/b/proj_big.jpg" alt="London-New York (and back), via Hong Kong, Macau, Tokyo and San Francisco" /></p>
<p>The sketch book I mentioned <a href="http://soledadpenades.com/2012/01/12/the-end-of-the-world/">a couple weeks ago</a> has finally been <a href="http://5013.es/sketches/london-newyork/">released</a>! To recap (just in case you accidentally ended here and have no context), it is a travel sketchbook depicting our experiences while travelling <em>around the world</em> these past April and May.</p>
<p>I&#8217;ve finally settled on building a simple HTML(5) page with a sprinkle of Javascript to navigate the bigger images. Something that gets the job done, which is showing you my crazy sketches!</p>
<p>I might possibly build a Kindle version in the near future, so if you&#8217;re a Kindle user, stay tuned ;-)</p>
<p>In the meantime you can read a bit about the background and the &#8220;tools&#8221; in the <a href="http://5013.es/p/b">project page</a>.</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3891&amp;md5=e135772421736291f5d9213e7cab3282" 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/29/london-new-york-and-back-via-hong-kong-macau-tokyo-and-san-francisco/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A hack to parse RSS feeds with php</title>
		<link>http://soledadpenades.com/2012/01/21/a-hack-to-parse-rss-feeds-with-php/</link>
		<comments>http://soledadpenades.com/2012/01/21/a-hack-to-parse-rss-feeds-with-php/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 17:19:37 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3883</guid>
		<description><![CDATA[Just happened to assemble this script hack recently, out of the requirement for a quick&#8217;n'dirty feed parsing feature: $feed_contents = file_get_contents&#40;$feed_url&#41;; $xml = simplexml_load_string&#40;$feed_contents, LIBXML_NOCDATA&#41;; $feed_array = json_decode&#40;json_encode&#40;$xml&#41;&#41;; print_r&#40;$feed_array&#41;; // Surprise!! Now this evidently is not SimplePie or Magpie RSS or whatever feed reader library tickles your fancy*, but assuming the feed will never be [...]]]></description>
			<content:encoded><![CDATA[<p>Just happened to assemble this <del datetime="2012-01-21T16:52:31+00:00">script</del> hack recently, out of the requirement for a quick&#8217;n'dirty feed parsing feature:</p>
<div class="syhi_block"><code><span style="color: #000088;">$feed_contents</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/file_get_contents"><span style="color: #990000;">file_get_contents</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed_url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$xml</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/simplexml_load_string"><span style="color: #990000;">simplexml_load_string</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed_contents</span><span style="color: #339933;">,</span> LIBXML_NOCDATA<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <br />
<span style="color: #000088;">$feed_array</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/json_decode"><span style="color: #990000;">json_decode</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/json_encode"><span style="color: #990000;">json_encode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$xml</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/print_r"><span style="color: #990000;">print_r</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed_array</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Surprise!!</span></code></div>
<p>Now this evidently is <em>not</em> <a href="http://simplepie.org/">SimplePie</a> or <a href="http://magpierss.sourceforge.net/">Magpie RSS</a> or whatever feed reader library tickles your fancy<a href="http://www.phrases.org.uk/bulletin_board/5/messages/888.html"><super>*</super></a>, but assuming the feed will never be malformed, it can save you lots of time! Isn&#8217;t that what php was meant for? :-P<br />
<span id="more-3883"></span><br />
At first it surprised me that it would even work&#8211;but it seems that the JSON module interoperates very nicely with SimpleXML objects. At the end you get an associative array in $feed_array which is a nice representation of the RSS 2 feed. It&#8217;s important to highlight the <strong>LIBXML_NOCDATA</strong> parameter, as it makes sure the CDATA nodes are read as text. Otherwise you would just get empty feed items, etc.</p>
<p>Obviously for this to work you need both the JSON and SimpleXML modules installed and enabled in your server. Since that&#8217;s something that always worries me, I wrote another quick script to test whether the hack would work on the server:</p>
<div class="syhi_block"><code><span style="color: #000088;">$functions</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'simplexml_load_string'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'json_decode'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$functions</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$f</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$f</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' exists? '</span> <span style="color: #339933;">.</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/function_exists"><span style="color: #990000;">function_exists</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$f</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'yes'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">'no'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;br /&gt;'</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></code></div>
<p>It should output something like&#8230;</p>
<div class="syhi_block"><code>simplexml_load_string yes<br />
json_decode yes</code></div>
<p>Happy hacking! :-P</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3883&amp;md5=15f8fcbbdc06d67bd17dfd2a232b5df0" 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/21/a-hack-to-parse-rss-feeds-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Friday the 13th / Saturday the 14th</title>
		<link>http://soledadpenades.com/2012/01/14/friday-the-13th-saturday-the-14th/</link>
		<comments>http://soledadpenades.com/2012/01/14/friday-the-13th-saturday-the-14th/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 13:18:24 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Common life]]></category>
		<category><![CDATA[80s]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[stories]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3870</guid>
		<description><![CDATA[Call me whatever you want to call me, but whenever I hear &#8220;Friday the 13th&#8221;, I immediately think of the image above. It was on the front cover of a computer magazine back in 1990 (download it here). Computer viruses (virii?) had just become immensely popular in Spain thanks to the fact that the Morris [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/imgs/2012/viernes13.jpg" alt="Viernes 13" /></p>
<p>Call me whatever you want to call me, but whenever I hear &#8220;Friday the 13th&#8221;, I immediately think of the image above.<br />
<span id="more-3870"></span><br />
It was on the front cover of a computer magazine back in 1990 (download it <a href="http://www.archive.org/details/amstrad-profesional-pc-soft-20">here</a>). Computer viruses (virii?) had just become immensely popular in Spain thanks to the fact that</p>
<ol>
<li>the <a href="http://en.wikipedia.org/wiki/Morris_worm">Morris worm</a> was still quite recent, and</li>
<li>several huge organisations in Spain had become infected</li>
</ol>
<p>&#8230; triggering a massive, hysterical coverage in newspapers and TV (a moderate <a href="http://hemeroteca.lavanguardia.com/preview/1989/10/14/pagina-26/33078876/pdf.html?search=%22viernes%2013%22%20virus">example</a>, and more results from <a href="http://hemeroteca.lavanguardia.com/search.html?q=%22viernes+13%22+virus+ministerio&#038;bd=01&#038;bm=02&#038;by=1988&#038;ed=01&#038;em=12&#038;ey=1991&#038;keywords=&#038;__checkbox_home=true&#038;edition=&#038;exclude=&#038;x=49&#038;y=12&#038;excludeAds=true&#038;sortBy=&#038;order=">the archive</a>).</p>
<p>The most popular virus in Spain was &#8220;Friday the 13th&#8221;, nicknamed <em>Viernes 13</em> in Spanish (hence the image header). I always found incredibly funny that <strong>one of the removal tools was called &#8220;Sábado 14&#8243;</strong> (&#8220;Saturday the 14th&#8221;).</p>
<p><strong>That collaged computer corpse became my computing nightmare.</strong> It was a terrifying symbol: what we could end up looking like if we allowed those malicious (and mysterious) virus take over the world.</p>
<p>In my naivety, it scared me in more than one way. For some months I tended to attribute every strange computer behaviour to virus, even if we were simply using an Amstrad PCW, without modem or anything remotely similar, didn&#8217;t know anyone else with a machine like this one and thus did never, <em>ever</em>, pirate software. All the software we used was either expensively original back then, or typed from magazine listings, so we had a very low chance of a virus getting into that machine. Taking aside the fact that it didn&#8217;t have a hard drive, of course.</p>
<p>That didn&#8217;t matter: I suspected that the computer might have got infected <em>somehow</em>. Locoscript making strange things? It might have been a virus. The last line of the screen filled with strange garbage? (it tended to randomly display &#8220;~&#8221; characters when you pressed a key while the printer was working). It surely was a virus, and the ~ messages were its output. The keys didn&#8217;t work properly? (because they were mechanically jammed). A virus, no doubt!</p>
<p>We even discussed virus at school. I mean, just imagine 80&#8242;s kids, nine or ten years old, discussing virus on the morning break. Speculating whether this or that thing that happened when you turned on the video recorder could possibly be a virus. Mental!</p>
<p>I didn&#8217;t see &#8220;a real virus&#8221; until we got a PC, and I started to exchange software with more kids in the computers classroom. Even though, those were quite mild infections. Maybe I wasn&#8217;t a very dedicated pirate? I remember only four or three viruses we got: <a href="http://en.wikipedia.org/wiki/Brain_(computer_virus)">Brain</a>, <a href="http://en.wikipedia.org/wiki/Stoned_virus">Stoned</a> and that one featuring a <a href="http://en.wikipedia.org/wiki/Bouncing_Ball_(computer_virus)">bouncing</a> ball.</p>
<p>I recall using a couple of command line tools to get rid of the virus. You first had to run SCAN.EXE and then there was another tool (CLEAN.EXE?) for removing the virus. That was the first &#8220;proper&#8221; antivirus I used (it <a href="http://ask.slashdot.org/comments.pl?cid=32761790&#038;sid=1697416">seems</a> those were the early beginnings of the McAfee antivirus family). Prior to that, the solutions consisted in running an specific tool for each virus you wanted to remove, or some funny ideas such as making sure the computer was turned off on the day the virus would turn on its payload, or formatting hard drives at low level. That could take ages, and those disks had just 20 megabytes!</p>
<p>Still, those virus were moderately curious in a way, like little pesky creatures that had just arrived into your computer by chance. Annoying, yes, but an unexpected, surprising phenomenon nevertheless. The arrival of the Internet changed things for bad in this field, boooo!</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3870&amp;md5=2703dee222b0106790450e5118a6c15b" 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/14/friday-the-13th-saturday-the-14th/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The end of the world</title>
		<link>http://soledadpenades.com/2012/01/12/the-end-of-the-world/</link>
		<comments>http://soledadpenades.com/2012/01/12/the-end-of-the-world/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:10:56 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[resolutions]]></category>
		<category><![CDATA[sketches]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=3860</guid>
		<description><![CDATA[It&#8217;s a New Year&#8211;we&#8217;re actually twelve days off it and I still haven&#8217;t found time to sit down and write about it. Which is good! It&#8217;s also many years since I last wrote a &#8220;beginning of a year&#8221; post. It was different back then&#8211;blogs were the rage; journalists were scared of amateur bloggers stealing their [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a New Year&#8211;we&#8217;re actually twelve days off it and I still haven&#8217;t found time to sit down and write about it. Which is good!<br />
<span id="more-3860"></span><br />
It&#8217;s also many years since I last wrote a &#8220;beginning of a year&#8221; <a href="http://soledadpenades.com/2006/01/02/2006-to-do-list/">post</a>. It was different back then&#8211;blogs were <em>the rage</em>; journalists were scared of amateur bloggers stealing their jobs and wrote meta-articles describing a pale future in which everything would be clumsily assembled together by said novices. And, well, us the newbies didn&#8217;t care, and posted about everything in our blogs anyway. Then the &#8220;web 2.0&#8243; came in full swing, and we diluted <em>our</em> content in a myriad of other websites, some of which have disappeared or radically changed their behaviour/rules since then. I&#8217;m not too happy with that, and so I declare that one of my main resolutions for this year is to <strong>post here more often</strong>.</p>
<p>That doesn&#8217;t mean that I won&#8217;t be posting stuff to other websites such as plus or twitter, as I&#8217;ve noticed that many people use them as a mixture of human RSS aggregators and comments section.</p>
<p>Onwards to this year&#8217;s projects/resolutions: since this is the year <a href="http://en.wikipedia.org/wiki/2012_phenomenon">the world ends</a>, I decided to make sure my projects are finished before that happens. I don&#8217;t want to leave an incongruent mess of unfinished stuff for future space-archaeologists to decipher, if there&#8217;s something to be found on Earth after the great cataclysm or whatever it is that will exterminate us. I&#8217;d rather make it easy for them to make sense of what it was all about.</p>
<p><img src="/imgs/2012/journal.jpg" alt="travel journal" /></p>
<p>One of the first things I have finished this year is my first ever <strong>travel diary</strong> of sorts. It depicts our journey from London to Hong Kong, then Tokyo, San Francisco and finally New York this past April-May 2011, with special guests such as <a href="http://www.aaronkoblin.com/">Aaron Koblin</a>, <a href="http://en.wikipedia.org/wiki/Jeri_Ellsworth">Jeri Ellsworth</a> and <a href="http://en.wikipedia.org/wiki/Christopher_Poole">moot</a> (to mention a few). It was quite entertaining to draw <em>famous</em> people! Although I am not sure my interpretation is very truthful, but that&#8217;s part of the fun anyway!</p>
<p>I just finished scanning it a couple days ago, and I&#8217;m still trying to decide what&#8217;s the best way to publish/share it. In any case, I still have to crop, align and export all the pages (<em>the 60+ pages</em>) so I&#8217;m pretty sure I&#8217;ll get some ideas in the meantime, either by myself or in the comments (hint! hint! hint!) ;-)</p>
 <p><a href="http://soledadpenades.com/?flattrss_redirect&amp;id=3860&amp;md5=3e26d0460fdc609c77bcfd1739c45170" 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/the-end-of-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

