<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Talk Binary &#187; Andy</title>
	<atom:link href="http://talkbinary.com/author/andy/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Sat, 04 Feb 2012 03:15:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>C++ Installation</title>
		<link>http://talkbinary.com/programming/c/c-installation/</link>
		<comments>http://talkbinary.com/programming/c/c-installation/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 17:30:43 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[C++ Compiler]]></category>
		<category><![CDATA[C++ IDE]]></category>
		<category><![CDATA[C++ Installation]]></category>
		<category><![CDATA[Programming in C++]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2557</guid>
		<description><![CDATA[What do you need? You have two options. You can write your code, compile, and run it using an Integrated Development Environment (IDE), or you can write your code in your favorite editor and compile it within a terminal. In order to receive the benefits of both options, try them both to see what you<a class="moretag" href="http://talkbinary.com/programming/c/c-installation/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<h3 id="section-1">What do you need?</h3>
<p>You have two options. You can write your code, compile, and run it using an <strong>Integrated Development Environment</strong> (IDE), or you can write your code in your favorite editor and compile it within a terminal. In order to receive the benefits of both options, try them both to see what you like using the most.</p>
<p>You might even want to try programming in a different operating system such as Ubuntu. To figure out how to do that make sure to check out <a href="http://talkbinary.com/linux/3-methods-for-installing-ubuntu-using-windows/">3 Methods for Installing Ubuntu using Windows</a>.</p>
<h3 id="section-2">Should I use an IDE or a plain &#8216;ol editor and compiler?</h3>
<p>Personally, using an IDE is the easiest option. An IDE is a software environment that provides tools and resources to make programming for you easier. An IDE usually contains a source code editor, compiler. and a debugger. It also may have many neat features like auto-complete, syntax highlighting, and can point you to the exact line where the syntax or compile time errors were found. The only downside is that downloading an IDE with a compiler can be a pretty large download (>~75mb).<br />
<span id="more-2557"></span><br />
<center><div id="attachment_2833" class="wp-caption aligncenter" style="width: 310px"><a href="http://talkbinary.com/wp-content/uploads/2010/07/ide.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/07/ide-300x237.jpg" alt="" title="ide" width="300" height="237" class="size-medium wp-image-2833" /></a><p class="wp-caption-text">Using Eclipse (IDE)</p></div></center></p>
<p>The other option is to write code in your favorite editor and compile it within a terminal (~10mb to download). This is the path many students in universities are taught in their introductory courses. I learned this way and sometimes prefer it over using an IDE. This method is sometimes more simpler since you don&#8217;t need to create an entire project in an IDE to simply write some code out. </p>
<p><center><div id="attachment_2832" class="wp-caption aligncenter" style="width: 310px"><a href="http://talkbinary.com/wp-content/uploads/2010/07/gvimandterminal.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/07/gvimandterminal-300x143.jpg" alt="" title="gvimandterminal" width="300" height="143" class="size-medium wp-image-2832" /></a><p class="wp-caption-text">Using gvim and the terminal</p></div> </center></p>
<h3 id="section-3">Getting started with C++ and an IDE</h3>
<p>You can get started writing C++ with an IDE on any platform such as Windows, Linux, and Mac. Below are a list of IDEs you may be interested in. They are ordered in my preference of usage. Make sure you download a version with a compiler. </p>
<p><a href="http://www.eclipse.org/downloads/">Eclipse</a> &#8211; Windows/Mac/Linux<br />
<a href="http://www.codeblocks.org/downloads/26">CodeBlocks</a> &#8211; Windows/Mac/Linux<br />
<a href="http://netbeans.org/">Netbeans</a> &#8211; Windows/Mac/Linux</p>
<p>Once you download the IDE, simply create the default C++ project. That should start you with the famous &#8220;Hello World&#8221; written for you. All you need to do is hit Build &#038; Run and you should see the output in the terminal window like the picture of the IDE above.</p>
<h3 id="section-4">Getting started with C++ with a compiler, terminal, and source editor</h3>
<p>1. The first step is to download your compiler. </p>
<p><strong>Mac</strong> &#8211; Correct me if I&#8217;m wrong, but you need to download <a href="http://developer.apple.com/technologies/xcode.html">Xcode</a>.<br />
<strong>Linux</strong> &#8211; Using the Synaptic Package Manager or the equivalent, download <em>build-essential</em>.</p>
<p>2. Open up your favorite text editor. For now gedit (Linux) or TextEdit(Mac) is fine. Now copy and paste the following code. Make sure you save it as main.cpp (cpp is the common extension of C++ files).</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;iostream&gt;</span>
<span style="color: #0000ff;">using</span> <span style="color: #0000ff;">namespace</span> std<span style="color: #008080;">;</span>
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span>
     <span style="color: #0000dd;">cout</span> <span style="color: #000080;">&lt;&lt;</span> <span style="color: #FF0000;">&quot;Hello World!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #008080;">;</span>
     <span style="color: #0000ff;">return</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span></pre></td></tr></table></div>

<p>3. Open up your terminal, and navigate to <strong>main.cpp</strong>&#8216;s location. To navigate within a terminal you can use the following commands.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #666666;">//Change Directory to specified folder</span>
cd foldername
&nbsp;
<span style="color: #666666;">//Go up one directory </span>
cd .. 
&nbsp;
<span style="color: #666666;">// List contents of directory</span>
ls</pre></div></div>

<p>4. To compile your program, simply type in the following.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">g<span style="color: #000040;">++</span> main.<span style="color: #007788;">cpp</span></pre></div></div>

<p>5. Now that your program is compiled, run it with the following.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">.<span style="color: #000040;">/</span>a.<span style="color: #007788;">out</span></pre></div></div>

<p><center><div id="attachment_2840" class="wp-caption aligncenter" style="width: 333px"><a href="http://talkbinary.com/wp-content/uploads/2010/07/terminalnavigation.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/07/terminalnavigation.jpg" alt="" title="terminalnavigation" width="323" height="318" class="size-full wp-image-2840" /></a><p class="wp-caption-text">Shows steps 4 - 6 </p></div></center></p>
<p>6. If done correctly, you should see a &#8220;Hello Word&#8221; outputted to the terminal!</p>
<h3 id="section-5">Overview of C++ Installation</h3>
<p>Did you have any problems with any of the steps? Let me know and I&#8217;ll address your issue. I am here to help. Once you learn once, you&#8217;ll be compiling and running your C++ programs left and right. </p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/c/c-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: AOL Radio</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-aol-radio/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-aol-radio/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 01:31:34 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AOL Radio]]></category>
		<category><![CDATA[aol radio on iphone]]></category>
		<category><![CDATA[cool apps for iphone]]></category>
		<category><![CDATA[free apps for iphone]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhone app reviews]]></category>
		<category><![CDATA[iPhone apps]]></category>
		<category><![CDATA[live radio]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1027</guid>
		<description><![CDATA[What could be better than having your local radio stations plus more right at the touch of your finger? Well&#8230; how about having them on your iPhone or iPod Touch? How sweet is that? Well let me show you&#8230; ( Click App ) I really dislike having to search for my favorite station, but no<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-aol-radio/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2008/09/aol1.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol1-300x197.png" alt="" title="aol1" width="300" height="197" class="alignnone size-medium wp-image-1028" align ="right" /></a>
<p><font size="7" face="Georgia, Arial" color="maroon">W</font>hat could be better than having your local radio stations plus more right at the touch of your finger?</p>
<p>Well&#8230; how about having them on your iPhone or iPod Touch?</p>
<p>How sweet is that? Well let me show you&#8230; ( Click App )</p>
<p><center><a href="http://talkbinary.com/2008/09/iphone-app-review-aol-radio/#more" ><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol7.png" alt="" title="Click Me to Read More" width="86" height="91" class="alignnone size-medium wp-image-1039" /></a><br />
<span id="more-1027"></span></center><br />
<a href="http://talkbinary.com/wp-content/uploads/2008/09/aol2.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol2-200x300.png" alt="" title="aol2" width="200" height="300" class="alignnone size-medium wp-image-1029" align="left" /></a><center><br />
<h3 class="title"> <- App Loaded</h3>
<p></center>
<p>Your iPhone App has loaded! From the start you can see that the AOL Radio App has a variety of features. Not only can you choose to listen to specific genres but you can also listen to your favorite local radio stations.<br />
( Mostly CBS related stations )<a href="http://talkbinary.com/wp-content/uploads/2008/09/aol3.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol3-200x300.png" alt="" title="aol3" width="200" height="300" class="alignnone size-medium wp-image-1030" align="right" /></a><center><br />
<h3 class="title">Favorites -></h3>
<p></center>I really dislike having to search for my favorite station, but no worries AOL Radio has a favorites tab which enables you to simply browse and weed out your most listened to stations.<br />
Go ahead select the station you want to listen to&#8230;<br/><a href="http://talkbinary.com/wp-content/uploads/2008/09/aol6.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol6-200x300.png" alt="" title="aol6" width="200" height="300" class="alignnone size-medium wp-image-1033" align="left" /></a><center><br />
<h3 class="title"> <- Listening</h3>
<p></center></p>
<p>Nice choice, KROQ!<br />
This is the AOL Radio Now Playing. Simplistic media player don&#8217;t you think. Well that&#8217;s really all you need. With this App you can start and stop playing the station you are listening to. No you can&#8217;t fast forward or rewind, your are listening to a live broadcast remember! Bored of this song, tap on the Recents Tab and check out what you listened to earlier today or a few days ago.</p>
<p><a href="http://talkbinary.com/wp-content/uploads/2008/09/aol4.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol4-200x300.png" alt="" title="aol4" width="200" height="300" class="alignnone size-medium wp-image-1031" align="right"/></a><center><br />
<h3 class="title">Recents -></h3>
<p></center>
<p>Nice, I can see you like different types of genres just by looking at your recent stations. This is really helpful because what if you stumble onto some station you never heard before and you enjoy it but forget to add it to your favorites.<br />
What was that station again? Just look in the recent&#8217;s tab. Let see what&#8217;s playing on the wave&#8230;</p>
<p><a href="http://talkbinary.com/wp-content/uploads/2008/09/aol8.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/aol8-200x300.png" alt="" title="aol8" width="200" height="300" class="alignnone size-medium wp-image-1077" align="left" /></a><center><br />
<h3 class="title"><- Like that Song</h3>
<p></center>
<p>Tap the magnifying glass under the song title and select the option you want. Find it on iTunes, Find on AOL Music, or Add it to your Favorites under songs. This application is very well rounded but what else is great about this app?<center><br />
<h3 id="section-1">Great and Not so Great</h3>
<p></center>This app works great with Wifi as well as EDGE. Thats right, full stream directly from an EDGE connection! The bad part is that if you listen while on EDGE say goodbye to your battery in around 2.5 to 3.5 hours. That&#8217;s right, beware of the EDGE for it will suck the life out of your device.<br />
<h3 id="section-2">How do I get this App?</h3>
<p> This App is available for free through the Apple App Store.<br />
( Requires you to have an iTunes Account )</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-aol-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: Brain Tuner</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-brain-tuner/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-brain-tuner/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 17:56:00 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[brain games]]></category>
		<category><![CDATA[brain games for iphone]]></category>
		<category><![CDATA[brain tuner]]></category>
		<category><![CDATA[cool apps for iphone]]></category>
		<category><![CDATA[free iphone apps]]></category>
		<category><![CDATA[iPhone app reviews]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=975</guid>
		<description><![CDATA[Do you like to keep your brain nice and fit? Brain Tuner is a great little app that I recently discovered in the Apple App Store that helps you do just that! With simple arithmetic problems this app will help you develop quick response time from your brain. Brain Tuner gives you the option of<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-brain-tuner/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Do you like to keep your brain nice and fit? Brain Tuner is a great little app that I recently discovered in the Apple App Store that helps you do just that! With simple arithmetic problems this app will help you develop quick response time from your brain.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner01.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner01-200x300.png" alt="" title="brain-tuner01" width="200" height="300" class="alignnone size-medium wp-image-979" /></a></center><br/>
<p>Brain Tuner gives you the option<span id="more-975"></span> of choosing between 20 or 100 simple math problems. The trick is to make sure the problem is correct or incorrect. The program records how long it takes you to get through the list of problems. This gives you an incentive to continue to try and lower your overall time.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner02.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner02-200x300.png" alt="" title="brain-tuner02" width="200" height="300" class="alignnone size-medium wp-image-979" /></a></center>
<p>Using this application is a no brainer. Simply hit Right if the problem has the correct answer and Wrong if the problem has a wrong answer.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner03.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner03-200x300.png" alt="" title="brain-tuner03" width="200" height="300" class="alignnone size-medium wp-image-979" /></a></center>
<p>If you have never tried out programs of this type you should definitely give this one a try because of its simplicity. Give it a try and see how fast you can solve the problems! Here is my the lowest time for 20 problems as of today:</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner04.png"><img src="http://talkbinary.com/wp-content/uploads/2008/09/brain-tuner04-200x300.png" alt="" title="brain-tuner04" width="200" height="300" class="alignnone size-medium wp-image-982" /></a></center><br />
<h3 id="section-1">Where do I get this App?</h3>
<p>This app is available through the Apple App Store for free.<br />
( Requires you to have an iTunes account )</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-brain-tuner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: BossPrefs</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-bossprefs/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-bossprefs/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 22:06:12 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BossPrefs]]></category>
		<category><![CDATA[cydia]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[iPhone app reviews]]></category>
		<category><![CDATA[iPhone apps]]></category>
		<category><![CDATA[iphone hacks]]></category>
		<category><![CDATA[make iphone faster]]></category>
		<category><![CDATA[top iphone apps]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=949</guid>
		<description><![CDATA[Do you get really annoyed with your iPhone when you have to switch the Bluetooth or WiFi On and Off? If so, this is app is just for you. This app, like most technology, will make your life just a little bit easier. Not only will you save some time but also keep your iPhone<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-bossprefs/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Do you get really annoyed with your iPhone when you have to switch the Bluetooth or WiFi On and Off? If so, this is app is just for you. This app, like most technology, will make your life just a little bit easier. Not only will you save some time but also keep your iPhone running as long as possible.* </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00015.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00015-200x300.png" alt="" title="BossPrefs00" width="200" height="300" class="alignnone size-medium wp-image-954" /></a></center><span id="more-949"></span>
<p>BossPrefs is a very basic app for the iPhone that simply works as a shortcut to many settings on the iPhone. It allows you to toggle core services such as WiFi, BlueTooth, SSH ( if you have it installed ), and many more. With BossPrefs you can even hide Apps on your screen from showing. For example, if you are not into the stock market you probably never use the Stocks application that comes bundled with the iPhone. The Stocks app as well as all the bundled apps with the iPhone cannot be removed directly from the GUI of the iPhone. However, with BossPrefs you can use the Poof feature to hide your unwanted icons from the main screen.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00024.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00024-200x300.png" alt="" title="BossPrefs02" width="200" height="300" class="alignnone size-medium wp-image-951" /></a>  <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00034.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00034-200x300.png" alt="" title="BossPrefs03" width="200" height="300" class="alignnone size-medium wp-image-952" /></a></center>
<p>BossPrefs also has a handy power button that allows you to simply touch and power off your iPhone. No more holding the power button for a few seconds!</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00044.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00044-200x300.png" alt="" title="BossPrefs04" width="200" height="300" class="alignnone size-medium wp-image-953" /></a></center>
<p>It also has these special features to make it easier to mod your iPhone. If you ever get an error on your iPhone that makes your E-mail continuously crash simply tapping the Fix User Dir Permissions will completely fix that. This is an awesome app and one of my top favorites.</p>
<p><strong>Where do I get this app?</strong><br />
This app is available through Cydia and Installer.<br />
( Requires you to have a JailBroken iPhone )</p>
<p><strong>*</strong> Turning off your Wifi and Bluetooth adapter while not in use may increase battery life time.</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-bossprefs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: FaceBook</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-facebook/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-facebook/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 17:08:52 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cool iphone apps]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook app]]></category>
		<category><![CDATA[facebook iphone app]]></category>
		<category><![CDATA[facebook on iphone]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhone app reviews]]></category>
		<category><![CDATA[online communities]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=928</guid>
		<description><![CDATA[Before there were iPhone Apps there were iPhone Web Apps. One of the more outstanding Web Apps that was introduced was the FaceBook Web App. Although the FaceBook Web App was very well rounded, FaceBook would not be left behind with the release of the iPhone SDK. Thus, we have the iPhone FaceBook App. See<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-facebook/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Before there were iPhone Apps there were iPhone Web Apps. One of the more outstanding Web Apps that was introduced was the FaceBook Web App. Although the FaceBook Web App was very well rounded, FaceBook would not be left behind with the release of the iPhone SDK. Thus, we have the iPhone FaceBook App.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00013.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00013-200x300.png" alt="" title="FaceBook1" width="200" height="300" class="alignnone size-medium wp-image-934" /></a></center>
<p> See what it&#8217;s all about! <span id="more-928"></span><br />
The FaceBook app for the iPhone is quite disappointing I would say. The Web App seems to be more feature full than the Application. The App does include basic features such as checking messages, viewing your friends&#8217; profiles and chatting with friends.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00023.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00023-200x300.png" alt="" title="FaceBook2" width="200" height="300" class="alignnone size-medium wp-image-935" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00033.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00033-200x300.png" alt="" title="FaceBook3" width="200" height="300" class="alignnone size-medium wp-image-936" /></a></center><br/>
<p> It also has five handy buttons on the bottom to access the five main parts of the program. You can also add pictures instantly to share your life to the minute.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00043.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00043-200x300.png" alt="" title="FaceBook4" width="200" height="300" class="alignnone size-medium wp-image-937" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00052.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00052-200x300.png" alt="" title="FaceBook5" width="200" height="300" class="alignnone size-medium wp-image-938" /></a></center><br/>
<p>However, you can&#8217;t check any Requests and it does not notify you of any one writing on your wall. You have to manually check it to see if someone has written on your wall. I thought that was a major blow to the app because I would like to be notified if someone has written on my Wall. Nevertheless, using the Web App makes up for all of this. Although It is one of my favorite apps for the iPhone, I can easily say it&#8217;s ranked on the lower end of my favorite apps. So try both the Web App and Native App. </p>
<p><strong>How do I get this app?</strong><br />
This app is available for free through the Apple App Store.<br />
(Requires you to have an iTunes Account )<br />
To access the web app simply use Safari and point it to facebook.com.      </p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-facebook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: MySpace</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-myspace/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-myspace/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 02:32:23 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cool apps for iphone]]></category>
		<category><![CDATA[free iphone apps]]></category>
		<category><![CDATA[iPhone app reviews]]></category>
		<category><![CDATA[iPhone apps]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[MySpace for iphone]]></category>
		<category><![CDATA[myspace on iPhone]]></category>
		<category><![CDATA[speed up myspace on iPhone]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=879</guid>
		<description><![CDATA[If you have ever used an iPhone you should already know that you can access MySpace through the Safari web browser. As handy as that may be, if you are surfing the net over an EDGE connection it might take you over a minute to simply connect and log in. This is no more with<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-myspace/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><font size="7" face="Georgia, Arial" color="maroon">I</font>f you have ever used an iPhone you should already know that you can access MySpace through the Safari web browser. As handy as that may be, if you are surfing the net over an EDGE connection it might take you over a minute to simply connect and log in. This is no more with this outstanding and intuitive app designed for the iPhone.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00022.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00022-200x300.png" alt="" title="MySpace1" width="200" height="300" class="alignnone size-medium wp-image-880" /></a></center><br/>
<p><strong>So how much better is it against logging in from Safari? </strong><span id="more-879"></span><br />
If you noticed on the picture above, MySpace automatically signs you in when you start the app. Yep! Only type in your info once and every time after that it will sign you in automatically. How convenient is that? Once you are logged in you can immediately see what&#8217;s new. From messages to comments and friend requests.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00032.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00032-200x300.png" alt="" title="MySpace02" width="200" height="300" class="alignnone size-medium wp-image-883" /></a></center>
<p>You can easily change your status directly from your iPhone. One of the best features is that you can upload a picture instantly. Yeah, that mean that it you want to show where you are you can simply take a picture and upload it. This app works very fast because of it&#8217;s awesome integration with the MySpace site. All of the content you see is simply updated, the GUI is all stored locally on your iPhone making faster loading times.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00042.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00042-200x300.png" alt="" title="MySpace03" width="200" height="300" class="alignnone size-medium wp-image-884" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00051.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00051-200x300.png" alt="" title="MySpace04" width="200" height="300" class="alignnone size-medium wp-image-885" /></a></center></p>
<p>Navigating to your Messages and Friend requests is as simple as tapping the respective buttons on the bottom of the screen that are accessible at anytime while using the program. When you preview photos you can easily scroll up and down with no lag! </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00071.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00071-200x300.png" alt="" title="MySpace05" width="200" height="300" class="alignnone size-medium wp-image-887" /></a></center></p>
<p>With this awesome application you can stay connected with friends and family in just the time it takes you to update your status. I 100% recommend this app simply because it keeps you in touch with all your &#8230; <center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00061.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00061-200x300.png" alt="" title="MySpace06" width="200" height="300" class="alignnone size-medium wp-image-888" /></a></center></p>
<p><strong><br />
How do I get this app?</strong><br />
Simply download it from Apple&#8217;s App Store. It&#8217;s free.<br />
( Requires you to have an iTunes Account )</p?</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-myspace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: AIM</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-aim/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-aim/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 05:27:31 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AIM]]></category>
		<category><![CDATA[aim for iphone]]></category>
		<category><![CDATA[aim on iphone]]></category>
		<category><![CDATA[instant messaging on iphone]]></category>
		<category><![CDATA[iphone app review]]></category>
		<category><![CDATA[iPhone apps]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=841</guid>
		<description><![CDATA[Although this app was not on the pictures that I showed on an earlier post, this is one of those apps that makes the iPhone super sweet! AIM ( AOL Instant Messenger ) on the iPhone is so easy to use and it works great when you are connected with EDGE (big plus). The fact<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-aim/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><font size="7" face="Georgia, Arial" color="maroon">A</font>lthough this app was not on the pictures that I showed on an earlier post, this is one of those apps that makes the iPhone super sweet! AIM ( AOL Instant Messenger ) on the iPhone is so easy to use and it works great when you are connected with EDGE (big plus). </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00011.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00011-200x300.png" alt="" title="Aim01" width="200" height="300" class="alignnone size-medium wp-image-854" /></a></center><br/>
<p>The fact that this application works well with EDGE data means that you don&#8217;t have to worry about being in a &#8220;Hot Spot&#8221; ( area with Wireless Internet )! Lets see whats so great about this app&#8230;</p>
<p>If you have never used AIM before you might want to head over to their web site to <a href="https://reg.my.screenname.aol.com/_cqr/registration/initRegistration.psp?sitedomain=www.aim.com&#038;createSn=1&#038;siteState=OrigUrl%3dhttp%253a%252f%252fwww%252eaim%252ecom%252f&#038;icid=NavBadge_1_1&#038;mcAuth=%2FBcAG0i1hQUAAK9WA29OKEi1hUEI3fFyQHI6Tu8AAA%3D%3D" rel="nofollow">Create an Account.</a>  Once you have your account set-up simply log in on the first screen. When you log in you will notice on the bottom of the screen that there are four tabs to choose from. The My Info Tab shows your status. You can customize your personal message and also add a picture directly from your iPhone.</p>
<p> <center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00021.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00021-200x300.png" alt="" title="Aim02" width="200" height="300" class="alignnone size-medium wp-image-857" /></a></center><br/>
<p>As you can see the tabs are straight fordward&#8230; Buddy List takes you to your Buddy List, IMs are your active IMs, and Favorites are your Best Buds!</p<br/><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00031.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00031-200x300.png" alt="" title="Aim03" width="200" height="300" class="alignnone size-medium wp-image-858" /></a></center> <br/>
<p>To compose an Instant Message simply tap on your buddy and IM away. With the iPhone&#8217;s full qwerty keyboard it works seamlessly.</p>
<p> <br/><center> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00012.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00012-200x300.png" alt="" title="Aim04" width="200" height="300" class="alignnone size-medium wp-image-860" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_00041.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/img_00041-200x300.png" alt="" title="Aim05" width="200" height="300" class="alignnone size-medium wp-image-861" /></a></center><br/>
<p>So there you have it, AIM on the iPhone. Just Another great app for the iPhone. And don&#8217;t forget that these apps are also available for the iPod Touch!</p>
<p><strong>How do I get this app?</strong><br />
This app is available directly from Apple&#8217;s App Store so head on over there and download it because it&#8217;s free!<br />
( Requires you yo have an iTunes account )</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-aim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Review: MxTube</title>
		<link>http://talkbinary.com/uncategorized/iphone-app-review-mxtube/</link>
		<comments>http://talkbinary.com/uncategorized/iphone-app-review-mxtube/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 17:47:20 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cool apps for iphone]]></category>
		<category><![CDATA[download youtube videos to iphone]]></category>
		<category><![CDATA[free iphone apps]]></category>
		<category><![CDATA[iPhone apps]]></category>
		<category><![CDATA[mxtube]]></category>
		<category><![CDATA[youtube on iphone]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=781</guid>
		<description><![CDATA[MxTube is a very impressive app designed by a thirteen year old. Yeah, you read right&#8230; a thirteen year old. This app is the perfect substitute for the iPhone&#8217;s YouTube application. In simplest terms, it is a super YouTube app for the iPhone. Although, the version of the app that I am reviewing is in<a class="moretag" href="http://talkbinary.com/uncategorized/iphone-app-review-mxtube/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><strong>MxTube</strong> is a very impressive app designed by a thirteen year old. Yeah, you read right&#8230; a thirteen year old. This app is the perfect substitute for the iPhone&#8217;s YouTube application. In simplest terms, it is a super YouTube app for the iPhone. Although, the version of the app that I am reviewing is in beta, it has been out for quite some time now.<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0005.png"><img class="size-medium wp-image-790 alignnone" title="MxTube 1" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0005-200x300.png" alt="" width="200" height="300" /></a></center><br />
So want to find out what it&#8217;s all about? Lets see! <span id="more-781"></span></p>
<p><strong>Why is MxTube one of my favorite apps?</strong></p>
<p>Well first off, it&#8217;s allows me to download YouTube videos direcly on to my iPhone. To download a video is as easy as searching for the video you want and tapping a few buttons. Like this:</p>
<p style="text-align: center;"><strong>Search &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Select Video&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. Select Connection Speed</strong><strong><br />
</strong></p>
<p style="text-align: center;"><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0006.png"><img class="alignnone size-medium wp-image-795" title="Searching for Video" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0006-200x300.png" alt="" width="200" height="300" /></a><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0007.png"> </a><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0007.png"><img class="alignnone size-medium wp-image-796" title="Select Video" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0007-200x300.png" alt="" width="200" height="300" /></a><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0008.png"> <img class="alignnone size-medium wp-image-797" title="Select Connection Speed" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0008-200x300.png" alt="" width="200" height="300" /></a></p>
<p style="text-align: center;"><strong>Download</strong></p>
<p style="text-align: center;"><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0009.png"><img class="size-medium wp-image-805 alignnone" title="Downloading Video" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0009-200x300.png" alt="" width="200" height="300" /></a></p>
<p style="text-align: left;">It is as simple as that. The menus and GUI are releativly similar to the iPhone&#8217;s YouTube app so it will not take long getting use to. Once you have downloaded a video you can play it back whenever you want without having to re-download it.</p>
<p style="text-align: center;"><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0010.png"><img class="size-medium wp-image-807 aligncenter" title="Downloaded Videos" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0010-200x300.png" alt="" width="200" height="300" /></a></p>
<p style="text-align: left;">This is a really great app for sharing those hilarious videos you can find on YouTube. Not only can you access them directly as you would with the regular YouTube app but you can download your favorite ones.</p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>How do I get this app?</strong></p>
<p style="text-align: left;">For this app you will have to JailBreak your iPhone. It is available through both Cydia and Installer. Please stay tuned for a great source on how to get these great apps on you phone.</p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/iphone-app-review-mxtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Reviews</title>
		<link>http://talkbinary.com/software/iphone-app-reviews/</link>
		<comments>http://talkbinary.com/software/iphone-app-reviews/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 18:32:52 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone app reviews]]></category>
		<category><![CDATA[iphone applications]]></category>
		<category><![CDATA[iPhone reviews]]></category>
		<category><![CDATA[iphone software reviews]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[reviews on iPhone]]></category>
		<category><![CDATA[web apps review]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=753</guid>
		<description><![CDATA[Do you own an iPhone? Have you been wanting to download applications from the App Store but don&#8217;t know if it would be worth it? Well stay tuned even if you don&#8217;t own an iPhone because I will be reviewing 25 of my favorite applications available for the iPhone. Some of the apps are not<a class="moretag" href="http://talkbinary.com/software/iphone-app-reviews/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Do you own an iPhone? Have you been wanting to download applications from the App Store but don&#8217;t know if it would be worth it? Well stay tuned even if you don&#8217;t own an iPhone because I will be reviewing 25 of my favorite applications available for the iPhone.</p>
<p style="text-align: left;">Some of the apps are not available in the app store so if you don&#8217;t have a Jail Broken iPhone, don&#8217;t worry! I will soon post a source that has all the information that you need on how to Jail Break your iPhone.</p>
<p style="text-align: left;">These are images of the apps I will be reviewing:</p>
<p><center>
<p style="text-align: center;"><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0001.png"><img class="alignnone size-medium wp-image-754" title="Set 1" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0001-200x300.png" alt="" width="200" height="300" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0002.png"><img class="alignnone size-medium wp-image-755" title="Set 2" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0002-200x300.png" alt="" width="200" height="300" /></a></center><br />
<center><span id="more-753"></span></center><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0003.png"><img class="alignnone size-medium wp-image-756" title="Set 3" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0003-200x300.png" alt="" width="200" height="300" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/img_0004.png"><img class="alignnone size-medium wp-image-757" title="Set 4" src="http://talkbinary.com/wp-content/uploads/2008/08/img_0004-200x300.png" alt="" width="200" height="300" /></a></center></p>
<p style="text-align: left;">Expect to see a new app reviewed every day with detailed descriptions, images, and instructions on how to get them. I will not review  apps bundled with the iPhone unless I receive a request. So, If you want me to please feel free to ask.</p>
<p style="text-align: left;"><strong>Don&#8217;t see an app you want to know more about, let us know what it is and we will do our best to get you informed on what the app is all about!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/iphone-app-reviews/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>USB Flash Drive Tip</title>
		<link>http://talkbinary.com/uncategorized/usb-flash-drive-tip/</link>
		<comments>http://talkbinary.com/uncategorized/usb-flash-drive-tip/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 03:13:07 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash drive trouble]]></category>
		<category><![CDATA[slow usb drive]]></category>
		<category><![CDATA[usb drive tip]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=648</guid>
		<description><![CDATA[Have you ever had to wait for Windows (mostly on Vista) to search through your entire flash drive before you can actually start using it? If so, here is a little trick that I use in order to make my flash drive be usable a lot faster&#8230; If you usually place all your files on<a class="moretag" href="http://talkbinary.com/uncategorized/usb-flash-drive-tip/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Have you ever had to wait for Windows (mostly on Vista) to search through your entire flash drive before you can actually start using it? If so, here is a little trick that I use in order to make my flash drive be usable a lot faster&#8230;</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/flashdrives.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/flashdrives-300x182.png" alt="" title="flashdrives" width="300" height="182" class="alignnone size-medium wp-image-656" /></a></center></p>
<p>If you usually place all your files on the root of the drive, this will help a lot!<br />
Instead of going with the usual of dropping your files on the root of your flash drive, simply create folders and place your files inside of them. </p>
<p>Windows was programmed to search the root of your drive so that when the Autoplay menu<br />
<center> <a href="http://talkbinary.com/wp-content/uploads/2008/08/autoplay.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/autoplay-221x300.png" alt="" title="autoplay" width="221" height="300" class="alignnone size-medium wp-image-657" /></a></center><br />
shows up it gives you the option of opening your files with a related program. Although this is an awesome feature, it can sometimes be very slugish. Thus, I found out that by placing your files in a folder instead of dropping them on the root of the drive, speeds up the process. So that&#8217;s it, just make folders and see the difference!</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/uncategorized/usb-flash-drive-tip/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</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-02-04 02:12:25 -->
