<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Talk Binary</title>
	
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Wed, 15 Feb 2012 16:01:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TalkBinary" /><feedburner:info uri="talkbinary" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:emailServiceId>TalkBinary</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Send Email Through Gmail Using Libcurl</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/JsR6RE3_Emw/</link>
		<comments>http://talkbinary.com/programming/c/how-to-send-email-through-gmail-using-libcurl/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 04:53:36 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4274</guid>
		<description><![CDATA[I needed to send an e-mail through my C++ program and was able to do it using Libcurl. Since I had a hard time initially, I decided to share the following with you. Download libcurl First download libcurl. I found binaries for my OS, Mac OSX, with some instructions on how to unpackage it making<a class="moretag" href="http://talkbinary.com/programming/c/how-to-send-email-through-gmail-using-libcurl/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>I needed to send an e-mail through my C++ program and was able to do it using Libcurl. Since I had a hard time initially, I decided to share the following with you. </p>
<h2 id="section-1">Download libcurl</h2>
<hr />
First download <a href="http://curl.haxx.se/">libcurl</a>. I found binaries for my OS, Mac OSX, with some instructions on how to unpackage it making installation a breeze. </p>
<h2 id="section-2">Compiling a Sample SMTP Program with Authentication and Transport Security</h2>
<hr />
I found a sample <a href="http://curl.haxx.se/libcurl/c/smtp-tls.html">smtp-tls</a> program in which I simply saved and compiled to make sure libcurl was linking properly. If it isn&#8217;t, try compiling it in the following manner:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">g++</span> smtp-tls.c <span style="color: #660033;">-o</span> smtp-tls <span style="color: #660033;">-lcurl</span></pre></div></div>

<h2 id="section-3">Modifying the Sample to Work with GMail</h2>
<hr />
I found the configuration instructions in the following support page: <a href="http://support.google.com/mail/bin/answer.py?hl=en&#038;answer=13287">Configuring Other Mail Clients</a>.</p>
<p>I modified the following lines in the smtp-tls program to make it work with GMail.</p>
<p>First, I changed the following FROM, TO, CC variables from</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#define FROM    &quot;&lt;sender@example.org&gt;&quot;</span>
<span style="color: #339900;">#define TO      &quot;&lt;addressee@example.net&gt;&quot;</span>
<span style="color: #339900;">#define CC      &quot;&lt;info@example.org&gt;&quot;</span></pre></div></div>

<p>to the following.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#define FROM    &quot;&lt;myemailaddress@gmail.com&gt;&quot;</span>
<span style="color: #339900;">#define TO      &quot;&lt;myemailaddress@gmail.com&gt;&quot;</span>
<span style="color: #339900;">#define CC      &quot;&lt;myemailaddress@gmail.com&gt;&quot;</span></pre></div></div>

<p>Then I changed the following line setting the URL from</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">curl_easy_setopt<span style="color: #008000;">&#40;</span>curl, CURLOPT_URL, <span style="color: #FF0000;">&quot;smtp://mainserver.example.net:587&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span></pre></div></div>

<p>to the following.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">curl_easy_setopt<span style="color: #008000;">&#40;</span>curl, CURLOPT_URL, <span style="color: #FF0000;">&quot;smtp://smtp.gmail.com:587&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span></pre></div></div>

<p>I then commented out the following line</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #666666;">//curl_easy_setopt(curl, CURLOPT_CAINFO,&quot;/path/to/certificate.pem&quot;);</span></pre></div></div>

<p>since I kept receiving errors about certificates and wasn&#8217;t sure how to fix this. (If this isn&#8217;t done properly, please let me know otherwise!) </p>
<p>Afterwards, I simply put my e-mail address and password</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">    curl_easy_setopt<span style="color: #008000;">&#40;</span>curl, CURLOPT_USERNAME, <span style="color: #FF0000;">&quot;myemailaddress@gmail.com&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    curl_easy_setopt<span style="color: #008000;">&#40;</span>curl, CURLOPT_PASSWORD, <span style="color: #FF0000;">&quot;PASSWORD123&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span></pre></div></div>

<p>The console looked in the following manner:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">*</span> About to connect<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> to smtp.gmail.com port <span style="color: #000000;">587</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #666666; font-style: italic;">#0)</span>
<span style="color: #000000; font-weight: bold;">*</span>   Trying 74.125.53.109... <span style="color: #000000; font-weight: bold;">*</span> connected
<span style="color: #000000; font-weight: bold;">*</span> Connected to smtp.gmail.com <span style="color: #7a0874; font-weight: bold;">&#40;</span>74.125.53.109<span style="color: #7a0874; font-weight: bold;">&#41;</span> port <span style="color: #000000;">587</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #666666; font-style: italic;">#0)</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">220</span> mx.google.com ESMTP q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">&gt;</span> EHLO unknownc42c0304eee8
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-mx.google.com at your service, <span style="color: #7a0874; font-weight: bold;">&#91;</span>99.53.224.80<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-SIZE <span style="color: #000000;">35882577</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-8BITMIME
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-STARTTLS
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> ENHANCEDSTATUSCODES
<span style="color: #000000; font-weight: bold;">&gt;</span> STARTTLS
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">220</span> 2.0.0 Ready to start TLS
<span style="color: #000000; font-weight: bold;">*</span> SSL connection using RC4-SHA
<span style="color: #000000; font-weight: bold;">*</span> Server certificate:
<span style="color: #000000; font-weight: bold;">*</span> 	 subject: <span style="color: #007800;">C</span>=US; <span style="color: #007800;">ST</span>=California; <span style="color: #007800;">L</span>=Mountain View; <span style="color: #007800;">O</span>=Google Inc; <span style="color: #007800;">CN</span>=smtp.gmail.com
<span style="color: #000000; font-weight: bold;">*</span> 	 start <span style="color: #c20cb9; font-weight: bold;">date</span>: <span style="color: #000000;">2011</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">18</span> 01:<span style="color: #000000;">57</span>:<span style="color: #000000;">17</span> GMT
<span style="color: #000000; font-weight: bold;">*</span> 	 expire <span style="color: #c20cb9; font-weight: bold;">date</span>: <span style="color: #000000;">2012</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">18</span> 02:07:<span style="color: #000000;">17</span> GMT
<span style="color: #000000; font-weight: bold;">*</span> 	 common name: smtp.gmail.com <span style="color: #7a0874; font-weight: bold;">&#40;</span>matched<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">*</span> 	 issuer: <span style="color: #007800;">C</span>=US; <span style="color: #007800;">O</span>=Google Inc; <span style="color: #007800;">CN</span>=Google Internet Authority
<span style="color: #000000; font-weight: bold;">*</span> 	 SSL certificate verify ok.
<span style="color: #000000; font-weight: bold;">&gt;</span> EHLO unknownc42c0304eee8
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-mx.google.com at your service, <span style="color: #7a0874; font-weight: bold;">&#91;</span>99.53.224.80<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-SIZE <span style="color: #000000;">35882577</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-8BITMIME
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span>-AUTH LOGIN PLAIN XOAUTH
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> ENHANCEDSTATUSCODES
<span style="color: #000000; font-weight: bold;">&gt;</span> AUTH PLAIN <span style="color: #007800;">a3VyaXlha2lAA21haWwuY291AGt1cml5YWtpQGdtYWlsLmNvbQBHTUF0b3MyNzEzdB</span>==
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">235</span> 2.7.0 Accepted
<span style="color: #000000; font-weight: bold;">&gt;</span> MAIL FROM:<span style="color: #000000; font-weight: bold;">&lt;</span>myemailaddress<span style="color: #000000; font-weight: bold;">@</span>gmail.com<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> 2.1.0 OK q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">&gt;</span> RCPT TO:<span style="color: #000000; font-weight: bold;">&lt;</span>myemailaddress<span style="color: #000000; font-weight: bold;">@</span>gmail.com<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> 2.1.5 OK q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">&gt;</span> RCPT TO:<span style="color: #000000; font-weight: bold;">&lt;</span>myemailaddress<span style="color: #000000; font-weight: bold;">@</span>gmail.com<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> 2.1.5 OK, duplicate recipients will be consolidated. q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">&gt;</span> DATA
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">354</span>  Go ahead q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">250</span> 2.0.0 OK <span style="color: #000000;">1329280154</span> q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">*</span> Connection <span style="color: #666666; font-style: italic;">#0 to host smtp.gmail.com left intact</span>
<span style="color: #000000; font-weight: bold;">&gt;</span> QUIT
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">221</span> 2.0.0 closing connection q10sm8033678pbb.10
<span style="color: #000000; font-weight: bold;">*</span> Closing connection <span style="color: #666666; font-style: italic;">#0</span></pre></div></div>

<p>I checked my e-mail, and there it was! If you wish to modify the contents of the e-mail, simply modify the payload. </p>
<p>Let me know if you encountered any problems. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/9d7IhjUg-N3BhTLQaOgw6N4w-1M/0/da"><img src="http://feedads.g.doubleclick.net/~a/9d7IhjUg-N3BhTLQaOgw6N4w-1M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9d7IhjUg-N3BhTLQaOgw6N4w-1M/1/da"><img src="http://feedads.g.doubleclick.net/~a/9d7IhjUg-N3BhTLQaOgw6N4w-1M/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=JsR6RE3_Emw:NcKYKbM1VcE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=JsR6RE3_Emw:NcKYKbM1VcE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=JsR6RE3_Emw:NcKYKbM1VcE:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=JsR6RE3_Emw:NcKYKbM1VcE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=JsR6RE3_Emw:NcKYKbM1VcE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/JsR6RE3_Emw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/c/how-to-send-email-through-gmail-using-libcurl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/programming/c/how-to-send-email-through-gmail-using-libcurl/</feedburner:origLink></item>
		<item>
		<title>10 Articles Read Throughout the Web [2/5/12]</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/xloKZqA9w0w/</link>
		<comments>http://talkbinary.com/blog/10-articles-read-throughout-the-web-2512/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:00:14 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4255</guid>
		<description><![CDATA[I&#8217;ve always meant to share with you all the interesting things I read around the internet and here it is (even pictures I&#8217;ve taken before!). They mostly come from browsing Hacker New&#8216;s RSS feed. Featured Articles A brief guide to Tech Internships for CS students &#8211; Awesome advice for those seeking tech internships. My advice?<a class="moretag" href="http://talkbinary.com/blog/10-articles-read-throughout-the-web-2512/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><center><div id="attachment_4269" class="wp-caption aligncenter" style="width: 610px"><img src="http://talkbinary.com/wp-content/uploads/2012/02/263761_908167298354_6316251_41454616_2108204_n-1.jpg" alt="" title="263761_908167298354_6316251_41454616_2108204_n (1)" width="600" height="338" class="size-full wp-image-4269" /><p class="wp-caption-text">Hiking near Seattle</p></div></center></p>
<p>I&#8217;ve always meant to share with you all the interesting things I read around the internet and here it is (even pictures I&#8217;ve taken before!). They mostly come from browsing <a href="http://news.ycombinator.com/">Hacker New</a>&#8216;s RSS feed. </p>
<h2 id="section-1">Featured Articles</h2>
<p><a href="http://alexeymk.com/a-brief-guide-to-tech-internships">A brief guide to Tech Internships for CS students</a> &#8211; Awesome advice for those seeking tech internships. My advice? Start as early as you know you are interested in the tech industry as positions are available for people of all levels of skill. Don&#8217;t be afraid of failing interviews as every experience makes you stronger. Also, prepare early! </p>
<p><a href="http://technicalblogging.com/why-every-professional-should-consider-blogging/">Why Every Professional Should Consider Blogging</a> &#8211; For those wanting a little bit of encouragement (it helped me) to share their findings with your fellow peers of the interwebs, this is a good read. Talk Binary generates enough income to support itself and keep my hobby going. </p>
<p><a href="http://www.nytimes.com/aponline/2012/02/04/technology/AP-US-TEC-Facebook-The-Hacker-Way.html?_r=1&#038;hp">For Facebook &#8216;Hacker Way&#8217; is Way of Life</a> &#8211; For those working on projects, learn to <em>hack</em>. Build products quickly and always have a working demo every step of the way no matter what. It&#8217;ll help you test and ask other people for input. </p>
<h2 id="section-2">Other Noteworthy Mentions</h2>
<p><a href="http://www.zdnet.com/blog/bott/microsoft-apple-and-google-where-does-the-money-come-from/4469?tag=mantle_skin;content">Microsoft, Apple, and Google: where does the money come from?</a> &#8211; Are you surprised? </p>
<p><a href="http://techcrunch.com/2012/02/04/mark-zuckerbergs-6-ingredients-for-success/">Mark Zuckerberg’s 6 Ingredients For Success</a> &#8211; My take? Don&#8217;t wait and take action. Follow your passion. </p>
<p><a href="http://pandodaily.com/2012/01/24/larry-page-to-googlers-if-you-dont-get-spyw-work-somewhere-else/">Larry Page to Googlers: If You Don’t Get SPYW, Work Somewhere Else</a> &#8211; Don&#8217;t like the unified experience Google is bringing? Well, you aren&#8217;t alone.  </p>
<p><a href="http://toucharcade.com/2012/01/24/zynga-shamelessly-rips-off-tiny-tower-with-canadian-release-of-dream-heights/">Zynga Shamelessly Rips Off &#8216;Tiny Tower&#8217; With Canadian Release of &#8216;Dream Heights&#8217;</a> &#8211; Using ideas from one game to create another is nothing new in the gaming industry, but blatantly making an exact copy is a little shocking.</p>
<p><a href="http://www.bbc.co.uk/news/magazine-16505791">Why crimes on Skype leave witnesses but no evidence</a> &#8211; How would you allow for Skype to gather evidence? It would be too much data and too much of a legal fuss for Skype to handle. What about on the client side? You&#8217;d have similar problems. </p>
<p><a href="http://progressivetransit.wordpress.com/2012/01/25/cars-kill-cities/">Cars kill cities</a> &#8211; It&#8217;s interesting to see how people rely so much on transportation. I&#8217;m shocked at how much space a city dedicates to parking as well. If only LA could have a better transportation system&#8230;the 405 wouldn&#8217;t be hell. </p>
<p><a href="Bill Gates on his last visit with Steve Jobs">Bill Gates on his last visit with Steve Jobs</a> &#8211; Are we ever going to have another duo of tech titans battling against each other across many years? </p>
<p>Find anything interesting? I&#8217;d love to know what you think!</p>
<p><em>* This is not intended to portray all the interesting articles that I read on HN that I feel are most important. They are just a small collection of articles I thought I should share with everyone. If I missed something, please let us know below!</em></p>

<p><a href="http://feedads.g.doubleclick.net/~a/U6HDWr5ja5caGC6hwO4USoXj3OU/0/da"><img src="http://feedads.g.doubleclick.net/~a/U6HDWr5ja5caGC6hwO4USoXj3OU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/U6HDWr5ja5caGC6hwO4USoXj3OU/1/da"><img src="http://feedads.g.doubleclick.net/~a/U6HDWr5ja5caGC6hwO4USoXj3OU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=xloKZqA9w0w:Fu-VtIdsGzc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=xloKZqA9w0w:Fu-VtIdsGzc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=xloKZqA9w0w:Fu-VtIdsGzc:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=xloKZqA9w0w:Fu-VtIdsGzc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=xloKZqA9w0w:Fu-VtIdsGzc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/xloKZqA9w0w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/blog/10-articles-read-throughout-the-web-2512/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/blog/10-articles-read-throughout-the-web-2512/</feedburner:origLink></item>
		<item>
		<title>How to Fix Strange Lines in Cocos2D by using Extrude in Zwoptex</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/tgpntR-4QZk/</link>
		<comments>http://talkbinary.com/cocos2d-2/how-to-fix-strange-lines-in-cocos2d-by-using-extrude-in-zwoptex/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 19:45:57 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Cocos2D]]></category>
		<category><![CDATA[cocos2d]]></category>
		<category><![CDATA[extrude]]></category>
		<category><![CDATA[strangle lines]]></category>
		<category><![CDATA[texture packer]]></category>
		<category><![CDATA[zwoptex]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4233</guid>
		<description><![CDATA[Ever since I started using Zwoptex, a sprite sheet packing tool, I started noticing these strange lines between my sprites in Cocos2D during gameplay. I had no idea why they would appear if the sprites had no immediate cut off on the boundaries. I found an awesome tip in the following post, Strange lines appears<a class="moretag" href="http://talkbinary.com/cocos2d-2/how-to-fix-strange-lines-in-cocos2d-by-using-extrude-in-zwoptex/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2012/02/brokenPhoto.png" alt="" title="stranglelines" width="314" height="158" class="alignleft size-full wp-image-4234" />Ever since I started using <a href="http://zwoptexapp.com/">Zwoptex</a>, a sprite sheet packing tool, I started noticing these strange lines between my sprites in Cocos2D during gameplay. I had no idea why they would appear if the sprites had no immediate cut off on the boundaries. </p>
<p>I found an awesome tip in the following post, <a href="http://www.cocos2d-iphone.org/forum/topic/10853" title="Strange lines appears during sprite movement">Strange lines appears during sprite movement</a>, in the Cocos2D forums. Depending if the problem occurs due to the background or foreground, you either have to extrude or add padding to your sprites. </p>
<p>When you extrude, you simply repeat the same pixels around the tiles without adding them directly to the sprite. Extruding actually helped me fix my problem. Padding seems to just separate the sprites from each other. If you notice sprites leaking nearby sprites on the sprite sheet, padding should solve this problem.   </p>
<p>After learning about this, I fired up Zwoptex, selected all my sprites, and added about 1px to the <i>Extrude</i> option. </p>
<p><img src="http://talkbinary.com/wp-content/uploads/2012/02/extrudeInZwoptex.png" alt="" title="extrudeInZwoptex" width="241" height="162" class="aligncenter size-full wp-image-4235" /></p>
<p>After that, I started my game and was able to see that strange line effect gone! </p>
<p><img src="http://talkbinary.com/wp-content/uploads/2012/02/fixedPhoto.png" alt="" title="fixedPhoto" width="247" height="200" class="aligncenter size-full wp-image-4236" /></p>
<p>If you use <a href="http://www.texturepacker.com/">Texture Packer</a> you have the same option. </p>
<p>Resource &#8211; <a href="http://www.cocos2d-iphone.org/forum/topic/10853" title="Strange lines appears during sprite movement">Strange lines appears during sprite movement</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/S4Fu7uum0jH5dXCUuETEgPNGvkU/0/da"><img src="http://feedads.g.doubleclick.net/~a/S4Fu7uum0jH5dXCUuETEgPNGvkU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/S4Fu7uum0jH5dXCUuETEgPNGvkU/1/da"><img src="http://feedads.g.doubleclick.net/~a/S4Fu7uum0jH5dXCUuETEgPNGvkU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=tgpntR-4QZk:vUf8ZmfssmM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=tgpntR-4QZk:vUf8ZmfssmM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=tgpntR-4QZk:vUf8ZmfssmM:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=tgpntR-4QZk:vUf8ZmfssmM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=tgpntR-4QZk:vUf8ZmfssmM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/tgpntR-4QZk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/cocos2d-2/how-to-fix-strange-lines-in-cocos2d-by-using-extrude-in-zwoptex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/cocos2d-2/how-to-fix-strange-lines-in-cocos2d-by-using-extrude-in-zwoptex/</feedburner:origLink></item>
		<item>
		<title>The beginning of my Game Development journey with Cocos2D for iOS</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/SwBGWH4pF5Q/</link>
		<comments>http://talkbinary.com/cocos2d-2/the-beginning-of-my-game-development-journey-with-cocos2d-for-ios/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:20:14 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Cocos2D]]></category>
		<category><![CDATA[cocos2d]]></category>
		<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4184</guid>
		<description><![CDATA[I&#8217;m going to start sharing my game development journey using Cocos2D with you. For those that don&#8217;t know, Cocos2D is a fast, free, easy to use, and community driven framework for building 2D games for iOS. Cocos2D has over 3000 games in the Cocos2D Game Library and some have made it to the Top 25<a class="moretag" href="http://talkbinary.com/cocos2d-2/the-beginning-of-my-game-development-journey-with-cocos2d-for-ios/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to start sharing my game development journey using <a href="http://www.cocos2d-iphone.org/">Cocos2D</a> with you. For those that don&#8217;t know, Cocos2D is a fast, free, easy to use, and community driven framework for building 2D games for iOS. Cocos2D has over 3000 games in the <a href="http://www.cocos2d-iphone.org/games/">Cocos2D Game Library</a> and some have made it to the Top 25 in the App Store such as <a href="http://itunes.apple.com/us/app/air-penguin/id425609130?mt=8">Air Penguin</a>. I really didn&#8217;t want to start with an empty project in XCode (I tried and was miserable due to the time spent on just making the engine for the game), and didn&#8217;t have the money to shell out for a <a href="http://unity3d.com/">Unity 3D</a> license. I checked out other alternatives and ended up falling in love with Cocos2D.</p>
<p>I started by simply grabbing a book. The following are some good ones: <a href="http://www.amazon.com/gp/product/B006MGDIAA/ref=as_li_ss_tl?ie=UTF8&#038;tag=talbin-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B006MGDIAA">Cocos2d for iPhone 1 Game Development Cookbook</a><img src="http://www.assoc-amazon.com/e/ir?t=talbin-20&#038;l=as2&#038;o=1&#038;a=B006MGDIAA" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
  (Official), <a href="http://www.amazon.com/gp/product/B005BOMFIU/ref=as_li_ss_tl?ie=UTF8&#038;tag=talbin-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005BOMFIU">Learning Cocos2D: A Hands-On Guide to Building iOS Games with Cocos2D, Box2D, and Chipmunk</a><img src="http://www.assoc-amazon.com/e/ir?t=talbin-20&#038;l=as2&#038;o=1&#038;a=B005BOMFIU" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, and <a href="http://www.amazon.com/gp/product/B006CO7ZQ0/ref=as_li_ss_tl?ie=UTF8&#038;tag=talbin-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B006CO7ZQ0">Learn cocos2d Game Development with iOS 5</a><img src="http://www.assoc-amazon.com/e/ir?t=talbin-20&#038;l=as2&#038;o=1&#038;a=B006CO7ZQ0" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (one I started with). If you don&#8217;t mind spending money on a good resource, try it out and you could have your first game within reading the first few chapters (1-3hours!). You could even start with <a href="http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:index">Cocos2D Programming Guide</a> if you aren&#8217;t convinced and don&#8217;t want to spend money yet. </p>
<p>The thing is, the books only cover so much and really don&#8217;t go in depth with other things that might arise in your game development journey. A lot of unprecedented things occurred in mine such as how to find the right team, idea for a game, community to give opinions about my project, how to set up deadlines and complete them, amongst other topics. </p>
<p>That is why I decided to share with you all the things I&#8217;ve learned along the way in making my game such as all the things I&#8217;ve hated, loved, and even code samples for how I got things done within a game such as level creation/editing, collision detection, how to make a hero, etc. If there is anything in particular you want me to cover, please let me know and I&#8217;ll do my best to either answer in the comments or even make a post about it. </p>
<p>If you are interested in following my current marketing efforts become a fan of <a href="http://facebook.com/feedthedragons">Feed the Dragons</a> on Facebook. It was barely set up a few days ago so be patient for now. If you want to know the gist of my game, it&#8217;s simply Multiplayer Snake for iPad (up to 4 players). If you ever played <a href="http://live.gnome.org/Nibbles">Nibbles</a>, then you have an idea of where I got my inspiration. I&#8217;m basing the gameplay off that game by having a couple of friends either cooperatively or competitively playing a game on one device. It may sound difficult, but trust me, it&#8217;s  a blast and we hope you believe the same when we decide to publish our game in the next few months. </p>
<p>Our next post will probably be something like &#8220;So can I start making video games, and how?&#8221;. I&#8217;ll be covering how much you really need to know, the things you should consider, and how to start! </p>

<p><a href="http://feedads.g.doubleclick.net/~a/0MEVdmtnldRHcOJzHThgfd13IP4/0/da"><img src="http://feedads.g.doubleclick.net/~a/0MEVdmtnldRHcOJzHThgfd13IP4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0MEVdmtnldRHcOJzHThgfd13IP4/1/da"><img src="http://feedads.g.doubleclick.net/~a/0MEVdmtnldRHcOJzHThgfd13IP4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=SwBGWH4pF5Q:wX0iMG2mgQU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=SwBGWH4pF5Q:wX0iMG2mgQU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=SwBGWH4pF5Q:wX0iMG2mgQU:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=SwBGWH4pF5Q:wX0iMG2mgQU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=SwBGWH4pF5Q:wX0iMG2mgQU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/SwBGWH4pF5Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/cocos2d-2/the-beginning-of-my-game-development-journey-with-cocos2d-for-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/cocos2d-2/the-beginning-of-my-game-development-journey-with-cocos2d-for-ios/</feedburner:origLink></item>
		<item>
		<title>Facebook’s 2012 Hacker Cup</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/Gm00-ln_6n0/</link>
		<comments>http://talkbinary.com/articles/facebooks-2012-hacker-cup/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 04:39:27 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[hackathon]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4169</guid>
		<description><![CDATA[Facebook announced today their annual Facebook Hackathon where programmers from around the world pit their skills against each other to claim a $5,000 and title of the World Champion to the Top Hacker as their prize. Are you up to it? The Facebook Hackathon consists of three online rounds with their finals taking care at<a class="moretag" href="http://talkbinary.com/articles/facebooks-2012-hacker-cup/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2012/01/facebookhackercup.jpg" alt="" title="facebookhackercup" width="180" height="144" class="alignleft size-full wp-image-4170" />Facebook announced today their annual Facebook Hackathon where programmers from around the world pit their skills against each other to claim a $5,000 and title of the World Champion to the Top Hacker as their prize. Are you up to it? </p>
<p>The Facebook Hackathon consists of three online rounds with their finals taking care at Facebook&#8217;s headquarters in California. Each online round will be on three separate dates of January 28th, February 4th, and February 11th with only a certain number of contestants allowed to move forward if successful with the challenge.  </p>
<p>Last year&#8217;s questions are located <a href="https://www.facebook.com/notes/facebook-hacker-cup/facebook-hacker-cup-finals/208549245827651">here</a>. From the gist of it, it seems you should be familiar with dynamic programming and graph theory. So if you don&#8217;t have the slightest clue what they are, time to start studying before the date if you choose to enter!</p>
<p>Are you willing to try it out? Aside from having that great prize, its most likely you&#8217;d possibly land a job at Facebook. Facebook has been competing with other tech companies for the best talent around and a hackathon seems to attract the type of people they are looking for. </p>
<p>Heck, it&#8217;s 2012. If you haven&#8217;t been in a Hackathon now&#8217;s the best time to try it out! </p>
<p><a href="https://www.facebook.com/notes/facebook-engineering/announcing-facebooks-2012-hacker-cup/10150468260528920">Announcing Facebook&#8217;s 2012 Hacker Cup</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/b-ER1qucwRGGvytwAdQgUxrVUBM/0/da"><img src="http://feedads.g.doubleclick.net/~a/b-ER1qucwRGGvytwAdQgUxrVUBM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/b-ER1qucwRGGvytwAdQgUxrVUBM/1/da"><img src="http://feedads.g.doubleclick.net/~a/b-ER1qucwRGGvytwAdQgUxrVUBM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=Gm00-ln_6n0:zT5d4KDbqYE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=Gm00-ln_6n0:zT5d4KDbqYE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=Gm00-ln_6n0:zT5d4KDbqYE:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=Gm00-ln_6n0:zT5d4KDbqYE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=Gm00-ln_6n0:zT5d4KDbqYE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/Gm00-ln_6n0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/articles/facebooks-2012-hacker-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/articles/facebooks-2012-hacker-cup/</feedburner:origLink></item>
		<item>
		<title>Merry Christmas from Talk Binary With a New Blog Layout!</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/z0uDTBtSthQ/</link>
		<comments>http://talkbinary.com/blog/merry-christmas-from-talk-binary-with-a-new-blog-layout/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 08:00:06 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4135</guid>
		<description><![CDATA[I hope everyone has a Merry Christmas and a Happy New Year!! I was meaning to switch to an even cleaner layout for Talk Binary and recently (just today!) came across to doing so. I haven&#8217;t completed added all the functionality I wanted to yet to the site, so sit tight! For example, I need<a class="moretag" href="http://talkbinary.com/blog/merry-christmas-from-talk-binary-with-a-new-blog-layout/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>I hope everyone has a Merry Christmas and a Happy New Year!!</p>
<p>I was meaning to switch to an even cleaner layout for Talk Binary and recently (just today!) came across to doing so. </p>
<p>I haven&#8217;t completed added all the functionality I wanted to yet to the site, so sit tight! For example, I need to fix up the navigation and determine what should go on the sidebar. Do you have any suggestions? Anything you might find helpful? Our previous layout had the featured posts dead center and I&#8217;m thinking of placing simply links in the navigation this time around. </p>
<p>I also am reducing the amount of advertisements. I figured a cleaner layout with less distraction should make the user more welcome. I would get rid of advertisements all together, but they have been paying the server bills at GoDaddy, which hasn&#8217;t made me happy since they back up <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">SOPA</a>. </p>
<p>I know I wasn&#8217;t that great at updating the site much this later part of the year. To be honest, I was wrapping up my Masters at UCLA. Since I finished with courses this past Fall, I just have to finish my Masters project which should allow me to also focus on other things before I officially graduate this Winter quarter.</p>
<p>I plan on sharing more of my iOS project I&#8217;ve been coding using <a href="http://www.cocos2d-iphone.org/">Cocos2d</a> and several other awesome tools. If you want to be updated with how far along I&#8217;m doing with my game, subscribe!</p>
<p>Also, I watched Mission Impossible Ghost Protocol and I recommend everyone to go see it! It&#8217;s fun! </p>
<p>Happy Holidays!! </p>

<p><a href="http://feedads.g.doubleclick.net/~a/kZU3lPBs93TyTSUQU3bR5gf599A/0/da"><img src="http://feedads.g.doubleclick.net/~a/kZU3lPBs93TyTSUQU3bR5gf599A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/kZU3lPBs93TyTSUQU3bR5gf599A/1/da"><img src="http://feedads.g.doubleclick.net/~a/kZU3lPBs93TyTSUQU3bR5gf599A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=z0uDTBtSthQ:3PJoy2VMk7I:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=z0uDTBtSthQ:3PJoy2VMk7I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=z0uDTBtSthQ:3PJoy2VMk7I:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=z0uDTBtSthQ:3PJoy2VMk7I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=z0uDTBtSthQ:3PJoy2VMk7I:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/z0uDTBtSthQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/blog/merry-christmas-from-talk-binary-with-a-new-blog-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/blog/merry-christmas-from-talk-binary-with-a-new-blog-layout/</feedburner:origLink></item>
		<item>
		<title>Interview Street – Solve Challenging Programming Questions and Land Your Dream Job</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/9mRewNbCe8M/</link>
		<comments>http://talkbinary.com/articles/interview-street-solve-challenging-programming-questions-and-land-your-dream-job/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 17:40:33 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4073</guid>
		<description><![CDATA[Interview Street provides Challenges for Hackers for those that wish to land in their dream jobs such as Dropbox, Justin.tv, Disqus, Facebook, and other similar companies. You simply sign in with either Facebook or Google and are the presented with a list of challenges with point values corresponding to their difficulty. Each challenge comes with<a class="moretag" href="http://talkbinary.com/articles/interview-street-solve-challenging-programming-questions-and-land-your-dream-job/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2011/12/interviewstreetlogo.png" alt="" title="" width="119" height="50" class="alignleft size-full wp-image-4083" /><a href="http://www.interviewstreet.com/recruit/challenges/">Interview Street</a> provides <i>Challenges for Hackers</i> for those that wish to land in their dream jobs such as Dropbox, Justin.tv, Disqus, Facebook, and other similar companies. </p>
<p>You simply sign in with either Facebook or Google and are the presented with a list of challenges with point values corresponding to their difficulty. Each challenge comes with a description, sample input/output, and instructions for submission. You are scored based on the number of test cases your program passes and aren&#8217;t penalized for the number of submissions. </p>
<p>You also have access to their leader board which shows the current top Hacker at solving 18 questions with 52 submissions.<br />
<span id="more-4073"></span><br />
Once you have finished at least <strong>five</strong> problems you are eligible to apply the company of your dreams. If you are looking for a job soon, then this is an excellent way to prepare yourself for tough interviews as well as getting noticed by companies through Interview Street. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/iwMbxfb61FLFCfyN2JDniFTgek0/0/da"><img src="http://feedads.g.doubleclick.net/~a/iwMbxfb61FLFCfyN2JDniFTgek0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/iwMbxfb61FLFCfyN2JDniFTgek0/1/da"><img src="http://feedads.g.doubleclick.net/~a/iwMbxfb61FLFCfyN2JDniFTgek0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=9mRewNbCe8M:xoY1NqJhKkw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=9mRewNbCe8M:xoY1NqJhKkw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=9mRewNbCe8M:xoY1NqJhKkw:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=9mRewNbCe8M:xoY1NqJhKkw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=9mRewNbCe8M:xoY1NqJhKkw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/9mRewNbCe8M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/articles/interview-street-solve-challenging-programming-questions-and-land-your-dream-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/articles/interview-street-solve-challenging-programming-questions-and-land-your-dream-job/</feedburner:origLink></item>
		<item>
		<title>Don’t Call Yourself A Programmer</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/MCLc_Yni9e0/</link>
		<comments>http://talkbinary.com/articles/dont-call-yourself-a-programmer/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 06:04:17 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[career advice]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4041</guid>
		<description><![CDATA[Curriculums for Computer Science usually include your typical Algorithms, Operating Systems, Security, Networks, Databases, Computer Organization, and among other classes but it&#8217;s truly lacking one critical course in my opinion, Careers 101. This course would include most of the things that aren&#8217;t taught in regular courses such how to stand our from the crowd when<a class="moretag" href="http://talkbinary.com/articles/dont-call-yourself-a-programmer/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><center><div id="attachment_4043" class="wp-caption alignnone" style="width: 510px"><img src="http://talkbinary.com/wp-content/uploads/2011/10/tothetop.jpg" alt="" title="Office Politics: A Rise to the Top" width="500" height="333" class="size-full wp-image-4043" /><p class="wp-caption-text"><a href='http://www.flickr.com/photos/proimos/4045973322/in/photostream/'>Photo by Alex E. Proimos</a></p></div></center></p>
<p>Curriculums for Computer Science usually include your typical Algorithms, Operating Systems, Security, Networks, Databases, Computer Organization, and among other classes but it&#8217;s truly lacking one critical course in my opinion, Careers 101. </p>
<p>This course would include most of the things that aren&#8217;t taught in regular courses such how to stand our from the crowd when applying for jobs, how to build a network, how to make yourself valuable as an engineer, and such. If I would&#8217;ve had been taught all these things before I started my career, I would&#8217;ve been a lot more prepared.<br />
<span id="more-4041"></span><br />
Recently an article called <a href="http://www.kalzumeus.com/2011/10/28/dont-call-yourself-a-programmer/">Don&#8217;t call yourself a programmer, and other career advice</a> discusses lots of interesting points: </p>
<blockquote><p>Don’t call yourself a programmer: “Programmer” sounds like “anomalously high-cost peon who types some mumbo-jumbo into some other mumbo-jumbo.”  If you call yourself a programmer, someone is already working on a way to get you fired.  You know Salesforce, widely perceived among engineers to be a Software as a Services company?  Their motto and sales point is “No Software”, which conveys to their actual customers “You know those programmers you have working on your internal systems?  If you used Salesforce, you could fire half of them and pocket part of the difference in your bonus.”  (There’s nothing wrong with this, by the way.  You’re in the business of unemploying people.  If you think that is unfair, go back to school and study something that doesn’t matter.)</p></blockquote>
<p>It&#8217;s quite long, but trust me, it&#8217;s worth the read if you plan on becoming a successful engineer. </p>
<p><a href="http://www.kalzumeus.com/2011/10/28/dont-call-yourself-a-programmer/">Don&#8217;t call yourself a programmer, and other career advice</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Usx4kJZSc7S-5OeZOphKICZfrI0/0/da"><img src="http://feedads.g.doubleclick.net/~a/Usx4kJZSc7S-5OeZOphKICZfrI0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Usx4kJZSc7S-5OeZOphKICZfrI0/1/da"><img src="http://feedads.g.doubleclick.net/~a/Usx4kJZSc7S-5OeZOphKICZfrI0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=MCLc_Yni9e0:fYbLbxUEcps:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=MCLc_Yni9e0:fYbLbxUEcps:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=MCLc_Yni9e0:fYbLbxUEcps:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=MCLc_Yni9e0:fYbLbxUEcps:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=MCLc_Yni9e0:fYbLbxUEcps:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/MCLc_Yni9e0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/articles/dont-call-yourself-a-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/articles/dont-call-yourself-a-programmer/</feedburner:origLink></item>
		<item>
		<title>Hacked, Recovered, and Now Back in Action [with Updates]!</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/4eLGB40l_iA/</link>
		<comments>http://talkbinary.com/blog/hacked-recovered-and-now-back-in-action-with-updates/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 06:52:31 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=4024</guid>
		<description><![CDATA[Recently Talk Binary was hacked! I visited this site a few weeks ago, and was surprised to see that Google was telling me that my site was spreading malicious malware! I immediately checked my WordPress and didn&#8217;t see that I needed any critical updates for WordPress. So I checked my theme&#8217;s files and to my<a class="moretag" href="http://talkbinary.com/blog/hacked-recovered-and-now-back-in-action-with-updates/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Recently Talk Binary was hacked! I visited this site a few weeks ago, and was surprised to see that Google was telling me that my site was spreading malicious malware! I immediately checked my WordPress and didn&#8217;t see that I needed any critical updates for WordPress. So I checked my theme&#8217;s files and to my surprise saw mysterious 1292837487adiahsfiuh12387a.php files with some malicious code. I immediately deleted them. I then started to remove all old and outdated plugins that I no longer used. I even removed all old themes that I didn&#8217;t use anymore just in case they had vulnerabilities since all this code was still alive on my server. I saved old backups just in case, and have been considering doing a clean reboot. </p>
<p>Organically, Google and other services removed my site from their blacklist, so everything is good now! How did it happen? I have no idea. This just showed me that this can happen to anyone (since it happened to me)! </p>
<p><span id="more-4024"></span></p>
<p>Since a few friends of mine and I have been interviewing in the past, I&#8217;ve also decided to start including a few interview type questions followed with optimal solutions. That way, it would be an awesome way to stay sharp for when the time comes. If you have any questions you&#8217;d like to share, feel free to share it through our Contact page. </p>
<p>I&#8217;ll post one soon so stay tuned. I&#8217;m also very active on Twitter so feel free to follow me. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/EVN1INkgS0xbXCqWEveiMaiJ20s/0/da"><img src="http://feedads.g.doubleclick.net/~a/EVN1INkgS0xbXCqWEveiMaiJ20s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EVN1INkgS0xbXCqWEveiMaiJ20s/1/da"><img src="http://feedads.g.doubleclick.net/~a/EVN1INkgS0xbXCqWEveiMaiJ20s/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=4eLGB40l_iA:V3-OVXnTp3Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=4eLGB40l_iA:V3-OVXnTp3Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=4eLGB40l_iA:V3-OVXnTp3Q:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=4eLGB40l_iA:V3-OVXnTp3Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=4eLGB40l_iA:V3-OVXnTp3Q:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/4eLGB40l_iA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/blog/hacked-recovered-and-now-back-in-action-with-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/blog/hacked-recovered-and-now-back-in-action-with-updates/</feedburner:origLink></item>
		<item>
		<title>Ted Talks: After your final status update</title>
		<link>http://feedproxy.google.com/~r/TalkBinary/~3/NOcDbcDweaQ/</link>
		<comments>http://talkbinary.com/articles/ted-talks-after-your-final-status-update/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 14:00:17 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[final status update]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=3997</guid>
		<description><![CDATA[Many of us have a strong online presence on sites such as Facebook, Twitter, and Google+ to name a few. About 1 billion us and what do we all have in common? We are all going to die. Have you ever wondered what would happen after your final status update? Unfortunately, I&#8217;ve seen it happen<a class="moretag" href="http://talkbinary.com/articles/ted-talks-after-your-final-status-update/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Many of us have a strong online presence on sites such as Facebook, Twitter, and Google+ to name a few. About 1 billion us and what do we all have in common? We are all going to die. Have you ever wondered what would happen after your final status update? Unfortunately, I&#8217;ve seen it happen as friends have passed away and sometimes hours after a status update on Facebook. It&#8217;s so unreal because their life stopped ticking yet you could still read their thoughts, view their saved memories as photographs, and see others say goodbye. </p>
<p>What happens to their online presence after that? Facebook allows you to <a href="http://www.facebook.com/help/contact.php?show_form=deceased">Report a Deceased Person&#8217;s Profile</a> which only allows friends to view the deceased one&#8217;s profile and keep viewing and posting on their wall. I&#8217;m not aware of what other sites do, but if you do, let us know in the comments.<br />
<span id="more-3997"></span><br />
The following video from <a href="http://www.ted.com/talks">Ted Talks</a> discusses this topic in more detail.</p>
<p><center><object width="526" height="374"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talk/stream/2011G/Blank/AdamOstrow_2011G-320k.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/AdamOstrow_2011G-embed.jpg&#038;vw=512&#038;vh=288&#038;ap=0&#038;ti=1201&#038;lang=&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=adam_ostrow_after_your_final_status_update;year=2011;theme=might_you_live_a_great_deal_longer;theme=technology_history_and_destiny;theme=what_s_next_in_tech;theme=a_taste_of_tedglobal_2011;theme=new_on_ted_com;event=TEDGlobal+2011;tag=Culture;tag=Technology;tag=consciousness;tag=social+change;tag=social+media;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="526" height="374" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talk/stream/2011G/Blank/AdamOstrow_2011G-320k.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/AdamOstrow_2011G-embed.jpg&#038;vw=512&#038;vh=288&#038;ap=0&#038;ti=1201&#038;lang=&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=adam_ostrow_after_your_final_status_update;year=2011;theme=might_you_live_a_great_deal_longer;theme=technology_history_and_destiny;theme=what_s_next_in_tech;theme=a_taste_of_tedglobal_2011;theme=new_on_ted_com;event=TEDGlobal+2011;tag=Culture;tag=Technology;tag=consciousness;tag=social+change;tag=social+media;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"></embed></object></center></p>
<p>Source &#8211; <a href="http://mashable.com/2011/08/01/adam-ostrow-ted-talk">After your final status update</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/DnXrx0kroTv7ssqXOTzK7fnaYcs/0/da"><img src="http://feedads.g.doubleclick.net/~a/DnXrx0kroTv7ssqXOTzK7fnaYcs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DnXrx0kroTv7ssqXOTzK7fnaYcs/1/da"><img src="http://feedads.g.doubleclick.net/~a/DnXrx0kroTv7ssqXOTzK7fnaYcs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=NOcDbcDweaQ:okQUBOGYGfk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=NOcDbcDweaQ:okQUBOGYGfk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TalkBinary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:oWQPE8tW4C4"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=NOcDbcDweaQ:okQUBOGYGfk:oWQPE8tW4C4" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TalkBinary?a=NOcDbcDweaQ:okQUBOGYGfk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/TalkBinary?i=NOcDbcDweaQ:okQUBOGYGfk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TalkBinary/~4/NOcDbcDweaQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/articles/ted-talks-after-your-final-status-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://talkbinary.com/articles/ted-talks-after-your-final-status-update/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: talkbinary.com @ 2012-03-13 21:46:36 -->

