<?xml version="1.0" encoding="iso-8859-1"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en"> 
<title>Robert Marcano&#039;s blog</title> 
<link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/blog/1" /> 
	 
	<modified>2008-06-03T11:08:19-03:00</modified> 
<tagline></tagline> 
<generator url="http://www.lifetype.net/" version="1.2">LifeType</generator> 
 
<copyright>Copyright (c) robert</copyright> 
  
 <entry> 
 <id>tag:www.marcanoonline.com,2008-06-03:179</id>
 <title>Amazing work teammates</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/179" /> 
  
 <modified>2008-06-03T11:08:19-03:00</modified> 
 <issued>2008-06-03T11:08:19-03:00</issued> 
 <created>2008-06-03T11:08:19-03:00</created> 
 <summary type="text/plain"> It is very rewarding to coordinate a team of developers, that are able to migrate a third-party application to Linux, working without access to the central Host the application requires, and that ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Development 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;It is very rewarding to coordinate a team of developers, that are able to migrate a third-party application to Linux, working without access to the central Host the application requires, and that when We deploy it to the testing site every module works amazingly well, no major bug found yet, only little things that are being fixed in minutes&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2008-04-27:178</id>
 <title>MP4 tags on a PlayStation 3</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/178" /> 
  
 <modified>2008-04-27T19:53:11-03:00</modified> 
 <issued>2008-04-27T19:53:11-03:00</issued> 
 <created>2008-04-27T19:53:11-03:00</created> 
 <summary type="text/plain"> The PlayStation 3 uses standard  3GPP  tags and does not understand iTunes style tags so every song I imported do not show the correct information, so instead of fixing them on the PS3 (something ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
PlayStation 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;The PlayStation 3 uses standard &lt;a href=&quot;http://en.wikipedia.org/wiki/3gpp&quot;&gt;3GPP&lt;/a&gt; tags and does not understand iTunes style tags so every song I imported do not show the correct information, so instead of fixing them on the PS3 (something that does not changes the file, only on the internal database) I wrote a script with the help of &lt;a href=&quot;http://atomicparsley.sourceforge.net/&quot;&gt;AtomicParsley&lt;/a&gt;:&lt;/p&gt;

&lt;pre&gt;#!/bin/sh

addTag() {
        line=`mp4info &quot;$file&quot; | grep &quot;$2&quot;`
        if [ &quot;$?&quot; -eq &quot;0&quot; ]
        then
                command=&quot;$command $1 \&quot;`echo $line | sed -e &quot;s/$2: //&quot;`\&quot;&quot;
        fi
} 

for file in *.m4a; do
	command=&quot;AtomicParsley \&quot;$file\&quot;&quot;
	addTag --3gp-title &quot;Metadata Name&quot;
	addTag --3gp-performer &quot;Metadata Artist&quot;
	addTag --3gp-album &quot;Metadata Album&quot;
	addTag --3gp-genre &quot;Metadata Genre&quot;

	exec 3&amp;lt;&amp;gt;&quot;$file&quot;
	read -n 8 &amp;lt;&amp;amp;3
	echo -n 3gp6 &amp;gt;&amp;amp;3
	exec 3&amp;gt;&amp;amp;-

	eval &quot;$command&quot; -W

	exec 3&amp;lt;&amp;gt;&quot;$file&quot;
	read -n 8 &amp;lt;&amp;amp;3
	echo -n mp42 &amp;gt;&amp;amp;3
	exec 3&amp;gt;&amp;amp;-
done&lt;/pre&gt;

&lt;p&gt;It add a few 3GPP style tags taken from the original iTunes style tags. As AtomicParsley rejects to add that kind of tags on non 3GPP files, the script changes the ftyp field on the file temporaly to &lt;em&gt;3gp6&lt;/em&gt;. The script process all files with the extension m4a on the current directory.&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2008-04-10:177</id>
 <title>History meme</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/177" /> 
  
 <modified>2008-04-10T16:08:48-03:00</modified> 
 <issued>2008-04-10T16:08:48-03:00</issued> 
 <created>2008-04-10T16:08:48-03:00</created> 
 <summary type="text/plain"> Everyone is doing this on  Planet GNOME , so I wanted to see the results too: 

 $ history|awk &#039;{a[$2]++ } END{for(i in a){print a[i] &quot; &quot; i}}&#039;|sort -rn|head
150 cd
135 ll
105 hg
89 vi
39 ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
On the Net 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Everyone is doing this on &lt;a href=&quot;http://planet.gnome.org/&quot;&gt;Planet GNOME&lt;/a&gt;, so I wanted to see the results too:&lt;/p&gt;

&lt;pre&gt;$ history|awk &#039;{a[$2]++ } END{for(i in a){print a[i] &quot; &quot; i}}&#039;|sort -rn|head
150 cd
135 ll
105 hg
89 vi
39 less
39 find
37 sed
35 rm
35 tail
35 cat&lt;/pre&gt;

&lt;p&gt;ll = ls -al.&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2008-04-10:176</id>
 <title>Addicted to Mercurial SCM</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/176" /> 
  
 <modified>2008-04-10T01:19:09-03:00</modified> 
 <issued>2008-04-10T01:19:09-03:00</issued> 
 <created>2008-04-10T01:19:09-03:00</created> 
 <summary type="text/plain"> While I was learning how to use  Mercurial  in order to contribute to the  Mozilla  platform, I became addicted to it, and with the migration tools now I have access to my repositories with full ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Development 
Open Source 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;While I was learning how to use &lt;a href=&quot;http://www.selenic.com/mercurial/&quot;&gt;Mercurial&lt;/a&gt; in order to contribute to the &lt;a href=&quot;http://www.mozilla.org/&quot;&gt;Mozilla&lt;/a&gt; platform, I became addicted to it, and with the migration tools now I have access to my repositories with full history on the go, without need of permanent connection to the &lt;a href=&quot;http://en.wikipedia.org/wiki/Concurrent_Versions_System&quot;&gt;CVS&lt;/a&gt; or &lt;a href=&quot;http://en.wikipedia.org/wiki/Subversion_(software)&quot;&gt;SVN&lt;/a&gt; server. I can even do offline commits to my local copies.&lt;/p&gt;

&lt;p&gt;I had not found a nice GUI for it yet, but being restricted to the command line is not a big reason to not use the powerful offline features. ummmm &lt;a href=&quot;http://openjdk.java.net/&quot;&gt;OpenJDK&lt;/a&gt; is stored on Mercurial, and &lt;a href=&quot;http://www.netbeans.org/&quot;&gt;Netbeans&lt;/a&gt; 6.1 finall will have support for it.&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-09-26:174</id>
 <title>Folding@home Petaflop Barrier Crossed</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/174" /> 
  
 <modified>2007-09-26T14:23:25-03:00</modified> 
 <issued>2007-09-26T14:23:25-03:00</issued> 
 <created>2007-09-26T14:23:25-03:00</created> 
 <summary type="text/plain"> Amazing.... just look at the  comparison with the other platforms , I am happy to have contributed at least a small part of it. This achievement is just only an example of how well made is the ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
PlayStation 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Amazing.... just look at the &lt;a href=&quot;http://blog.us.playstation.com/2007/09/25/foldinghome-petaflop-barrier-crossed-update/&quot;&gt;comparison with the other platforms&lt;/a&gt;, I am happy to have contributed at least a small part of it. This achievement is just only an example of how well made is the &lt;a href=&quot;http://www.us.playstation.com/PS3&quot;&gt;PlayStation 3&lt;/a&gt; that its owners do not hesitate to left it turned on for continuous days doing CPU intensive calculations, with the fans working at maximum speed to reduce the machine temperature.&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-08-08:173</id>
 <title>Nokia - do you know what is Exif?</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/173" /> 
  
 <modified>2007-08-08T11:36:30-03:00</modified> 
 <issued>2007-08-08T11:36:30-03:00</issued> 
 <created>2007-08-08T11:36:30-03:00</created> 
 <summary type="text/plain"> Maybe I will have the luck that someday some Nokia developer visit this remote page, so I will ask them a little favor, please take your time to learn what is  Exif . A long time ago I decided to ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Personal 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Maybe I will have the luck that someday some Nokia developer visit this remote page, so I will ask them a little favor, please take your time to learn what is &lt;a href=&quot;http://en.wikipedia.org/wiki/Exif&quot;&gt;Exif&lt;/a&gt;. A long time ago I decided to not use more Nokia phones, but still sometimes when I meet with friends they take photos with their phones and sent them to me, I classify all of them by folders and dates so I have a chronological structure on disk. Yesterday I imported all my photos to my Playstation 3 to be able to show them more easily to family and friends and what i found, no Nokia phone I have received photos store complete Exif information, specially the date and time the photo was taken, and the PS3 uses a lot that info. The workaround was to add the metadata using &lt;a href=&quot;http://www.exiv2.org/&quot;&gt;exiv2&lt;/a&gt; to all those photos&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-05-02:171</id>
 <title>Why Smalltalk</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/171" /> 
  
 <modified>2007-05-02T11:38:06-03:00</modified> 
 <issued>2007-05-02T11:38:06-03:00</issued> 
 <created>2007-05-02T11:38:06-03:00</created> 
 <summary type="text/plain"> Reading the  onsmalltalk.com , found the article named  Why Smalltalk , and I share the feelings of the author, you must try Smalltalk to understand why we Smalltalkers think that way. I still ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Development 
On the Net 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Reading the &lt;a href=&quot;http://onsmalltalk.com/&quot;&gt;onsmalltalk.com&lt;/a&gt;, found the article named &lt;a href=&quot;http://onsmalltalk.com/programming/smalltalk/why-smalltalk/&quot;&gt;Why Smalltalk&lt;/a&gt;, and I share the feelings of the author, you must try Smalltalk to understand why we Smalltalkers think that way. I still dream with an opportunity to teach Smalltalk in an academic environment, because as the article says &quot;Object oriented programming means something entirely different to a Smalltalker than to someone doing OO in another language&quot;&lt;/p&gt;

&lt;p&gt;Do anyone need a seasoned Smalltalker demonstration?... hahahaha&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-04-30:170</id>
 <title>New life for HTML against Flash?</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/170" /> 
  
 <modified>2007-04-30T16:30:14-03:00</modified> 
 <issued>2007-04-30T16:30:14-03:00</issued> 
 <created>2007-04-30T16:30:14-03:00</created> 
 <summary type="text/plain"> According to  Mykzilla , according to  Bernzilla , according to  SimpleBits , according to  MTV Labs ,  mtv.com  has switched back to an HTML-based site from the Flash-based site they implemented ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Development 
On the Net 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;According to &lt;a href=&quot;http://www.melez.com/mykzilla/2007/04/mtv-returns-to-html.html&quot;&gt;Mykzilla&lt;/a&gt;, according to &lt;a href=&quot;http://www.bernzilla.com/item.php?id=838&quot;&gt;Bernzilla&lt;/a&gt;, according to &lt;a href=&quot;http://www.simplebits.com/notebook/2007/04/25/mtv.html&quot;&gt;SimpleBits&lt;/a&gt;, according to &lt;a href=&quot;http://www.mtvlabs.tv/2007/04/new-html-mtvcom.html&quot;&gt;MTV Labs&lt;/a&gt;, &lt;a href=&quot;http://www.mtv.com/&quot;&gt;mtv.com&lt;/a&gt; has switched back to an HTML-based site from the Flash-based site they implemented nine months ago. I am not a big fan of Flash based sites for a lot of reasons, I just only hope web designers take this as an example before choosing a flashy site against a productive site.&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-03-20:169</id>
 <title>¿Qué???? ¿derechos de autor? ¿con que se come eso?</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/169" /> 
  
 <modified>2007-03-20T09:45:30-03:00</modified> 
 <issued>2007-03-20T09:45:30-03:00</issued> 
 <created>2007-03-20T09:45:30-03:00</created> 
 <summary type="text/plain"> Esto es lo que corre por mi mente que deben estar pensando algunos &quot;profesionales&quot; trabajando para el actual gobierno venezolano (o será desgobierno). ¿Por qué lo digo? solo revisen la  reseña de ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
Personal 
On the Net 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Esto es lo que corre por mi mente que deben estar pensando algunos &quot;profesionales&quot; trabajando para el actual gobierno venezolano (o será desgobierno). ¿Por qué lo digo? solo revisen la &lt;a href=&quot;http://www.cableatierra.org/2007/03/sin-derecho-de-autor/&quot;&gt;reseña de mi amigo Igvir&lt;/a&gt; de como una foto de su autoría es usada en una publicidad impresa sin su autorización, y mucho menos de la persona en la foto.&lt;/p&gt;

&lt;p&gt;¿Será posible ejercer alguna acción legal? donde los más seguro es que se gaste más dinero tratando de defender tus derechos que obteniendo resultados satisfactorios.&lt;/p&gt;

&lt;p&gt;¿Será que están escasos los cerebros que entiendan lo que es respetar los derechos de autor? o será que en Venezuela estamos tan acostumbrados a ver vendedores informales vendiendo cuanta copia ilegal posible, y ver hasta a la policía comprando, o escuchar a personas que todos los días dicen haber visto una película nueva porque se la bajaron de internet, que hasta algunos publicistas o diseñadores creen poder hacer lo mismo impunemente&lt;/p&gt; 
</content> 
</entry> 
 
 <entry> 
 <id>tag:www.marcanoonline.com,2007-01-26:168</id>
 <title>Meme: ¿Que usas para trabajar?</title> 
 <link rel="alternate" type="text/html" href="http://www.marcanoonline.com/plog/post/1/168" /> 
  
 <modified>2007-01-26T09:01:32-04:00</modified> 
 <issued>2007-01-26T09:01:32-04:00</issued> 
 <created>2007-01-26T09:01:32-04:00</created> 
 <summary type="text/plain"> Aprendiendo de  Igvir  que es un  Meme  aquí van los datos 

 
 IBM Thinkpad R50p, 1GB de RAM, disco de 60GB 7200 RPM. Fedora Core 6 x86, y no puedo vivir sin 1600x1200 de resolución 
 y para ...</summary> 
 <author> 
  
 <name>robert</name> 
 <url>http://www.marcanoonline.com/plog/blog/1</url> 
</author> 
<dc:subject>
On the Net 
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.marcanoonline.com/plog/blog/1"> 
 &lt;p&gt;Aprendiendo de &lt;a href=&quot;http://www.cableatierra.org/2007/01/meme-que-usas-para-trabajar/&quot;&gt;Igvir&lt;/a&gt; que es un &lt;a href=&quot;http://es.wikipedia.org/wiki/Meme&quot;&gt;Meme&lt;/a&gt; aquí van los datos&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IBM Thinkpad R50p, 1GB de RAM, disco de 60GB 7200 RPM. Fedora Core 6 x86, y no puedo vivir sin 1600x1200 de resolución&lt;/li&gt;
&lt;li&gt;y para las pruebas un Pentium 4, 1GB de RAM, disco de 80GB, con Fedora Core 6  x86_64, Red Hat Enterprise Linux x86_64, Windows XP x86&lt;/li&gt;
&lt;li&gt;Monitor CRT de 17&quot;&lt;/li&gt;
&lt;li&gt;Un Sony Ericsson M600i para el correo móvil&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Lamentablemente no puedo tener este accesorio en la oficina todos los días como si se puede en Google&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;Canito en la oficina&quot; src=&quot;http://www.marcanoonline.com/plog/get/1/2005-03-12--11%3A18%3A22-00001.resized.jpg&quot; /&gt;&lt;/p&gt;

&lt;p&gt;A ver Nelo.... cuidado con la pelota que te lanzo ahora&lt;/p&gt; 
</content> 
</entry> 
 
</feed>