<?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>Albertux# ./Blog</title>
	<atom:link href="http://albertux.ayalasoft.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://albertux.ayalasoft.net</link>
	<description>Welcome to the new decade: Java is a restricted platform, Google is evil, Apple is a monopoly and Microsoft are the underdogs</description>
	<lastBuildDate>Sun, 08 Aug 2010 21:00:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Firts Week August</title>
		<link>http://albertux.ayalasoft.net/2010/08/08/firts-week-august/</link>
		<comments>http://albertux.ayalasoft.net/2010/08/08/firts-week-august/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 21:00:39 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[3taps]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[craigseed]]></category>
		<category><![CDATA[craigslist]]></category>
		<category><![CDATA[hackerdojo]]></category>
		<category><![CDATA[indeed]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3457</guid>
		<description><![CDATA[zin]]></description>
			<content:encoded><![CDATA[<p><strong>First Week August</strong></p>
<p>I know the last month was <strike>fucking</strike> lazy, but August I think is different, the first week:</p>
<p><img src="http://albertux.ayalasoft.net/img/0803101721a.jpg"></p>
<hr />
CentOS 5.5 setup on VirtualBox with LAMP</p>
<p>Download the netinstall ISO from mirrors:<br />
- <a href="http://isoredirect.centos.org/centos/5.5/isos/i386/" target="_blank">CentOS-5.5-i386-netinstall.iso</a><br />
- <a href="http://isoredirect.centos.org/centos/5.5/isos/x86_64/" target="_blank">CentOS-5.5-x86_64-netinstall.iso</a></p>
<p><img src="http://albertux.ayalasoft.net/img/install-centos-vbox.png"></p>
<p>[HTTP Setup]<br />
Website name: <font color="red">mirror.centos.org</font><br />
CentOS Directory: <font color="red">centos/5.5/os/i386</font></p>
<p>After many screens <strong>select only server</strong></p>
<p>Set up LAMP on CentOS 5.5 Server:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> mysql-server <span style="color: #666666; font-style: italic;"># mysql server</span>
yum <span style="color: #c20cb9; font-weight: bold;">install</span> php-mysql <span style="color: #666666; font-style: italic;"># php with mysql</span>
<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>mysqld start <span style="color: #666666; font-style: italic;"># start mysql (password empty)</span>
<span style="color: #666666; font-style: italic;"># put mysqld and httpd in run levels</span>
chkconfig mysqld <span style="color: #660033;">--level</span> <span style="color: #000000;">2345</span> on
chkconfig httpd <span style="color: #660033;">--level</span> <span style="color: #000000;">2345</span> on <span style="color: #666666; font-style: italic;"># httpd is all ready</span></pre></div></div>

<p>If you want to start CentOS on background:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Port forward SSH to 2222 localhost:</span>
VBoxManage modifyvm <span style="color: #ff0000;">&quot;CentOS&quot;</span> <span style="color: #660033;">--natpf1</span> <span style="color: #ff0000;">&quot;guestsssh,tcp,,2222,,22&quot;</span>
<span style="color: #666666; font-style: italic;"># Port forward HTTP to 8080 localhost:</span>
VBoxManage modifyvm <span style="color: #ff0000;">&quot;CentOS&quot;</span> <span style="color: #660033;">--natpf1</span> <span style="color: #ff0000;">&quot;guestshttp,tcp,,8080,,80&quot;</span>
<span style="color: #666666; font-style: italic;"># bash aliases</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">start_centos</span>=<span style="color: #ff0000;">'VBoxManage startvm &quot;CentOS&quot; --type headless'</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">centos</span>=<span style="color: #ff0000;">'ssh -p 2222 root@localhost'</span></pre></div></div>

<hr />
Make twitter useful:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#  goto http://code.google.com/p/python-twitter/ on ubuntu:</span>
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> python-twitter</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #808080; font-style: italic;"># -*- coding: UTF-8 -*-</span>
<span style="color: #808080; font-style: italic;"># Albertux (Alberto Isaac Ayala Esquivias)</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">re</span>, twitter
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">subprocess</span>
<span style="color: #808080; font-style: italic;">####################</span>
<span style="color: #808080; font-style: italic;"># TWITTER  ACCOUNT #</span>
username=<span style="color: #483d8b;">'_________'</span>
password=<span style="color: #483d8b;">'_________'</span>
<span style="color: #808080; font-style: italic;">####################</span>
<span style="color: #808080; font-style: italic;">####################</span>
<span style="color: #808080; font-style: italic;"># EXECUTE COMMANDS #</span>
start = <span style="color: black;">&#91;</span><span style="color: #483d8b;">&quot;command&quot;</span>,<span style="color: #483d8b;">&quot;param1&quot;</span>,<span style="color: #483d8b;">&quot;param2&quot;</span><span style="color: black;">&#93;</span>
stop = <span style="color: black;">&#91;</span><span style="color: #483d8b;">&quot;command&quot;</span>,<span style="color: #483d8b;">&quot;param1&quot;</span>,<span style="color: #483d8b;">&quot;param2&quot;</span><span style="color: black;">&#93;</span>
<span style="color: #808080; font-style: italic;">####################</span>
<span style="color: #808080; font-style: italic;">####################</span>
api = twitter.<span style="color: black;">Api</span><span style="color: black;">&#40;</span>username, password<span style="color: black;">&#41;</span>
statuses = api.<span style="color: black;">GetUserTimeline</span><span style="color: black;">&#40;</span>USER_YOU_FOLLOW<span style="color: black;">&#41;</span>
msgs = <span style="color: black;">&#91;</span>s.<span style="color: black;">text</span> <span style="color: #ff7700;font-weight:bold;">for</span> s <span style="color: #ff7700;font-weight:bold;">in</span> statuses<span style="color: black;">&#93;</span>
last_msg = msgs<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>
flag = <span style="color: #dc143c;">re</span>.<span style="color: black;">findall</span><span style="color: black;">&#40;</span>r<span style="color: #483d8b;">&quot;REGEX&quot;</span>,last_msg,<span style="color: #dc143c;">re</span>.<span style="color: black;">I</span><span style="color: black;">&#41;</span>
<span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #008000;">len</span><span style="color: black;">&#40;</span>flag<span style="color: black;">&#41;</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #ff4500;">0</span>:
    <span style="color: #dc143c;">subprocess</span>.<span style="color: black;">call</span><span style="color: black;">&#40;</span>stop<span style="color: black;">&#41;</span>
<span style="color: #ff7700;font-weight:bold;">else</span>:
    <span style="color: #dc143c;">subprocess</span>.<span style="color: black;">call</span><span style="color: black;">&#40;</span>start<span style="color: black;">&#41;</span></pre></div></div>

<p>using bash:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> watch <span style="color: #660033;">-n</span> <span style="color: #000000;">60</span> .<span style="color: #000000; font-weight: bold;">/</span>twitter_check</pre></div></div>

<hr />
3taps heartbeater (latency of post):<br />
<img src="http://albertux.ayalasoft.net/img/grabber-indeed-3taps.png"></p>
<hr />
Myself:<br />
<img src="http://albertux.ayalasoft.net/img/0803102114a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0804101839a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806100742a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806101108a.jpg"></p>
<hr />
Dr Martin Luther King Jr Pics:<br />
<img src="http://albertux.ayalasoft.net/img/0804101306a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0804101306b.jpg"></p>
<hr />
Hackerdojo pics:<br />
<img src="http://albertux.ayalasoft.net/img/0803101930a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806101906b.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806101906c.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806101907a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/0806102224a.jpg"></p>
<hr />
Random pics:<br />
P0rn knowledge:<br />
<img src="http://albertux.ayalasoft.net/img/0804101309a.jpg"><br />
Damn I lost this pin of <a href="http://hackerdojo.pbworks.com/" target="_blank">#hackerdojo</a> :&#8217;(<br />
<img src="http://albertux.ayalasoft.net/img/0804101052a.jpg"></p>
<hr />
Personal projects:</p>
<ul>
<li><a href="http://www.craigseed.org" target="_blank">www.craigseed.org</a>  (a <a href="http://www.craigslist.org" target="_blank">craigslist</a> filter, status alpha-dev)</li>
<li><a href="http://www.latincoders.com" target="_blank">www.latincoders.com</a> (nothing online)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/08/08/firts-week-august/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>w@nder July</title>
		<link>http://albertux.ayalasoft.net/2010/08/01/wander-july-wonder-july/</link>
		<comments>http://albertux.ayalasoft.net/2010/08/01/wander-july-wonder-july/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 06:30:09 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[CA]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3388</guid>
		<description><![CDATA[<!--:en-->
<!--:-->]]></description>
			<content:encoded><![CDATA[<p><strong>wander July &#8211; wonder July</strong></p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#include &quot;family.h&quot;</span></pre></div></div>

<p>This month was good.</p>
<hr />
Some days I go to <a href="http://hackerdojo.pbworks.com/" target="_blank">#hackerdojo</a> on  Mountain View<br />
<img src="http://albertux.ayalasoft.net/img/voyager-hackerdojo-sticker.jpg"></p>
<hr />
A simple tweet script using <a href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a></p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #ff7700;font-weight:bold;">import</span> twitter, <span style="color: #dc143c;">sys</span>
api = twitter.<span style="color: black;">Api</span><span style="color: black;">&#40;</span>USERNAME, PASSWORD<span style="color: black;">&#41;</span>
<span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: black;">&#40;</span><span style="color: #008000;">len</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">sys</span>.<span style="color: black;">argv</span><span style="color: black;">&#41;</span> <span style="color: #66cc66;">&lt;</span> <span style="color: #ff4500;">2</span><span style="color: black;">&#41;</span>:
    <span style="color: #dc143c;">sys</span>.<span style="color: black;">exit</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
tweet = <span style="color: #dc143c;">sys</span>.<span style="color: black;">argv</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>
status = api.<span style="color: black;">PostUpdate</span><span style="color: black;">&#40;</span>tweet<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span>:<span style="color: #ff4500;">140</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
<span style="color: #ff7700;font-weight:bold;">print</span> status.<span style="color: black;">text</span></pre></div></div>

<p>howto use:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>tweet <span style="color: #ff0000;">&quot;tweet from command line&quot;</span></pre></div></div>

<hr />
<a href="http://www.qianqin.de/qtranslate/" target="_blank">qTranslate</a> 2.5.8 works good on WordPress 3.0.1, edit qtranslate.php:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// only replace the next line:</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'QT_SUPPORTED_WP_VERSION'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'3.0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// for this:</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'QT_SUPPORTED_WP_VERSION'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'3.0.1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<hr />
<strong>time</strong> command (<strong>stderr</strong>) on bash maybe cause problems you need to use the full path or use another shell (using ubuntu lucid lynx):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #000000; font-weight: bold;">time</span> <span style="color: #660033;">-o</span> output.log <span style="color: #007800;">$CMD</span> <span style="color: #666666; font-style: italic;"># -o: command not found, using /bin/dash works</span>
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000; font-weight: bold;">time</span> <span style="color: #660033;">-o</span> output.log <span style="color: #007800;">$CMD</span> <span style="color: #666666; font-style: italic;"># works</span>
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000; font-weight: bold;">time</span> <span style="color: #007800;">$CMD</span> <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;</span> output.log <span style="color: #666666; font-style: italic;"># works</span></pre></div></div>

<hr />
Yep I have the <strong>driver license</strong> (from DMV not Tropicana):<br />
<img src="http://albertux.ayalasoft.net/img/albertux-dl-id-ca.jpg"></p>
<hr />
<strong>family/friends this photos are chronologically:</strong><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0703100849a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0708100805a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0714100808b.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0718100917a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0725101448a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-0730101041b.jpg"></p>
<hr />
<strong>3taps</strong><br />
Now I&#8217;m using <a href="http://aws.amazon.com/ec2/" target="_blank">Amazon EC2</a> to handle the information and scripts I have for <a href="http://www.3taps.com/" target="_blank">www.3taps.com</a><br />
<img src="http://albertux.ayalasoft.net/img/3taps-indeed-states.png"><br />
<img src="http://albertux.ayalasoft.net/img/3taps-indeed-categories.png"></p>
<hr />
Many moves/changes in this month, some projects in my head. (the next week maybe running one of them)</p>
<hr />
TODO 4 August:</p>
<ul>
<li>Make and follow a schedule</li>
<li>Start up <a href="http://www.ayalasoft.net" target="_blank">www.ayalasoft.net</a></li>
<li>Cut my hair (maybe)</li>
<li>Get a car (I hope so)</li>
<li>Make a blueprint for world domination</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/08/01/wander-july-wonder-july/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Switch DNS</title>
		<link>http://albertux.ayalasoft.net/2010/07/01/switch-dns/</link>
		<comments>http://albertux.ayalasoft.net/2010/07/01/switch-dns/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:23:33 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[dns]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3366</guid>
		<description><![CDATA[#!/bin/bash # Author: Albertux (Alberto Isaac Ayala Esquivias) # Script: switch the nameservers (DNS) &#160; if &#91; ! $&#40; id -u &#41; -eq 0 &#93; then echo &#34;Run this script as root&#34; exit fi &#160; if &#91; $# -le 0 &#93; then echo &#34;Usage $0 [open&#124;google&#124;comodo&#124;old]&#34; fi &#160; if &#91; ! -f /etc/resolv.conf.bak &#93; then [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;"># Author: Albertux (Alberto Isaac Ayala Esquivias)</span>
<span style="color: #666666; font-style: italic;"># Script: switch the nameservers (DNS)</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">id</span> <span style="color: #660033;">-u</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Run this script as root&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$#</span> <span style="color: #660033;">-le</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage $0 [open|google|comodo|old]&quot;</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span>  <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf.bak <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf.bak
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">case</span> $<span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">in</span>
	open<span style="color: #7a0874; font-weight: bold;">&#41;</span>
		<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;# OpenDNS<span style="color: #000099; font-weight: bold;">\n</span>nameserver 208.67.222.222<span style="color: #000099; font-weight: bold;">\n</span>nameserver 208.67.220.220&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf
	<span style="color: #000000; font-weight: bold;">;;</span>
	google<span style="color: #7a0874; font-weight: bold;">&#41;</span>
		<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;# Google Public DNS<span style="color: #000099; font-weight: bold;">\n</span>nameserver 8.8.8.8<span style="color: #000099; font-weight: bold;">\n</span>nameserver 8.8.4.4&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf
	<span style="color: #000000; font-weight: bold;">;;</span>
	comodo<span style="color: #7a0874; font-weight: bold;">&#41;</span>
		<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;# Comodo Secure DNS<span style="color: #000099; font-weight: bold;">\n</span>nameserver 156.154.70.22<span style="color: #000099; font-weight: bold;">\n</span>nameserver 156.154.71.22&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf
	<span style="color: #000000; font-weight: bold;">;;</span>
	old<span style="color: #7a0874; font-weight: bold;">&#41;</span>
		<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf.bak <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf
	<span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">esac</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/07/01/switch-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperHappyDevHouse SHDH 38</title>
		<link>http://albertux.ayalasoft.net/2010/06/28/superhappydevhouse-shdh-38/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/28/superhappydevhouse-shdh-38/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 16:32:48 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[hackerdojo]]></category>
		<category><![CDATA[shdh]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3340</guid>
		<description><![CDATA[SuperHappyDevHouse SHDH 38 http://superhappydevhouse.org/SuperHappyDevHouse38 SHDH: 06/26/2010 03:00 pm &#8211; 06/27/2010 06:00 am. Werewolf Survivors [The video was edited using avidemux and mencoder] EOL-EOF]]></description>
			<content:encoded><![CDATA[<p><strong>SuperHappyDevHouse SHDH 38</strong></p>
<p><a href="http://superhappydevhouse.org/SuperHappyDevHouse38" target="_blank">http://superhappydevhouse.org/SuperHappyDevHouse38</a></p>
<p>SHDH: 06/26/2010 03:00 pm &#8211; 06/27/2010 06:00 am.</p>
<p><strong>Werewolf Survivors</strong><br />
<a href="http://www.flickr.com/photos/ayalasoft/4740173686/" title="Werewolf survivors by AyalaSoft, on Flickr"><img src="http://farm5.static.flickr.com/4076/4740173686_12e4d559b9.jpg" width="500" height="375" alt="Werewolf survivors" /></a></p>
<p>[The video was edited using <a href="http://fixounet.free.fr/avidemux/" target="_blank">avidemux</a> and <a href="http://www.mplayerhq.hu" target="_blank">mencoder</a>]</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/PKAh-pYs-yc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PKAh-pYs-yc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><strong>EOL-EOF</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/28/superhappydevhouse-shdh-38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Help Me to Find a Job</title>
		<link>http://albertux.ayalasoft.net/2010/06/22/ruby-help-me-to-find-a-job/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/22/ruby-help-me-to-find-a-job/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 20:11:47 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[craigslist]]></category>
		<category><![CDATA[indeed]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3296</guid>
		<description><![CDATA[Ruby Help Me to Find a Job On Indeed: #!/usr/bin/ruby -w # Autor: Albertux (Alberto Isaac Ayala Esquivias) # URL/Blog: http://Albertux.AyalaSoft.com # E-mail/spam: &#60;albertoi7@gmail.com&#62; # Free Coke License: If you see me some day give me a free coke please. # Description: This script maybe help people to find a fucking Job &#160; require &#34;rss/2.0&#34; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Ruby Help Me to Find a Job</strong></p>
<p>On Indeed:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">#!/usr/bin/ruby -w</span>
<span style="color:#008000; font-style:italic;"># Autor: Albertux (Alberto Isaac Ayala Esquivias)</span>
<span style="color:#008000; font-style:italic;"># URL/Blog: http://Albertux.AyalaSoft.com</span>
<span style="color:#008000; font-style:italic;"># E-mail/spam: &lt;albertoi7@gmail.com&gt;</span>
<span style="color:#008000; font-style:italic;"># Free Coke License: If you see me some day give me a free coke please.</span>
<span style="color:#008000; font-style:italic;"># Description: This script maybe help people to find a fucking Job</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;rss/2.0&quot;</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;open-uri&quot;</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'net/http'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rexml/document'</span>
&nbsp;
<span style="color:#008000; font-style:italic;"># You need to change this values:</span>
keywords = <span style="color:#996600;">&quot;keyword1+keyword2+keyword3&quot;</span>
zipcode = <span style="color:#996600;">&quot;10101&quot;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> bitly<span style="color:#006600; font-weight:bold;">&#40;</span>url<span style="color:#006600; font-weight:bold;">&#41;</span>
	<span style="color:#008000; font-style:italic;"># Create account on Bit.ly</span>
	login = <span style="color:#996600;">&quot;&quot;</span>
	api_key = <span style="color:#996600;">&quot;&quot;</span>
	data = <span style="color:#6666ff; font-weight:bold;">Net::HTTP</span>.<span style="color:#9900CC;">get_response</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">URI</span>.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;http://api.bit.ly/v3/shorten?login=&quot;</span><span style="color:#006600; font-weight:bold;">+</span>login<span style="color:#006600; font-weight:bold;">+</span><span style="color:#996600;">&quot;&amp;apiKey=&quot;</span><span style="color:#006600; font-weight:bold;">+</span>api_key<span style="color:#006600; font-weight:bold;">+</span><span style="color:#996600;">&quot;&amp;longUrl=&quot;</span><span style="color:#006600; font-weight:bold;">+</span>url<span style="color:#006600; font-weight:bold;">+</span><span style="color:#996600;">&quot;&amp;format=xml&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">body</span>
	doc = <span style="color:#6666ff; font-weight:bold;">REXML::Document</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
	doc.<span style="color:#9900CC;">elements</span>.<span style="color:#9900CC;">each</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">'response/data/url'</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>ele<span style="color:#006600; font-weight:bold;">|</span>
		url = ele.<span style="color:#9900CC;">text</span>
	<span style="color:#9966CC; font-weight:bold;">end</span>
	url
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">open</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;http://rss.indeed.com/rss?q=&quot;</span> <span style="color:#006600; font-weight:bold;">+</span> keywords <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;&amp;l=&quot;</span> <span style="color:#006600; font-weight:bold;">+</span> zipcode <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;&amp;sort=date&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span> http <span style="color:#006600; font-weight:bold;">|</span>
	response = http.<span style="color:#9900CC;">read</span>
	result = <span style="color:#6666ff; font-weight:bold;">RSS::Parser</span>.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span>response, <span style="color:#0000FF; font-weight:bold;">false</span><span style="color:#006600; font-weight:bold;">&#41;</span>
	<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;<span style="color:#000099;">\n</span>Channel: &quot;</span> <span style="color:#006600; font-weight:bold;">+</span> result.<span style="color:#9900CC;">channel</span>.<span style="color:#9900CC;">title</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;<span style="color:#000099;">\n</span><span style="color:#000099;">\n</span>&quot;</span>
	result.<span style="color:#9900CC;">items</span>.<span style="color:#9900CC;">each_with_index</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span> item, i<span style="color:#006600; font-weight:bold;">|</span>
		<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;#{i+1}. #{item.title} ( &quot;</span> <span style="color:#006600; font-weight:bold;">+</span> bitly<span style="color:#006600; font-weight:bold;">&#40;</span>item.<span style="color:#9900CC;">link</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">+</span><span style="color:#996600;">&quot; )&quot;</span>
	<span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>On Craigslist:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">#!/usr/bin/ruby -w</span>
<span style="color:#008000; font-style:italic;"># Autor: Albertux (Alberto Isaac Ayala Esquivias)</span>
<span style="color:#008000; font-style:italic;"># URL/Blog: http://Albertux.AyalaSoft.com</span>
<span style="color:#008000; font-style:italic;"># E-mail/Spam: &lt;albertoi7@gmail.com&gt;</span>
<span style="color:#008000; font-style:italic;"># Free Coke License: If you see me some day give me a free coke please.</span>
<span style="color:#008000; font-style:italic;"># Description: This script maybe help people to find a fucking Job.</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;rss/1.0&quot;</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;open-uri&quot;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> craigslist_reader<span style="color:#006600; font-weight:bold;">&#40;</span>feeds<span style="color:#006600; font-weight:bold;">&#41;</span>
	feeds.<span style="color:#9900CC;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span> feed <span style="color:#006600; font-weight:bold;">|</span>
		<span style="color:#CC0066; font-weight:bold;">open</span><span style="color:#006600; font-weight:bold;">&#40;</span>feed<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span> http <span style="color:#006600; font-weight:bold;">|</span>
			response = http.<span style="color:#9900CC;">read</span>
			result = <span style="color:#6666ff; font-weight:bold;">RSS::Parser</span>.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span>response, <span style="color:#0000FF; font-weight:bold;">false</span><span style="color:#006600; font-weight:bold;">&#41;</span>
			<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;<span style="color:#000099;">\n</span>Channel: &quot;</span> <span style="color:#006600; font-weight:bold;">+</span> result.<span style="color:#9900CC;">channel</span>.<span style="color:#9900CC;">title</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;<span style="color:#000099;">\n</span><span style="color:#000099;">\n</span>&quot;</span>
			result.<span style="color:#9900CC;">items</span>.<span style="color:#9900CC;">each_with_index</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span> item, i<span style="color:#006600; font-weight:bold;">|</span>
				<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;#{i+1}. #{item.title} #{item.link}&quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> i <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006666;">10</span>
			<span style="color:#9966CC; font-weight:bold;">end</span>
		<span style="color:#9966CC; font-weight:bold;">end</span>
	<span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
craigslist_feeds = <span style="color:#006600; font-weight:bold;">&#91;</span>
		<span style="color:#996600;">&quot;http://sfbay.craigslist.org/sof/index.rss&quot;</span>,
		<span style="color:#996600;">&quot;http://sfbay.craigslist.org/web/index.rss&quot;</span>,
		<span style="color:#996600;">&quot;http://sfbay.craigslist.org/eng/index.rss&quot;</span>,
		<span style="color:#996600;">&quot;http://sfbay.craigslist.org/cpg/index.rss&quot;</span>
<span style="color:#006600; font-weight:bold;">&#93;</span>
&nbsp;
craigslist_reader<span style="color:#006600; font-weight:bold;">&#40;</span>craigslist_feeds<span style="color:#006600; font-weight:bold;">&#41;</span></pre></div></div>

<p><img src="http://albertux.ayalasoft.net/img/ruby-help-me-to-find-a-job.png"></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/22/ruby-help-me-to-find-a-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magic June</title>
		<link>http://albertux.ayalasoft.net/2010/06/22/magic-june/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/22/magic-june/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 17:06:06 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[rrripple]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3148</guid>
		<description><![CDATA[une]]></description>
			<content:encoded><![CDATA[<p><strong>Magic June</strong></p>
<p><strong>48 61 63 6b 20 54 68 65 20 50 6c 61 6e 65 74</strong></p>
<p><img src="http://albertux.ayalasoft.net/img/vta-pass-june.jpg"></p>
<p>Many changes in this month.</p>
<p>I was go to <a href="http://hackerdojo.pbworks.com" target="_blank">Hacker Dojo</a>. I meet Rob Brown a Javascript hacker, he develop this great tool: <a href="http://albertux.ayalasoft.net/2010/06/10/aardvark/" target="_blank">Aardvark</a></p>
<p><img src="http://albertux.ayalasoft.net/img/rob-brown-on-hackdojo-01.jpg" ><br />
<img src="http://albertux.ayalasoft.net/img/rob-brown-on-hackdojo-02.jpg" ></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> currentTime<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    currentTime <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#123;</span>
        year<span style="color: #339933;">:</span> currentTime.<span style="color: #660066;">getFullYear</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
        month<span style="color: #339933;">:</span> currentTime.<span style="color: #660066;">getMonth</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">,</span>
        day<span style="color: #339933;">:</span> currentTime.<span style="color: #660066;">getDate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
now <span style="color: #339933;">=</span> currentTime<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> now.<span style="color: #660066;">day</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">14</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span> now.<span style="color: #660066;">month</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">6</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span> now.<span style="color: #660066;">year</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">2010</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    Albertux.<span style="color: #660066;">prototype</span>.<span style="color: #660066;">age</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">26</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Another year of life.</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>I always like hamburger with fries inside:</p>
<p><img src="http://albertux.ayalasoft.net/img/burguer.jpg"></p>
<p>Pictures and videos for me:</p>
<p><img src="http://albertux.ayalasoft.net/img/albertux-jun-10-2010-a.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-jun-10-2010-b.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-jun-10-2010-c.jpg"></p>
<p><strong>I&#8217;m not EMO!!!</strong><br />
<img src="http://albertux.ayalasoft.net/img/albertux-nasty.jpg"></p>
<p><object width="600" height="480"><param name="movie" value="http://www.youtube.com/v/CE1RmuCCY9U&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CE1RmuCCY9U&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="480"></embed></object></p>
<p>Now I&#8217;m working on 2 projects as outsourcing for a moment:</p>
<ul>
<li><a href="http://www.3taps.com">www.3taps.com</a></li>
<li><strike><a href="http://www.rrripple.com">www.rrripple.com</a></strike> (not more)</li>
</ul>
<p>I do some stuff from rrripple for free, why calling me ? and asking me to do a specific schedule, but anyway the bugs I discover are here:</p>
<p>Duplicate items (not validation):<br />
<img src="http://www.albertux.ayalasoft.net/img/rrripple-duplicate-file-share-allow.png"></p>
<p>Percent go crazy after upload something.<br />
<img src="http://www.albertux.ayalasoft.net/img/rrripple-issue-percent-uploading-file-when-finish.png"></p>
<p>Download Videos:</p>
<ul>
<li><a href="http://www.ayalasoft.net/others/rrripple-write-notes-issues.ogv">Write notes sucks</a></li>
<li><a href="http://www.ayalasoft.net/others/rrripple-session-on-many-browsers-without-cookies.ogv">rrripple sessions on many browsers without cookies (they only validate remote address)</a></li>
<li><a href="http://www.ayalasoft.net/others/rrripple-test.ogv">Easy to brute force</a> (only you need to write a script and wordlist (password are on md5))</li>
</ul>
<p>You need <a href="http://www.videolan.org/vlc/" target="_blank">VLC</a> to watch this videos</p>
<p>The bugs I discover not watching the source code, only using the application <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a> with <a href="http://getfirebug.com/" target="_blank">firebug</a> and use <a href="http://curl.haxx.se/" target="_blank">cURL</a> to show the brute force login and only using the application less than a hour.</p>
<p>But there are good news:</p>
<p><a href="http://techcrunch.com/2009/10/20/rrripple-a-touchscreen-friendly-hub-for-storing-and-securely-sharing-your-media/" target="_blank">Tech Crunch Review from rrripple.com</a></p>
<p>My personal comment:</p>
<p><strong>I never work for free, sucks, sucks, sucks.</strong></p>
<p><strong>Library Pics</strong><br />
<img src="http://www.albertux.ayalasoft.net/img/library-king-books.jpg"><br />
<img src="http://www.albertux.ayalasoft.net/img/library-king-the-rules.jpg"></p>
<p>You know I always follow the rules<br />
<img src="http://www.albertux.ayalasoft.net/img/library-king-the-rules-and-coke.jpg"><br />
<img src="http://www.albertux.ayalasoft.net/img/library-king-books-and-stuff.jpg"></p>
<p>My Job for a moment is seeking Job hahahaha XD</p>
<p>And June is almost over but not yet.</p>
<p><strong>More Codes, Hacks and Girls in the next Post.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/22/magic-june/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Processing.js</title>
		<link>http://albertux.ayalasoft.net/2010/06/10/processing-js/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/10/processing-js/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 18:52:42 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3218</guid>
		<description><![CDATA[Processing.js Processing.js is an open programming language for people who want to program images, animation, and interactions for the web without using Flash or Java applets. Processing.js uses Javascript to draw shapes and manipulate images on the HTML5 Canvas element. The code is light-weight, simple to learn and makes an ideal tool for visualizing data, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Processing.js</strong></p>
<p>Processing.js is an open programming language for people who want to program images, animation, and interactions for the web without using Flash or Java applets. Processing.js uses Javascript to draw shapes and manipulate images on the HTML5 Canvas element. The code is light-weight, simple to learn and makes an ideal tool for visualizing data, creating user-interfaces and developing web-based games.</p>
<p>Processing IDE:<br />
<img src="http://www.albertux.ayalasoft.net/img/processing.png"></p>
<p>Let&#8217;s play:<br />
<img src="http://www.albertux.ayalasoft.net/img/processing-running.png"></p>
<p>Examples on the Web:<br />
<a href="http://processingjs.org/learning" target="_blank">http://processingjs.org/learning</a></p>
<p>Website: <a href="http://processingjs.org/" target="_blank">http://processingjs.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/10/processing-js/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aardvark</title>
		<link>http://albertux.ayalasoft.net/2010/06/10/aardvark/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/10/aardvark/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 16:17:27 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3198</guid>
		<description><![CDATA[Aardvark Things You Can Do With Aardvark: Clean up unwanted banners and surrounding &#8220;fluff,&#8221; especially prior to printing a page See how the page is created, block by block View the source code of one or more elements Project page: http://karmatics.com/aardvark/ Download Firefox Extension: https://addons.mozilla.org/en-US/firefox/addon/4111/]]></description>
			<content:encoded><![CDATA[<p><strong>Aardvark</strong></p>
<p><img src="http://www.albertux.ayalasoft.net/img/aardvark.png"></p>
<p>Things You Can Do With Aardvark:</p>
<ul>
<li>
Clean up unwanted banners and surrounding &#8220;fluff,&#8221; especially prior to printing a page
</li>
<li>
See how the page is created, block by block
</li>
<li>
View the source code of one or more elements
</li>
</ul>
<p>Project page: <a href="http://karmatics.com/aardvark/" target="_blank">http://karmatics.com/aardvark/</a></p>
<p>Download Firefox Extension:<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/4111/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/4111/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/10/aardvark/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Convert m4a to mp3</title>
		<link>http://albertux.ayalasoft.net/2010/06/05/convert-m4a-to-mp3/</link>
		<comments>http://albertux.ayalasoft.net/2010/06/05/convert-m4a-to-mp3/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 19:07:58 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[multimedia]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[m4a]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=3161</guid>
		<description><![CDATA[Convert m4a to mp3 Damn my iPod doesn&#8217;t support m4a audio files ( http://support.apple.com/kb/sp27 ) No problem: sudo apt-get install faad #!/bin/bash IFS=$'\t\n' EXTS=&#40; m4a M4A m4A M4a &#41; for EXT in ${EXTS[@]}; do for f in `find . -name &#34;*.$EXT&#34; -type f`; do echo &#34;Converting m4a to mp3 ...&#34; faad -o - &#34;$f&#34; &#124; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Convert m4a to mp3</strong></p>
<p>Damn my iPod doesn&#8217;t support m4a audio files ( <a href="http://support.apple.com/kb/sp27" target="_blank">http://support.apple.com/kb/sp27</a> )</p>
<p>No problem:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> faad</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">IFS</span>=$<span style="color: #ff0000;">'\t\n'</span>
<span style="color: #007800;">EXTS</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> m4a M4A m4A M4a <span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">for</span> EXT <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${EXTS[@]}</span>;
<span style="color: #000000; font-weight: bold;">do</span>
	<span style="color: #000000; font-weight: bold;">for</span> f <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;*.<span style="color: #007800;">$EXT</span>&quot;</span> <span style="color: #660033;">-type</span> f<span style="color: #000000; font-weight: bold;">`</span>;
	<span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Converting m4a to mp3 ...&quot;</span>
		faad <span style="color: #660033;">-o</span> - <span style="color: #ff0000;">&quot;<span style="color: #007800;">$f</span>&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">lame</span> - <span style="color: #ff0000;">&quot;<span style="color: #007800;">${f%.m4a}</span>.mp3&quot;</span>
		<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #007800;">$f</span>
	<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Yes the script is similar to this <a href="http://albertux.ayalasoft.net/2008/10/20/resize-multiple-images/">resize multiple images</a></p>
<p>Great tool to edit tags (<a href="http://easytag.sourceforge.net/" target="_blank">http://easytag.sourceforge.net/</a>)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> easytag</pre></div></div>

<p><img src="http://albertux.ayalasoft.net/wp-content/uploads/2010/06/easytag-tag.png"></p>
<p><img src="http://albertux.ayalasoft.net/wp-content/uploads/2010/06/eastag-running.png"></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/06/05/convert-m4a-to-mp3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>May is almost over</title>
		<link>http://albertux.ayalasoft.net/2010/05/26/may-is-almost-over/</link>
		<comments>http://albertux.ayalasoft.net/2010/05/26/may-is-almost-over/#comments</comments>
		<pubDate>Wed, 26 May 2010 19:13:13 +0000</pubDate>
		<dc:creator>Albertux</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[CA]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.net/?p=2983</guid>
		<description><![CDATA[May is almost over Las imagenes / videos fueron tomadas del 7 al 25 de Mayo del 2010. One day I went to Stanford for a interview. But not interview, I do a test on a paper. I remember some questions: Howto create a thread on Java?: http://www.exampledepot.com/egs/java.lang/BasicThread.html Thread x = new Thread&#40;&#41;; // works [...]]]></description>
			<content:encoded><![CDATA[<p><strong>May is almost over</strong></p>
<p>Las imagenes / videos fueron tomadas del 7 al 25 de Mayo del 2010.</p>
<p>One day I went to Stanford for a interview. But not interview, I do a test on a paper.</p>
<p>I remember some questions:</p>
<p>Howto create a thread on Java?:<br />
<a href="http://www.exampledepot.com/egs/java.lang/BasicThread.html" target="_blank">http://www.exampledepot.com/egs/java.lang/BasicThread.html</a></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #003399;">Thread</span> x <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">Thread</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// works</span></pre></div></div>

<p>Write a function to sort array of integers (unspecified language):<br />
<a href="http://www.w3schools.com/jsref/jsref_sort.asp">http://www.w3schools.com/jsref/jsref_sort.asp</a></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// I do this, but it's wrong, only compare pair of numbers, damn!</span>
<span style="color: #006600; font-style: italic;">// with other &quot;for&quot; works, but doesn't matter now.</span>
<span style="color: #006600; font-style: italic;">// for (n=0; n&lt;myArray.length; n++) {</span>
<span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>myArray.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;</span> MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		swap <span style="color: #339933;">=</span> MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		MyArray<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> swap<span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #006600; font-style: italic;">// }</span>
<span style="color: #006600; font-style: italic;">// The real solution:</span>
<span style="color: #003366; font-weight: bold;">function</span> sortNumber<span style="color: #009900;">&#40;</span>a<span style="color: #339933;">,</span>b<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
     <span style="color: #000066; font-weight: bold;">return</span> a <span style="color: #339933;">-</span> b<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
MyArray.<span style="color: #660066;">sort</span><span style="color: #009900;">&#40;</span>sortNumber<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Other questions about SQL Querys, differences between PHP and Java, REST API , etc.</p>
<p>Reinstall Windows in a <a href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&#038;cc=uk&#038;prodNameId=316715&#038;prodTypeId=12454&#038;prodSeriesId=316713&#038;swLang=13&#038;taskId=135&#038;swEnvOID=1093" target="_blank">HP D530 SFF</a> but I need internet to install some drivers on this computer, so I share the internet connection of my notebook:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> dhcp3-server firestarter</pre></div></div>

<p><a href="http://ubuntuguide.org/wiki/Ubuntu:Lucid" target="_blank">http://ubuntuguide.org/wiki/Ubuntu:Lucid</a> search (&#8220;Internet connection sharing (DHCP server)&#8221;)</p>
<p>Playing with eBay API:<br />
[ <a href="http://ayalasoft.net/ebay-demo.php" target="_blank">http://ayalasoft.net/ebay-demo.php</a> ]</p>
<p>add <a href="http://filestube.com/" target="_blank">filestube</a> and <a href="http://www.craigslist.org/" target="_blank">craigslist</a> on <a href="http://bse.ayalasoft.net" target="_blank">http://bse.ayalasoft.net</a>, I need to remove scroogle.</p>
<p><object width="640" height="480"><param name="movie" value="http://www.youtube.com/v/G2vNYWLavxg&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/G2vNYWLavxg&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p>My laptop doesn&#8217;t suspend or hibertaned<br />
[ <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/575176" target="_blank">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/575176</a> ]</p>
<p>Ubuntu 10.04 LTS CD</p>
<p><img src="http://albertux.ayalasoft.net/img/my-ubuntu-10.04-LTS-cdrom.jpg"></p>
<p><strong>Alum Rock</strong></p>
<p>[ <a href="http://sjlibrary.org/about/locations/alum_rock/index.htm" target="_blank">http://sjlibrary.org/about/locations/alum_rock/index.htm</a> ]</p>
<p><img src="http://albertux.ayalasoft.net/img/alum-rock-library-01.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/alum-rock-library-02.jpg"></p>
<p>SAP buy Sysbase<br />
[ <a href="http://es.noticias.yahoo.com/11/20100512/tbs-amn-tec-sap-sybase-f8250da.html">Noticia Yahoo</a> , <a href="http://barrapunto.com/articles/10/05/13/0010231.shtml" target="_blank">Barrapunto</a> ]</p>
<p><object width="640" height="480"><param name="movie" value="http://www.youtube.com/v/m1IDdMOhvdc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/m1IDdMOhvdc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="480"></embed></object></p>
<p><strong>Dr Martin Luther King</strong></p>
<p>[ <a href="http://sjlibrary.org/about/locations/king/index.htm" target="_blank">http://sjlibrary.org/about/locations/king/index.htm</a> ]</p>
<p><img src="http://albertux.ayalasoft.net/img/dr-martin-luther-king-jr-01.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/dr-martin-luther-king-jr-02.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/dr-martin-luther-king-jr-03.jpg"><br />
Fire drill:<br />
<img src="http://albertux.ayalasoft.net/img/firefighters-on-martin-luther-king.jpg"></p>
<p><strong>You exceeded your maximum download on the public library?</strong></p>
<p>Berryesa:<br />
<img src="http://albertux.ayalasoft.net/img/berryesa-branch-band.png"><br />
Alum Rock:<br />
<img src="http://albertux.ayalasoft.net/img/alum-rock-band.png"></p>
<p>No problem only you need to change your mac address:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># as root</span>
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> macchanger
<span style="color: #666666; font-style: italic;"># change your mac address random</span>
macchanger <span style="color: #660033;">-r</span> <span style="color: #007800;">$DEVICE</span> <span style="color: #666666; font-style: italic;"># eth0 or wlan0</span></pre></div></div>

<blockquote><p>If a cop stops me in arizona and says &#8220;papers&#8221; and I say &#8220;scissors&#8221; do I win ?</p></blockquote>
<p><strong>Pictures of Me</strong><br />
<img src="http://albertux.ayalasoft.net/img/albertux_12_de_mayo.jpg"><br />
<img src="http://albertux.ayalasoft.net/img/albertux-may-15-2009.jpg"></p>
<p>Yes it&#8217;s my favorite shirt<br />
<center><br />
<img src="http://albertux.ayalasoft.net/img/albertux-may-15-2009-other.jpg"><br />
</center></p>
<p>Waiting the bus:<br />
<img src="http://albertux.ayalasoft.net/img/on-the-bus-stop.jpg"><br />
On the car:<br />
<img src="http://albertux.ayalasoft.net/img/albertux-incognito.jpg"></p>
<p><storng>Others pics:</strong></p>
<p>On the bus:<br />
<img src="http://albertux.ayalasoft.net/img/free-ride-2-alum-rock.jpg"><br />
Where I am?:<br />
<img src="http://albertux.ayalasoft.net/img/where-i-am.jpg"></p>
<p><strong>The Tech Musem</strong></p>
<p>Cerca del museo hay otro de Arte:<br />
<img src="http://albertux.ayalasoft.net/img/museo-de-arte-SJ-Downtown.jpg"></p>
<p>Video:<br />
<object width="640" height="480"><param name="movie" value="http://www.youtube.com/v/OWqOnGEruXI&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OWqOnGEruXI&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="480"></embed></object></p>
<p>Fotos:</p>
<p><object width="640" height="480"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624017719431%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624017719431%2F&#038;set_id=72157624017719431&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624017719431%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624017719431%2F&#038;set_id=72157624017719431&#038;jump_to=" width="640" height="480"></embed></object></p>
<p><strong>Albertux GOTO San Francisco</strong><br />
<a href="http://www.bart.gov/" target="_blank">BART</a><br />
<img src="http://albertux.ayalasoft.net/img/bart.jpg"><br />
Instituto de Arte en SF:<br />
<img src="http://albertux.ayalasoft.net/img/instituto-de-arte-en-SF.jpg"><br />
El City Hall:<br />
<img src="http://albertux.ayalasoft.net/img/SF-City-Hall.jpg"><br />
Buddha:<br />
<img src="http://albertux.ayalasoft.net/img/SF-City-Hall-Buddha.jpg"><br />
Now i know, the right place to buy  / rent videogames on SF:<br />
<img src="http://albertux.ayalasoft.net/img/video-games-sf.jpg"><br />
Return to San Jose:<br />
<a href="http://www.caltrain.com/" target="_blank">Caltrain</a><br />
<img src="http://albertux.ayalasoft.net/img/caltrain.jpg"></p>
<pre>
. . .
</pre>
<p>Yes I have a work. Im working with the team of <a href="http://www.3taps.com" target="_blank">3taps</a>.</p>
<p><strong>Restore firmware iPod on Ubuntu</strong></p>
<p>My iPod doesnt&#8217; work so i need to restore the firmware.</p>
<p>But i have a little issue using:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mkfs.msdos <span style="color: #007800;">$DEVICE</span></pre></div></div>

<p><strong>&#8220;Attempting create too large a file system&#8221;</strong></p>
<p>But my iPod only have 1Gb so &#8230;</p>
<p>The easy way to restore firmware on Ubuntu Linux is using Windows:</p>
<p><img src="http://albertux.ayalasoft.net/img/ubuntu-windows-ipod-restore.png" ></p>
<p><strong>Computer History Museum</strong></p>
<p><object width="640" height="480"><param name="movie" value="http://www.youtube.com/v/rOCjhaI6WLo&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rOCjhaI6WLo&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="480"></embed></object></p>
<p><object width="640" height="480"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624142021348%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624142021348%2F&#038;set_id=72157624142021348&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624142021348%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fayalasoft%2Fsets%2F72157624142021348%2F&#038;set_id=72157624142021348&#038;jump_to=" width="640" height="480"></embed></object></p>
<p>Well, May is almost over.</p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.net/2010/05/26/may-is-almost-over/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
