<?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>Lebreiro.com &#187; technology</title>
	<atom:link href="http://lebreiro.com/blog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://lebreiro.com/blog</link>
	<description>Nuno Lebreiro personal blog</description>
	<lastBuildDate>Thu, 19 Aug 2010 18:38:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Install Dropbox remotely on Ubuntu</title>
		<link>http://lebreiro.com/blog/2010/05/install-dropbox-remotely/</link>
		<comments>http://lebreiro.com/blog/2010/05/install-dropbox-remotely/#comments</comments>
		<pubDate>Mon, 17 May 2010 10:00:06 +0000</pubDate>
		<dc:creator>Lebreiro</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lebreiro.com/blog/?p=667</guid>
		<description><![CDATA[Everybody know how useful Dropbox is (up to 10Gb free web-disk with amazing sync capabilities), I wanted to install it on a Ubuntu Server remotely (over a ssh connection) to automatically copy my backups to a external server. I was having some trouble but after some digging I found the way (sources: here and here). Here is a quick to do list [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank"><img class="aligncenter size-full wp-image-687" title="dropbox_logo_home" src="http://lebreiro.com/blog/wp-content/uploads/2010/05/dropbox_logo_home.png" alt="Dropbox" width="290" height="75" /></a>Everybody know how useful <span style="color: #000000;"><a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank">Dropbox</a></span> is (up to 10Gb free web-disk with amazing sync capabilities), I wanted to install it on a Ubuntu Server remotely (over a ssh connection) to automatically copy my backups to a external server.</p>
<p>I was having some trouble but after some digging I found the way (sources: <span style="color: #000000;"><a href="http://forums.dropbox.com/topic.php?id=19094" rel="nofollow"  target="_blank">here</a></span> and <span style="color: #000000;"><a href="http://wiki.dropbox.com/Regole/TextBasedLinuxInstall" rel="nofollow"  target="_blank">here</a></span>).</p>
<p>Here is a quick to do list and the commands you have to run to do it.</p>
<h2>Install Dropbox</h2>
<p>Delete any version of <a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank">Dropbox</a> on your computer, download and untar the <a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank">Dropbox</a> daemon to your home folder:</p>
<blockquote><p>cd ~<br />
rm -rf .dropbox* Dropbox<br />
wget http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-0.7.110.tar.gz<br />
tar xzf dropbox-lnx.x86-0.7.110.tar.gz</p></blockquote>
<p>Start the &#8220;.dropbox-dist/dropbox&#8221; executable from the terminal:</p>
<blockquote><p>.dropbox-dist/dropbox</p></blockquote>
<p>Copy and paste the link the <a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank">Dropbox</a> daemon gives you, into the web browser on your local computer.<br />
Once the DB client is linked to the correct account, shut it down and start it in the background:</p>
<blockquote><p>nohup .dropbox-dist/dropboxd &amp;</p></blockquote>
<div id="_mcePaste"><strong>Now the</strong><strong> </strong><a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank"><strong>Dropbox</strong></a><strong> </strong><strong>is install and running</strong> but once you reboot <a href="https://www.dropbox.com/referrals/NTMzNTEzNTk" rel="nofollow"  target="_blank">Dropbox</a> won&#8217;t automatically startup.</div>
<h2>Add Dropbox to system startup</h2>
<p>Create a startup script:</p>
<blockquote><p>sudo nano /etc/init.d/dropbox</p></blockquote>
<p>Copy the text below to the new file you have created:</p>
<blockquote><p># chkconfig: 345 85 15<br />
# description: Startup script for dropbox daemon<br />
#<br />
# processname: dropboxd<br />
# pidfile: /var/run/dropbox.pid<br />
#<br />
# Source function library.<br />
. /etc/rc.d/init.d/functions</p>
<p>DROPBOX_USERS=&#8221;user1 user2&#8243;</p>
<p>prog=dropboxd<br />
lockfile=${LOCKFILE-/var/lock/subsys/dropbox}<br />
RETVAL=0</p>
<p>start() {<br />
echo -n $&#8221;Starting $prog&#8221;<br />
for dbuser in $DROPBOX_USERS; do<br />
daemon &#8211;user $dbuser /home/$dbuser/.dropbox-dist/dropboxd<br />
done</p>
<p>RETVAL=$?<br />
echo<br />
[ $RETVAL = 0 ] &amp;&amp; touch ${lockfile}<br />
return $RETVAL<br />
}</p>
<p>stop() {<br />
echo -n $&#8221;Stopping $prog&#8221;<br />
for dbuser in $DROPBOX_USERS; do<br />
killproc /home/$dbuser/.dropbox-dist/dropboxd<br />
done<br />
RETVAL=$?<br />
echo<br />
[ $RETVAL = 0 ] &amp;&amp; rm -f ${lockfile} ${pidfile}<br />
}</p>
<p># See how we were called.<br />
case &#8220;$1&#8243; in<br />
start)<br />
start<br />
;;<br />
stop)<br />
stop<br />
;;<br />
restart)<br />
stop<br />
start<br />
;;<br />
*)<br />
echo $&#8221;Usage: $prog {start|stop|restart}&#8221;<br />
RETVAL=3<br />
esac</p>
<p>exit $RETVAL</p></blockquote>
<p>Change above the DROPBOX_USERS to include all users that want to run dropboxd (separated by spaces), and save the file.<br />
Make the script executable:</p>
<blockquote><p>sudo chmod +x /etc/init.d/dropbox</p></blockquote>
<p>Add the script to the startup scripts:</p>
<blockquote><p>sudo update-rc.d dropbox defaults</p></blockquote>
<p><strong>And it&#8217;s done! <img src='http://lebreiro.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong> But if after this you want to manually start, stop or restart&#8230;</p>
<h3>Manually start Dropbox</h3>
<p>To start the service manually, run:</p>
<blockquote><p>/etc/init.d/dropbox start</p></blockquote>
<p>To stop it, run:</p>
<blockquote><p>/etc/init.d/dropbox stop</p></blockquote>
<p>To restart it, run:</p>
<blockquote><p>/etc/init.d/dropbox restart</p></blockquote>
<p>You can also check running status with:</p>
<blockquote><p>/etc/init.d/dropbox status</p></blockquote>
<p><strong>Any doubt or suggestion feel free to ask!</strong></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="mailto:?subject=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;body=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F" title="email"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Install%20Dropbox%20remotely%20on%20Ubuntu%20-%20http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F" title="Twitter"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;t=Install%20Dropbox%20remotely%20on%20Ubuntu" title="Facebook"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;title=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;source=Lebreiro.com+Nuno+Lebreiro+personal+blog&amp;summary=Everybody%20know%20how%20useful%20Dropbox%20is%20%28up%20to%2010Gb%20free%C2%A0web-disk%C2%A0with%20amazing%20sync%20capabilities%29%2C%20I%C2%A0wanted%20to%20install%20it%20on%20a%20Ubuntu%20Server%20remotely%20%28over%20a%20ssh%20connection%29%20to%C2%A0automatically%C2%A0copy%20my%20backups%20to%20a%20external%20server.%0D%0AI%20was%20having%20some%20" title="LinkedIn"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://lebreiro.com/blog/feed/" title="RSS"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;title=Install%20Dropbox%20remotely%20on%20Ubuntu" title="StumbleUpon"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;title=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;bodytext=Everybody%20know%20how%20useful%20Dropbox%20is%20%28up%20to%2010Gb%20free%C2%A0web-disk%C2%A0with%20amazing%20sync%20capabilities%29%2C%20I%C2%A0wanted%20to%20install%20it%20on%20a%20Ubuntu%20Server%20remotely%20%28over%20a%20ssh%20connection%29%20to%C2%A0automatically%C2%A0copy%20my%20backups%20to%20a%20external%20server.%0D%0AI%20was%20having%20some%20" title="Digg"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;title=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;notes=Everybody%20know%20how%20useful%20Dropbox%20is%20%28up%20to%2010Gb%20free%C2%A0web-disk%C2%A0with%20amazing%20sync%20capabilities%29%2C%20I%C2%A0wanted%20to%20install%20it%20on%20a%20Ubuntu%20Server%20remotely%20%28over%20a%20ssh%20connection%29%20to%C2%A0automatically%C2%A0copy%20my%20backups%20to%20a%20external%20server.%0D%0AI%20was%20having%20some%20" title="del.icio.us"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F" title="Netvibes"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;title=Install%20Dropbox%20remotely%20on%20Ubuntu&amp;annotation=Everybody%20know%20how%20useful%20Dropbox%20is%20%28up%20to%2010Gb%20free%C2%A0web-disk%C2%A0with%20amazing%20sync%20capabilities%29%2C%20I%C2%A0wanted%20to%20install%20it%20on%20a%20Ubuntu%20Server%20remotely%20%28over%20a%20ssh%20connection%29%20to%C2%A0automatically%C2%A0copy%20my%20backups%20to%20a%20external%20server.%0D%0AI%20was%20having%20some%20" title="Google Bookmarks"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2010%2F05%2Finstall-dropbox-remotely%2F&amp;partner=sociable" title="PDF"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lebreiro.com/blog/2010/05/install-dropbox-remotely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beo3DEx &#8211; The portable living room experience</title>
		<link>http://lebreiro.com/blog/2009/09/beo3dex/</link>
		<comments>http://lebreiro.com/blog/2009/09/beo3dex/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:15:04 +0000</pubDate>
		<dc:creator>Lebreiro</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[university of minho]]></category>
		<category><![CDATA[Bang & Olufsen]]></category>
		<category><![CDATA[cddip]]></category>
		<category><![CDATA[denmark]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[ERASMUS]]></category>
		<category><![CDATA[Innovation Camp]]></category>

		<guid isPermaLink="false">http://lebreiro.com/blog/?p=421</guid>
		<description><![CDATA[As I mention before I had the privilege to work at the Innovation Camp at Bang &#38; Olufsen. Now I can share a bit of the work that has been developed in the 3 weeks I was there. This is the masterpiece of five crazy engineers work. We design a unique device that offers an [...]]]></description>
			<content:encoded><![CDATA[<p>As I mention before I had the privilege to work at the <a href="http://lebreiro.com/blog/2009/08/bang-olufsen-innovation-camp/" target="_blank">Innovation Camp at Bang &amp; Olufsen</a>.</p>
<p>Now I can share a bit of the work that has been developed in the 3 weeks I was there. This is the masterpiece of five crazy engineers work.</p>
<p>We design a unique device that offers an unforgettable experience!</p>
<p style="text-align: center;"><img class="size-full wp-image-422 aligncenter" title="beo3dex" src="http://lebreiro.com/blog/wp-content/uploads/2009/09/beo3dex.jpg" alt="beo3dex" width="448" height="226" /></p>
<p>Beo3DEx is a discreet, small, moving media center that can move around the house and can also be picked up and placed anywhere. It has a 3D projector so it takes the experience of watching TV, listening to music and watching photos to a whole new level.<br />
Here is an <a href="http://www.youtube.com/watch?v=6uUZx28Epbo" rel="nofollow"  target="_blank">animation</a> that shows our concept:</p>
<p style="text-align: center;"><object style="width: 425px; height: 344px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.youtube.com/v/6uUZx28Epbo&amp;hl=en_US&amp;fs=1&amp;" /><param name="src" value="http://www.youtube.com/v/6uUZx28Epbo" /><embed style="width: 425px; height: 344px;" type="application/x-shockwave-flash" width="100" height="100" src="http://www.youtube.com/v/6uUZx28Epbo" data="http://www.youtube.com/v/6uUZx28Epbo&amp;hl=en_US&amp;fs=1&amp;"></embed></object></p>
<p>Many people call it science fiction but we say that this is the way to go and studies shows that it&#8217;s expensive but it&#8217;s possible!</p>
<p>Last but not least I would like to thank my team for their hard work, Leni Lausdahl, Jakub Macek, Jan Hula and Tomasz Likus it was a pleasure to work with. And a special thanks to  B&amp;O and all the teachers that guides us in the best direction and made this work possible!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="mailto:?subject=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;body=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F" title="email"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Beo3DEx%20-%20The%20portable%20living%20room%20experience%20-%20http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F" title="Twitter"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;t=Beo3DEx%20-%20The%20portable%20living%20room%20experience" title="Facebook"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;title=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;source=Lebreiro.com+Nuno+Lebreiro+personal+blog&amp;summary=As%20I%20mention%20before%20I%20had%20the%20privilege%20to%20work%20at%20the%20Innovation%20Camp%20at%20Bang%20%26amp%3B%20Olufsen.%0D%0A%0D%0ANow%20I%20can%20share%20a%20bit%20of%20the%20work%20that%20has%20been%20developed%20in%20the%203%20weeks%20I%20was%20there.%20This%20is%20the%20masterpiece%20of%20five%20crazy%20engineers%20work.%0D%0A%0D%0AWe%20design%20" title="LinkedIn"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://lebreiro.com/blog/feed/" title="RSS"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;title=Beo3DEx%20-%20The%20portable%20living%20room%20experience" title="StumbleUpon"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;title=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;bodytext=As%20I%20mention%20before%20I%20had%20the%20privilege%20to%20work%20at%20the%20Innovation%20Camp%20at%20Bang%20%26amp%3B%20Olufsen.%0D%0A%0D%0ANow%20I%20can%20share%20a%20bit%20of%20the%20work%20that%20has%20been%20developed%20in%20the%203%20weeks%20I%20was%20there.%20This%20is%20the%20masterpiece%20of%20five%20crazy%20engineers%20work.%0D%0A%0D%0AWe%20design%20" title="Digg"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;title=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;notes=As%20I%20mention%20before%20I%20had%20the%20privilege%20to%20work%20at%20the%20Innovation%20Camp%20at%20Bang%20%26amp%3B%20Olufsen.%0D%0A%0D%0ANow%20I%20can%20share%20a%20bit%20of%20the%20work%20that%20has%20been%20developed%20in%20the%203%20weeks%20I%20was%20there.%20This%20is%20the%20masterpiece%20of%20five%20crazy%20engineers%20work.%0D%0A%0D%0AWe%20design%20" title="del.icio.us"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F" title="Netvibes"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;title=Beo3DEx%20-%20The%20portable%20living%20room%20experience&amp;annotation=As%20I%20mention%20before%20I%20had%20the%20privilege%20to%20work%20at%20the%20Innovation%20Camp%20at%20Bang%20%26amp%3B%20Olufsen.%0D%0A%0D%0ANow%20I%20can%20share%20a%20bit%20of%20the%20work%20that%20has%20been%20developed%20in%20the%203%20weeks%20I%20was%20there.%20This%20is%20the%20masterpiece%20of%20five%20crazy%20engineers%20work.%0D%0A%0D%0AWe%20design%20" title="Google Bookmarks"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F09%2Fbeo3dex%2F&amp;partner=sociable" title="PDF"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lebreiro.com/blog/2009/09/beo3dex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macbook: Mini DisplayPort to S-Video ?!</title>
		<link>http://lebreiro.com/blog/2009/04/macbook-mini-displayport-to-s-video/</link>
		<comments>http://lebreiro.com/blog/2009/04/macbook-mini-displayport-to-s-video/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 00:06:51 +0000</pubDate>
		<dc:creator>Lebreiro</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[mini displayport]]></category>
		<category><![CDATA[s-video]]></category>
		<category><![CDATA[scart]]></category>

		<guid isPermaLink="false">http://lebreiro.com/blog/?p=302</guid>
		<description><![CDATA[I got an Aluminum Macbook and I want to connect it to my Television (Mini DisplayPort -&#62; S-Video), how can I do it? Is it amazing how Apple haven&#8217;t made a simple connector Mini DisplayPort -&#62; S-Video, haven&#8217;t they forgot the fulks who doesn&#8217;t have money to buy DVI televisions??? I have found some &#8220;solutions&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I got an <a href="http://www.apple.com/macbook/" rel="nofollow"  target="_blank">Aluminum Macbook</a> and I want to connect it to my <a href="http://en.wikipedia.org/wiki/Television" rel="nofollow"  target="_blank">Television</a> (<a href="http://en.wikipedia.org/wiki/Mini_DisplayPort" rel="nofollow"  target="_blank">Mini DisplayPort</a> -&gt; <a href="http://en.wikipedia.org/wiki/S-Video" rel="nofollow"  target="_blank">S-Video)</a>, how can I do it?</p>
<p style="text-align: center;"><img class=" aligncenter" title="miniDVItoVideo" src="http://lebreiro.com/blog/wp-content/uploads/2009/04/apple_miniDVItoVideo.jpg" alt="This is not the solution, it's a miniDVI to Video" width="128" height="128" /></p>
<p>Is it amazing how <a href="http://store.apple.com/us/browse/home/shop_mac/mac_accessories/cables?mco=NTMxNDY" rel="nofollow"  target="_blank">Apple</a> haven&#8217;t made a simple connector <a href="http://en.wikipedia.org/wiki/Mini_DisplayPort" rel="nofollow"  target="_blank">Mini DisplayPort</a> -&gt; <a href="http://en.wikipedia.org/wiki/S-Video" rel="nofollow"  target="_blank">S-Video</a>, haven&#8217;t they forgot the fulks who doesn&#8217;t have money to buy DVI televisions???</p>
<div>I have found some &#8220;solutions&#8221; (<a href="http://www.amazon.com/VideoSecu-Presentation-Converter-Laptop-1L7/dp/B000X3FAJU/ref=sr_1_50?ie=UTF8&amp;s=electronics&amp;qid=1227593643&amp;sr=1-50" rel="nofollow"  target="_blank">this</a> and <a href="http://www.amazon.com/EasyCap-Capture-Adapter-Editor-Software/dp/B001BWU8US/ref=pd_ts_e_1?ie=UTF8&amp;s=electronics" rel="nofollow"  target="_blank">this</a>) throw <a href="http://www.amazon.com/gp/bestsellers/electronics/280341/ref=pd_zg_hrsr_e_1_4_last" rel="nofollow"  target="_blank">Amazon</a> but I still not sure if they work at 100%. <img src='http://lebreiro.com/blog/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  Can anyone help?</div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="mailto:?subject=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;body=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F" title="email"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21%20-%20http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F" title="Twitter"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;t=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21" title="Facebook"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;source=Lebreiro.com+Nuno+Lebreiro+personal+blog&amp;summary=I%20got%20an%20Aluminum%20Macbook%20and%20I%20want%20to%20connect%20it%20to%20my%20Television%20%28Mini%20DisplayPort%20-%26gt%3B%20S-Video%29%2C%20how%20can%20I%20do%20it%3F%0D%0A%0D%0AIs%20it%20amazing%20how%20Apple%20haven%27t%20made%20a%20simple%20connector%20Mini%20DisplayPort%20-%26gt%3B%20S-Video%2C%20haven%27t%20they%20forgot%20the%20fulks%20who%20doesn%27" title="LinkedIn"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://lebreiro.com/blog/feed/" title="RSS"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21" title="StumbleUpon"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;bodytext=I%20got%20an%20Aluminum%20Macbook%20and%20I%20want%20to%20connect%20it%20to%20my%20Television%20%28Mini%20DisplayPort%20-%26gt%3B%20S-Video%29%2C%20how%20can%20I%20do%20it%3F%0D%0A%0D%0AIs%20it%20amazing%20how%20Apple%20haven%27t%20made%20a%20simple%20connector%20Mini%20DisplayPort%20-%26gt%3B%20S-Video%2C%20haven%27t%20they%20forgot%20the%20fulks%20who%20doesn%27" title="Digg"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;notes=I%20got%20an%20Aluminum%20Macbook%20and%20I%20want%20to%20connect%20it%20to%20my%20Television%20%28Mini%20DisplayPort%20-%26gt%3B%20S-Video%29%2C%20how%20can%20I%20do%20it%3F%0D%0A%0D%0AIs%20it%20amazing%20how%20Apple%20haven%27t%20made%20a%20simple%20connector%20Mini%20DisplayPort%20-%26gt%3B%20S-Video%2C%20haven%27t%20they%20forgot%20the%20fulks%20who%20doesn%27" title="del.icio.us"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F" title="Netvibes"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;title=Macbook%3A%20Mini%20DisplayPort%20to%20S-Video%20%3F%21&amp;annotation=I%20got%20an%20Aluminum%20Macbook%20and%20I%20want%20to%20connect%20it%20to%20my%20Television%20%28Mini%20DisplayPort%20-%26gt%3B%20S-Video%29%2C%20how%20can%20I%20do%20it%3F%0D%0A%0D%0AIs%20it%20amazing%20how%20Apple%20haven%27t%20made%20a%20simple%20connector%20Mini%20DisplayPort%20-%26gt%3B%20S-Video%2C%20haven%27t%20they%20forgot%20the%20fulks%20who%20doesn%27" title="Google Bookmarks"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F04%2Fmacbook-mini-displayport-to-s-video%2F&amp;partner=sociable" title="PDF"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lebreiro.com/blog/2009/04/macbook-mini-displayport-to-s-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Começar com DB2 Express-C 9.5</title>
		<link>http://lebreiro.com/blog/2009/03/comecar-com-db2-express-c-95/</link>
		<comments>http://lebreiro.com/blog/2009/03/comecar-com-db2-express-c-95/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 20:07:46 +0000</pubDate>
		<dc:creator>Lebreiro</dc:creator>
				<category><![CDATA[portugues]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[db2 student group]]></category>
		<category><![CDATA[getting started with db2]]></category>

		<guid isPermaLink="false">http://lebreiro.com/blog/?p=275</guid>
		<description><![CDATA[É com muito prazer que anuncio e congratulo os meus colegas DB2 Ambassadors Marcelo, Ulisses, Joana, Tiago e Sergio pela tradução do livro Getting Started with DB2 Express-C 9.5. Este já se encontra online e disponível aqui: Agora já não tens razões para não começar a explorar o DB2, qualquer duvida contacta o nosso grupo [...]]]></description>
			<content:encoded><![CDATA[<p>É com muito prazer que anuncio e congratulo os meus colegas <a href="http://caos.di.uminho.pt/~db2/" rel="nofollow"  target="_blank">DB2 Ambassadors</a> Marcelo, Ulisses, Joana, Tiago e Sergio pela tradução do livro <a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C" rel="nofollow"  target="_blank">Getting Started with DB2 Express-C 9.5</a>.</p>
<p>Este já se encontra online e disponível aqui:</p>
<p style="text-align: center;"><a href="ftp://ftp.software.ibm.com/software/data/db2/express-c/wiki/Comecar_com_DB2_Express-C_pt_PT.pdf" rel="nofollow" ><img class="aligncenter" title="Começar com DB2 Express-C 9.5" src="http://lebreiro.com/blog/wp-content/uploads/2009/03/db2-cover-thumbnail.jpg" alt="Começar com DB2 Express-C 9.5" width="108" height="142" /></a></p>
<p>Agora já não tens razões para não começar a explorar o DB2, qualquer duvida contacta o nosso <a href="http://caos.di.uminho.pt/~db2/" rel="nofollow"  target="_blank">grupo</a> e teremos todo o gosto em ajudar <img src='http://lebreiro.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="mailto:?subject=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;body=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F" title="email"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Come%C3%A7ar%20com%20DB2%20Express-C%209.5%20-%20http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F" title="Twitter"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;t=Come%C3%A7ar%20com%20DB2%20Express-C%209.5" title="Facebook"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;source=Lebreiro.com+Nuno+Lebreiro+personal+blog&amp;summary=%C3%89%20com%20muito%20prazer%20que%20anuncio%20e%20congratulo%20os%20meus%20colegas%20DB2%20Ambassadors%20Marcelo%2C%20Ulisses%2C%20Joana%2C%20Tiago%20e%20Sergio%20pela%20tradu%C3%A7%C3%A3o%20do%20livro%20Getting%20Started%20with%20DB2%20Express-C%209.5.%0D%0A%0D%0AEste%20j%C3%A1%20se%20encontra%20online%20e%20dispon%C3%ADvel%20aqui%3A%0D%0A%0D%0AAgora%20j%C3%A1%20n%C3%A3o" title="LinkedIn"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://lebreiro.com/blog/feed/" title="RSS"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5" title="StumbleUpon"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;bodytext=%C3%89%20com%20muito%20prazer%20que%20anuncio%20e%20congratulo%20os%20meus%20colegas%20DB2%20Ambassadors%20Marcelo%2C%20Ulisses%2C%20Joana%2C%20Tiago%20e%20Sergio%20pela%20tradu%C3%A7%C3%A3o%20do%20livro%20Getting%20Started%20with%20DB2%20Express-C%209.5.%0D%0A%0D%0AEste%20j%C3%A1%20se%20encontra%20online%20e%20dispon%C3%ADvel%20aqui%3A%0D%0A%0D%0AAgora%20j%C3%A1%20n%C3%A3o" title="Digg"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;notes=%C3%89%20com%20muito%20prazer%20que%20anuncio%20e%20congratulo%20os%20meus%20colegas%20DB2%20Ambassadors%20Marcelo%2C%20Ulisses%2C%20Joana%2C%20Tiago%20e%20Sergio%20pela%20tradu%C3%A7%C3%A3o%20do%20livro%20Getting%20Started%20with%20DB2%20Express-C%209.5.%0D%0A%0D%0AEste%20j%C3%A1%20se%20encontra%20online%20e%20dispon%C3%ADvel%20aqui%3A%0D%0A%0D%0AAgora%20j%C3%A1%20n%C3%A3o" title="del.icio.us"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F" title="Netvibes"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;title=Come%C3%A7ar%20com%20DB2%20Express-C%209.5&amp;annotation=%C3%89%20com%20muito%20prazer%20que%20anuncio%20e%20congratulo%20os%20meus%20colegas%20DB2%20Ambassadors%20Marcelo%2C%20Ulisses%2C%20Joana%2C%20Tiago%20e%20Sergio%20pela%20tradu%C3%A7%C3%A3o%20do%20livro%20Getting%20Started%20with%20DB2%20Express-C%209.5.%0D%0A%0D%0AEste%20j%C3%A1%20se%20encontra%20online%20e%20dispon%C3%ADvel%20aqui%3A%0D%0A%0D%0AAgora%20j%C3%A1%20n%C3%A3o" title="Google Bookmarks"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F03%2Fcomecar-com-db2-express-c-95%2F&amp;partner=sociable" title="PDF"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lebreiro.com/blog/2009/03/comecar-com-db2-express-c-95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Beginning&#8230;</title>
		<link>http://lebreiro.com/blog/2009/01/the-beginning/</link>
		<comments>http://lebreiro.com/blog/2009/01/the-beginning/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 12:00:48 +0000</pubDate>
		<dc:creator>Lebreiro</dc:creator>
				<category><![CDATA[stuff]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[university of minho]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[rockwell arena]]></category>
		<category><![CDATA[systems engineering]]></category>
		<category><![CDATA[universidade do minho]]></category>

		<guid isPermaLink="false">http://lebreiro.wordpress.com/?p=29</guid>
		<description><![CDATA[Welcome to lebreiro.com and have a happy new year! Creating a blog was a challenge that a good friend made me a long time ago, but I never had the time to actually done it. But new year, new resolutions, new blog! On this blog I’ll post about my achievements, technology and everything I love. [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://www.lebreiro.com" rel="nofollow" title="Lebreiro.com"  target="_self">lebreiro.com</a> and have a happy new year! <img src='http://lebreiro.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Creating a blog was a challenge that a <a href="http://www.nunojob.com" rel="nofollow"  target="_blank">good friend</a> made me a long time ago, but I never had the time to actually done it. But new year, new resolutions, new blog!</p>
<p>On this blog I’ll post about my achievements, technology and everything I love. Mainly the posts will be written in <a href="http://en.wikipedia.org/wiki/English_language" rel="nofollow"  target="_blank">English</a> so all my friends can read it, but from time to time I&#8217;ll post in my native language (<a href="http://en.wikipedia.org/wiki/Portuguese_language" rel="nofollow"  target="_blank">Portuguese</a>).</p>
<p>I little bit about me, I’m currently attending a Masters degree in <a href="http://www.dps.uminho.pt/Default.aspx?tabid=7&amp;pageid=325&amp;lang=pt-PT" rel="nofollow"  target="_blank">Systems Engineering</a> at <a href="http://www.dps.uminho.pt/" rel="nofollow"  target="_blank">Department of Production and Systems Engineering</a> in <a href="http://www.uminho.pt/" rel="nofollow"  target="_blank">University of Minho (UM)</a>, so every week I learn some cool stuff!</p>
<p>In the last three month I had <em>Database Advanced Exploration and Management</em>, currently I&#8217;m attending at <em>Production Management</em>,<em> Systems Decision Support </em>and<em> </em><em>Simulation</em>, this are the first term curricular units of my MSc.</p>
<p>For now I&#8217;m working in <a href="http://www.arenasimulation.com/" rel="nofollow"  target="_blank">Rockwell Arena 10</a> <em>(Simulation)</em>, if you got any experience or just need a help with this software let me know.</p>
<p>Last year I started to work as a Junior Researcher, I work in two different projects but both equally interesting, I loved the experience of having to learn all by myself, it was great!</p>
<p>I love informatics, last year I got a new <a href="http://www.apple.com/macbook/" rel="nofollow"  target="_blank">MacBook</a>, so now and then I discover new and exiting things about <a href="http://www.apple.com/macbook/software.html" rel="nofollow"  target="_blank">Mac OS X</a> and I will share them with you.</p>
<p>Stay tuned and you may find some interesting stuff!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Beginning...&amp;body=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F" title="email"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20Beginning...%20-%20http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F" title="Twitter"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;t=The%20Beginning..." title="Facebook"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;title=The%20Beginning...&amp;source=Lebreiro.com+Nuno+Lebreiro+personal+blog&amp;summary=Welcome%20to%20lebreiro.com%20and%20have%20a%20happy%20new%20year%21%20%3B%29%0D%0A%0D%0ACreating%20a%20blog%20was%20a%20challenge%20that%20a%20good%20friend%20made%20me%20a%20long%20time%20ago%2C%20but%20I%20never%20had%20the%20time%20to%20actually%20done%20it.%20But%20new%20year%2C%20new%20resolutions%2C%20new%20blog%21%0D%0A%0D%0AOn%20this%20blog%20I%E2%80%99ll%20post%20ab" title="LinkedIn"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://lebreiro.com/blog/feed/" title="RSS"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;title=The%20Beginning..." title="StumbleUpon"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;title=The%20Beginning...&amp;bodytext=Welcome%20to%20lebreiro.com%20and%20have%20a%20happy%20new%20year%21%20%3B%29%0D%0A%0D%0ACreating%20a%20blog%20was%20a%20challenge%20that%20a%20good%20friend%20made%20me%20a%20long%20time%20ago%2C%20but%20I%20never%20had%20the%20time%20to%20actually%20done%20it.%20But%20new%20year%2C%20new%20resolutions%2C%20new%20blog%21%0D%0A%0D%0AOn%20this%20blog%20I%E2%80%99ll%20post%20ab" title="Digg"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;title=The%20Beginning...&amp;notes=Welcome%20to%20lebreiro.com%20and%20have%20a%20happy%20new%20year%21%20%3B%29%0D%0A%0D%0ACreating%20a%20blog%20was%20a%20challenge%20that%20a%20good%20friend%20made%20me%20a%20long%20time%20ago%2C%20but%20I%20never%20had%20the%20time%20to%20actually%20done%20it.%20But%20new%20year%2C%20new%20resolutions%2C%20new%20blog%21%0D%0A%0D%0AOn%20this%20blog%20I%E2%80%99ll%20post%20ab" title="del.icio.us"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=The%20Beginning...&amp;url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F" title="Netvibes"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;title=The%20Beginning...&amp;annotation=Welcome%20to%20lebreiro.com%20and%20have%20a%20happy%20new%20year%21%20%3B%29%0D%0A%0D%0ACreating%20a%20blog%20was%20a%20challenge%20that%20a%20good%20friend%20made%20me%20a%20long%20time%20ago%2C%20but%20I%20never%20had%20the%20time%20to%20actually%20done%20it.%20But%20new%20year%2C%20new%20resolutions%2C%20new%20blog%21%0D%0A%0D%0AOn%20this%20blog%20I%E2%80%99ll%20post%20ab" title="Google Bookmarks"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Flebreiro.com%2Fblog%2F2009%2F01%2Fthe-beginning%2F&amp;partner=sociable" title="PDF"><img src="http://lebreiro.com/blog/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lebreiro.com/blog/2009/01/the-beginning/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
