<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>im-roberto</title>
	
	<link>http://www.im-roberto.info</link>
	<description>My personal blog where I write whatever comes to mind</description>
	<lastBuildDate>Fri, 02 Jul 2010 22:56:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Im-roberto" /><feedburner:info uri="im-roberto" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Send Google Voice SMS Push notifications to your iPhone using your webhost</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/_Oe1tAsWJkM/</link>
		<comments>http://www.im-roberto.info/2010/03/31/send-google-voice-sms-push-notifications-to-your-iphone-using-your-webhost/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 21:43:59 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Computers, Internet, Tech]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=695</guid>
		<description><![CDATA[As I have promised, I created a little ruby script which can easily be translated into Perl, PHP, or whatever language of your choosing. You are required to somehow pipe the e-mail to your script which there are various methods to do so, I will be explaining it using Dreamhost because that happens to be my current web host as of this writing.


Related posts:<ol><li><a href='http://www.im-roberto.info/2010/02/28/google-voice-push-notifications-on-iphone/' rel='bookmark' title='Permanent Link: Google Voice Push Notifications on iPhone'>Google Voice Push Notifications on iPhone</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As I have promised, I created a little ruby script which can easily be translated into Perl, PHP, or whatever language of your choosing. You are required to somehow pipe the e-mail to your script which there are various methods to do so, I will be explaining it using Dreamhost because that happens to be my current web host as of this writing.</p>
<p>Let&#8217;s get started</p>
<p><strong>The Process:</strong><br />
What we are doing here is we are forwarding SMS messages (theres an option in your google voice settings) to your GMAIL account. On your GMAIL account you are going to then forward the message using a filter to a domain name e-mail address, which will then be piped to the script. The script is going to parse the raw email (convert raw data into something readable) and finally send it to your iPhone using the Prowl API (you will need to have the Prowl App installed on your iPhone).</p>
<p>No that we got that out of the way <strong>login to your Google Voice account</strong> and click on the <strong>Settings </strong>link. Then select the <strong>Voicemail and SMS tab</strong>. Under the Voicemail Notifications section <strong>check </strong>the box that says &#8220;<strong>Email the message to:</strong>&#8220;.</p>
<p>Logon to your GMAIL account and click on the <strong>Settings </strong>link select the <strong>Filters Tab</strong> and at the very bottom click the <strong>Create a new filter</strong> link. In the From Field enter the following:</p>
<p><code>*@txt.voice.google.com</code></p>
<p>Click on Next Step and Check the following boxes:<br />
<code>Skip the Inbox (Archive it)<br />
Forward it to: THE DOMAIN EMAIL ADDRESS YOU WILL BE CREATING SOON<br />
Delete it</code></p>
<p>You have successfully completed the easy part of this!</p>
<p>As I have mentioned before this guide will walk you through using Dreamhost as your hosting services. It can easily be done by other means with your host just send them an e-mail or try to follow the general idea of this guide <a href="http://www.evolt.org/incoming_mail_and_php">Incoming Mail and PHP</a>.</p>
<p>Login to your Dreamhost Panel and go into the Mail -> Manage E-Mail section. You are going to create an e-mail address using the email address you added to the GMAIL filter that is going to only forward mails to your server mail. What I mean by that is say I used in my GMAIL filter SMS@YOURDOMAIN.COM then create that same address in your Email panel on Dreamhost but select the option to only forward incoming mails to this address to your local server email. Your local server email address on Dreamhost is your username@server.com for example the server im on is jebediah.dreamhost.com then I&#8217;m going to use DREAMHOST-USERNAME@jebediah.dreamhost.com. You can easily get the server address by logging in using SSH it will be one of the lines that appears when you login.</p>
<p>Next thing we will need to do is create a file named <strong>.forward.postfix</strong> with the following contents and put it in your root directory:<br />
<script src="http://gist.github.com/350743.js?file=.forward.postfix"></script></p>
<p>Also create another file named <strong>.procmailrc</strong> with the following contents and put it in your root directory as well:<br />
<script src="http://gist.github.com/350743.js?file=.procmailrc"></script></p>
<p>The only thing you need to know here is that the last three lines matches the forwarding e-mail address we created on your host and tells it to forward that incoming e-mail to the ruby script. The reason why we are matching for &#8220;X-Forwarded-To&#8221; is because we are forwarding from our GMAIL and therefore the e-mail address we created on our webhost wont appear in the &#8220;To&#8221; field of the raw e-mail.</p>
<p>The Ruby script is very plain and simple create a file named mail.rb and put it the root folder or wherever you wish to just as long as you are properly specifying its full path in the .procmailrc file, with the following contents:<br />
<script src="http://gist.github.com/350743.js?file=mail.rb"></script></p>
<p>The script is pretty straight forward we are using the TMAIL gem and the Prowly gem. The Tmail gem basically takes the STDIN input (the raw email) and parses it to something more usable to send to the Prowl API.</p>
<p>Of course this is a one user scenario, if you wish to support multiple users and higher volumes you may want to look into using other means. I originally created a similar version of this script in PHP which just grabs the raw data and performs a post request to another script in order to keep things to a minimum on the piped script.</p>
<p>Once you have the raw e-mail parsed you can basically do anything you want. You can match the mail.to e-mail address to a local database and extract the Prowl API from there to support multiple users. Or even go a step further and send the message to your GTALK by creating a simple XMPP bot. This script is very much open source, do as you wish with it. I&#8217;m pretty new at writing things in ruby so if you have yet a more efficient way of doing this please let me know.</p>
<p>Useful resources:<br />
<a href="http://www.evolt.org/incoming_mail_and_php">http://www.evolt.org/incoming_mail_and_php</a><br />
<a href="http://tmail.rubyforge.org/">http://tmail.rubyforge.org/</a><br />
<a href="http://prowl.weks.net/api.php">http://prowl.weks.net/api.php</a><br />
<a href="http://github.com/rafmagana/prowly">http://github.com/rafmagana/prowly</a></p>


<p>Related posts:<ol><li><a href='http://www.im-roberto.info/2010/02/28/google-voice-push-notifications-on-iphone/' rel='bookmark' title='Permanent Link: Google Voice Push Notifications on iPhone'>Google Voice Push Notifications on iPhone</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2010/03/31/send-google-voice-sms-push-notifications-to-your-iphone-using-your-webhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2010/03/31/send-google-voice-sms-push-notifications-to-your-iphone-using-your-webhost/</feedburner:origLink></item>
		<item>
		<title>Google Voice Push Notifications on iPhone</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/B9eKcwfQhgM/</link>
		<comments>http://www.im-roberto.info/2010/02/28/google-voice-push-notifications-on-iphone/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 21:12:40 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Computers, Internet, Tech]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=689</guid>
		<description><![CDATA[If you have not yet heard of google voice its basically a service that provides you a phone number that you can use to make phone calls, and send and receive text messages through google. In any case the best way to find out about the service is to simply watch the videos posted on the website at <a href="http://www.google.com/googlevoice/about.html">http://www.google.com/googlevoice/about.html</a>.


Related posts:<ol><li><a href='http://www.im-roberto.info/2010/03/31/send-google-voice-sms-push-notifications-to-your-iphone-using-your-webhost/' rel='bookmark' title='Permanent Link: Send Google Voice SMS Push notifications to your iPhone using your webhost'>Send Google Voice SMS Push notifications to your iPhone using your webhost</a></li>
<li><a href='http://www.im-roberto.info/2009/02/09/google-push-vs-plaxo/' rel='bookmark' title='Permanent Link: Google Push Vs. Plaxo'>Google Push Vs. Plaxo</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you have not yet heard of google voice its basically a service that provides you a phone number that you can use to make phone calls, and send and receive text messages through google. In any case the best way to find out about the service is to simply watch the videos posted on the website at <a href="http://www.google.com/googlevoice/about.html">http://www.google.com/googlevoice/about.html</a>.</p>
<p>Google Voice is a very convenient service because it can save you money on your cell phone bill by no longer needing to pay the extra $15 for unlimited text messages all you need is access to the web. This service is easily available on any phone that uses the Android OS. Unfortunately Apple did not approve the Google Voice app on the iPhone appstore and therefore there is no easy way to receive push notifications to your iPhone when you have received a text message or voice mail on your google voice number. The closest thing you have is the ability to receive e-mails that are forwarded to your phone (if you have your e-mail set up on your phone).</p>
<p>Luckily you still have some options if you are an iPhone owner. You do need to jump through a bit of hurdles if you wish to get this done though.</p>
<p>Things you will need:</p>
<ol>
<li>An iPhone.. Duh!</li>
<li>Prowl (iPhone App)</li>
<li>Either an account at: <a href="http://googlevoice.ub3rk1tten.com/voicegrowl/">http://googlevoice.ub3rk1tten.com/voicegrowl/</a> or with <a href="https://www.gvmax.com/">https://www.gvmax.com/</a></li>
</ol>
<p>I have used the Voice Growl service in the past and works quiet well, with the exception that at times the service does go down for a few minutes. I have not tested or used GVMax but it does sound promising and the software is now open source as well which may be something you Java nerds may like to take a look at.</p>
<p>Sadly enough these services provide you with a means to receive Push notifications to your iPhone when you receive a message but still does not provide you with an easy means to reply back. You can simply use googles renovated google voice mobile site which works well but depending on how fast your connection may be can slow you down. Or if you have a jailbroken iphone you can always give the app found in Cydia.</p>
<p>If you are one handy developer there are also many libraries written in various languages that you can use to your advantage for receiving and replying to messages. <a href="http://prowl.weks.net/api.php">Prowl </a>has various 3rd party libraries you can use to send notifications to your iPhone. I have found the php library found at github to work well for all my needs <a href="http://github.com/Fenric/ProwlPHP">http://github.com/Fenric/ProwlPHP</a>. Aside from that there are also various third party libraries for Google Voice (aka unofficial google voice api) in many languages all you need to do is perform a google search, I currently use the PHP library found at github <a href="http://github.com/aaronpk/Google-Voice-PHP-API">http://github.com/aaronpk/Google-Voice-PHP-API</a>. If you are a developer with a little creativity and a bit of time you can come up with a good solution for your iPhone Google Voice needs. </p>
<p>I will soon be posting my own code as well as I currently use Google Voice -&gt; My <a href="http://dreamhost.com/">Dreamhost</a> Procmail -&gt; Prowl &amp; Gtalk to receive messages and currently working on an XMPP format to send messages back.</p>


<p>Related posts:<ol><li><a href='http://www.im-roberto.info/2010/03/31/send-google-voice-sms-push-notifications-to-your-iphone-using-your-webhost/' rel='bookmark' title='Permanent Link: Send Google Voice SMS Push notifications to your iPhone using your webhost'>Send Google Voice SMS Push notifications to your iPhone using your webhost</a></li>
<li><a href='http://www.im-roberto.info/2009/02/09/google-push-vs-plaxo/' rel='bookmark' title='Permanent Link: Google Push Vs. Plaxo'>Google Push Vs. Plaxo</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2010/02/28/google-voice-push-notifications-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2010/02/28/google-voice-push-notifications-on-iphone/</feedburner:origLink></item>
		<item>
		<title>LA Ruby Meetup</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/WvSazGIclyY/</link>
		<comments>http://www.im-roberto.info/2009/10/26/la-ruby-meetup/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 04:44:16 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Computers, Internet, Tech]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=677</guid>
		<description><![CDATA[A few weeks ago I attended my first LA Ruby meet up. Basically it's a group of Ruby enthusiasts getting together and talking about Ruby and Ruby on Rails. I was rather surprised the community was more of an older mature crowd than.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I attended my first LA Ruby meet up. Basically it&#8217;s a group of Ruby enthusiasts getting together and talking about Ruby and Ruby on Rails. I was rather surprised the community was more of an older mature crowd than. I would have expect various to be young web entrepreneurs or something of that liking. There was a speaker at the meetup from Heroku showing off their product and how awesome their dynamic cloud services work. It&#8217;s basically a cloud within a cloud which makes for interesting ultra dynamic services. Along with Heroku we also had another guest speaker who spoke of marketing and pitching your web product to the masses. It&#8217;s been a while since I blog and thought id share my wonderful experience with the LA Ruby group earlier this month.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/10/26/la-ruby-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/10/26/la-ruby-meetup/</feedburner:origLink></item>
		<item>
		<title>Glimpses of Egypt Vimeo Video</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/KAz0DAwcNz8/</link>
		<comments>http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 17:25:37 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Egypt]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Vimeo]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=661</guid>
		<description><![CDATA[Lately it has been my passion to really try to get out and travel as much as I possibly can. I've actually been considering a long backpacking trip in the middle east and end somewhere in Asia be it India or Thailand. Watching this really beautiful video of Egypt and all of its ruins makes me want to leave on my trip as soon as possible. Although there is much left, I'm only at the stage of brainstorming and seeking information I have been moved and motivated on my travel idea.


Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/' rel='bookmark' title='Permanent Link: Kuroshio Sea Vimeo Video on 5DMK2'>Kuroshio Sea Vimeo Video on 5DMK2</a></li>
<li><a href='http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/' rel='bookmark' title='Permanent Link: Video clips from my weekend at Seattle'>Video clips from my weekend at Seattle</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Lately it has been my passion to really try to get out and travel as much as I possibly can. I&#8217;ve actually been considering a long backpacking trip in the middle east and end somewhere in Asia be it India or Thailand. Watching this really beautiful video of Egypt and all of its ruins makes me want to leave on my trip as soon as possible. Although there is much left, I&#8217;m only at the stage of brainstorming and seeking information I have been moved and motivated on my travel idea.</p>
<p>It seems like lately I&#8217;ve found Vimeo to the home of most of my entertainment seeing that the videos found on the site have far better quality than the videos found on Youtube. Aside from that I have found many gorgeous travel videos from a span of various places across the world.</p>
<p><a href="http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/"><em>Click here to view the embedded video.</em></a></p>


<p>Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/' rel='bookmark' title='Permanent Link: Kuroshio Sea Vimeo Video on 5DMK2'>Kuroshio Sea Vimeo Video on 5DMK2</a></li>
<li><a href='http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/' rel='bookmark' title='Permanent Link: Video clips from my weekend at Seattle'>Video clips from my weekend at Seattle</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/</feedburner:origLink></item>
		<item>
		<title>Video clips from my weekend at Seattle</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/c14XYX65Gn8/</link>
		<comments>http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 01:20:18 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[RAV3]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=655</guid>
		<description><![CDATA[I took a rather short vacation in late May early June to Seattle. It was a long time since I last get to see a few old friends whom I actually met online (that story is for another day). We went out camping to a salt water lake or canal area a few hours outside of Seattle. There I might some new people, had a few drinks, ate tons of new foods to me, and just plain out had a blast.


Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/' rel='bookmark' title='Permanent Link: Glimpses of Egypt Vimeo Video'>Glimpses of Egypt Vimeo Video</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/"><em>Click here to view the embedded video.</em></a></p>
<p>I took a rather short vacation in late May early June to Seattle. It was a long time since I last get to see a few old friends whom I actually met online (that story is for another day). We went out camping to a salt water lake or canal area a few hours outside of Seattle. There I met some new people, had a few drinks, ate tons of new foods to me, and just plain out had a blast. It has been over a year since I really take any time off and get to really travel and explore another country. I still aspire in getting to know the world. Hopefully that will come in time, be it traveling in luxury or vagabonding my way through the world.</p>


<p>Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/' rel='bookmark' title='Permanent Link: Glimpses of Egypt Vimeo Video'>Glimpses of Egypt Vimeo Video</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/07/16/video-clips-from-my-weekend-at-seattle/</feedburner:origLink></item>
		<item>
		<title>Kuroshio Sea Vimeo Video on 5DMK2</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/pjC7l3Z1dQ4/</link>
		<comments>http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:35:11 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Aquarium]]></category>
		<category><![CDATA[Canon 5D Mark 2]]></category>
		<category><![CDATA[Canon 5D Mark II]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Kuroshio Sea]]></category>
		<category><![CDATA[Marine]]></category>
		<category><![CDATA[Marine Biology]]></category>
		<category><![CDATA[Okinawa]]></category>
		<category><![CDATA[Sharks]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=641</guid>
		<description><![CDATA[Ever since Canon showed off some of the sample videos recorded on the 5D Mark 2 camera I fell in love. The quality and clarity is amazing. This video was recorded in Japan in Okinawa Churaumi Aquarium. This Aquarium has one of the worlds largest tanks, holding whale sharks and various other rare sea species. Seeing that one of my friends is going to be studying Marine Biology and watching this video I begin to understand what she finds so fascinating about sea life.


Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/' rel='bookmark' title='Permanent Link: Glimpses of Egypt Vimeo Video'>Glimpses of Egypt Vimeo Video</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><p><a href="http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/"><em>Click here to view the embedded video.</em></a></p><br />
Ever since Canon showed off some of the sample videos recorded on the 5D Mark 2 camera I fell in love. The quality and clarity is amazing. This video was recorded in Japan in Okinawa Churaumi Aquarium. This Aquarium has one of the worlds largest tanks, holding whale sharks and various other rare sea species. Seeing that one of my friends is going to be studying Marine Biology and watching this video I begin to understand what she finds so fascinating about sea life.</p>
<p>It&#8217;s best if you watch it in HD on full screen mode to really appreciate it:<br />
<a href="http://vimeo.com/5606758">http://vimeo.com/5606758</a></p>


<p>Related posts:<ol><li><a href='http://www.im-roberto.info/2009/07/18/glimpses-of-egypt-vimeo-video/' rel='bookmark' title='Permanent Link: Glimpses of Egypt Vimeo Video'>Glimpses of Egypt Vimeo Video</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/07/15/kuroshio-sea-vimeo-video-on-5dmk2/</feedburner:origLink></item>
		<item>
		<title>The Pillows 20th anniversary contest!</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/OQbIweeTto8/</link>
		<comments>http://www.im-roberto.info/2009/07/14/the-pillows-20th-anniversary-contest/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 23:57:58 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=637</guid>
		<description><![CDATA[My friend Manuel has entered the Pillows 20th anniversary Youtube contest. Basically they have to make a cover to one of their songs and the winner will be picked based on Views. So far based on what I've seen they have the best video. Good Luck Elmmo hope you win and get to go to Japan!


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>My friend Manuel has entered the Pillows 20th anniversary Youtube contest. Basically they have to make a cover to one of their songs and the winner will be picked based on Views. So far based on what I&#8217;ve seen they have the best video. Good Luck Elmmo hope you win and get to go to Japan!<br />
<p><a href="http://www.im-roberto.info/2009/07/14/the-pillows-20th-anniversary-contest/"><em>Click here to view the embedded video.</em></a></p></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/07/14/the-pillows-20th-anniversary-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/07/14/the-pillows-20th-anniversary-contest/</feedburner:origLink></item>
		<item>
		<title>Happy 4th of July</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/_IaEj79Mdro/</link>
		<comments>http://www.im-roberto.info/2009/07/04/happy-4th-of-july/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:28:50 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=629</guid>
		<description><![CDATA[I just thought I&#8217;d share a humbling moment I had yesterday while doing some market research at work. This is something I posted on my Facebook status and I will try my best to pursue a more modest outtake on my daily life based on this, and not take so many things for granted. Today [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_630" class="wp-caption alignnone" style="width: 310px"><img src="http://www.im-roberto.info/wp-content/uploads/2009/07/050704-F-7906C-004-300x272.jpg" alt="Happy 4th of July" title="4th of July Fireworks" width="300" height="272" class="size-medium wp-image-630" /><p class="wp-caption-text">Happy 4th of July</p></div>I just thought I&#8217;d share a humbling moment I had yesterday while doing some market research at work. This is something I posted on my Facebook status and I will try my best to pursue a more modest outtake on my daily life based on this, and not take so many things for granted.</p>
<blockquote><p>Today I spoke with 3 musicians from Congo, and they told me that we take all that we have for granted here in the US. We live in wonderland. I must say that after that conversation they really opened my eyes to how blessed we really are. Everyone have a Happy 4th of July Weekend</p></blockquote>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/07/04/happy-4th-of-july/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/07/04/happy-4th-of-july/</feedburner:origLink></item>
		<item>
		<title>Just Learning</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/wOUdUcH2QFk/</link>
		<comments>http://www.im-roberto.info/2009/04/21/just-learning/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 18:11:08 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Computers, Internet, Tech]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=621</guid>
		<description><![CDATA[Ever since I came across the Youtube Edu site I've been watching a whole lot of programming videos and have picked up a whole bunch of concepts that I would have never learned on my own.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Ever since I came across the <a title="Youtube Edu" href="http://www.youtube.com/edu">Youtube Edu</a> site I&#8217;ve been watching a whole lot of programming videos and have picked up a whole bunch of concepts that I would have never learned on my own. Personally I see this as a very good resource to those who really want to learn the concepts of software engineering as well to those seasoned programmers that just need to refresh and get a quick reference to some concept of some kind.</p>
<p>Beginning Programming in Java :<br /><a title="Stanford University CS106a" href="http://www.youtube.com/view_play_list?p=84A56BC7F4A1F852">http://www.youtube.com/view_play_list?p=84A56BC7F4A1F852</a><br />
<p><a href="http://www.im-roberto.info/2009/04/21/just-learning/"><em>Click here to view the embedded video.</em></a></p></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/04/21/just-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/04/21/just-learning/</feedburner:origLink></item>
		<item>
		<title>Free Universities Courses on Youtube!</title>
		<link>http://feedproxy.google.com/~r/Im-roberto/~3/HJBqBaARP90/</link>
		<comments>http://www.im-roberto.info/2009/04/04/free-universities-courses-on-youtube/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:17:23 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.im-roberto.info/?p=616</guid>
		<description><![CDATA[Just recently I’ve ran across the Educational side of Youtube, more specifically the section that includes various videos from many well known universities. Today I sat down and watched through a few beginner programming courses, from the Stanford University Computer Sciences department, and beginner courses in Electronics Engineering.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Just recently I’ve ran across the Educational side of Youtube, more specifically the section that includes various videos from many well known universities. Today I sat down and watched through a few beginner programming courses, from the Stanford University Computer Sciences department, and beginner courses in Electronics Engineering. This is mind blowing and amazing all at once because most of these videos were recorded inside of the classroom of that University and if you can dig deep enough in the Universities website you can probably get a hold of other classroom handouts and other useful materials from that specific class. I won’t even speak of the MIT Open Course website because that alone is a gold mine of education. In any case I’m going to be cancelling all my dates and appointments and hide myself away from a few months while I sit and go through these classes online for free.</p>
<p><a href="http://www.youtube.com/edu">http://www.youtube.com/edu</a><br />
<a href="http://ocw.mit.edu/">http://ocw.mit.edu/</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.im-roberto.info/2009/04/04/free-universities-courses-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.im-roberto.info/2009/04/04/free-universities-courses-on-youtube/</feedburner:origLink></item>
	</channel>
</rss>
