<?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>Techerator &#187; Brian Nelson</title>
	<atom:link href="http://www.techerator.com/author/brian.nelson/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techerator.com</link>
	<description>Techerator is an excellent source of tips, guides, and reviews about software, web apps, technology, mobile phones, and computers.</description>
	<lastBuildDate>Thu, 17 May 2012 13:50:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Bring Python to Your .NET Development with IronPython</title>
		<link>http://www.techerator.com/2012/01/bring-python-to-your-net-development-with-ironpython/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bring-python-to-your-net-development-with-ironpython</link>
		<comments>http://www.techerator.com/2012/01/bring-python-to-your-net-development-with-ironpython/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 15:23:44 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[IronPython]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15257</guid>
		<description><![CDATA[Python is a high-level programming language that has gained popularity in recent years for its emphasis on clear code that is easy to read, combined with surprising power and flexibility. Because Python is free and open-source, it has become a widely used scripting language primarily for web-based applications&#8230;but did you know that a little help from [...]<p><a href="http://www.techerator.com/2012/01/bring-python-to-your-net-development-with-ironpython/">Bring Python to Your .NET Development with IronPython</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/01/how-to-install-microsofts-fxcop-for-visual-studio-2010/' rel='bookmark' title='How to install Microsoft&#8217;s FxCop for Visual Studio 2010'>How to install Microsoft&#8217;s FxCop for Visual Studio 2010</a></li>
<li><a href='http://www.techerator.com/2011/02/how-to-perform-sharepoint-development-on-a-client-workstation/' rel='bookmark' title='How to Perform SharePoint Development On A Client Workstation'>How to Perform SharePoint Development On A Client Workstation</a></li>
<li><a href='http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/' rel='bookmark' title='ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More'>ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-15259" title="python-net" src="http://www.techerator.com/wp-content/uploads/2011/10/python-net.png" alt="" width="136" height="134" /><a href="http://www.python.org/">Python</a> is a high-level programming language that has gained popularity in recent years for its emphasis on clear code that is easy to read, combined with surprising power and flexibility. Because Python is free and open-source, it has become a widely used scripting language primarily for web-based applications&#8230;but did you know that a little help from the <a href="http://www.microsoft.com/net">.NET framework</a> can bring your Python apps to the desktop, complete with a graphical user interface? <a href="http://ironpython.net/">IronPython</a> is a handy tool that will allow you to enjoy the perks of .NET development with your favorite language, Python.</p>
<p style="text-align: left;">IronPython is a version of Python that is tightly integrated with .NET, originally developed and maintained by a team of Microsoft engineers but recently released to the open-source community. IronPython integrates with Microsoft Visual Studio and allows you to combine traditional Python code with .NET technologies, including Windows Forms and WPF for UI design. The result is a Python-coded application that looks and behaves no differently than any other Windows program, which is a big improvement over the command-line programs typical of the language.</p>
<div id="attachment_15277" class="wp-caption aligncenter" style="width: 489px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://www.techerator.com/wp-content/uploads/2011/10/iron-python-screen.png"><img class="size-large wp-image-15277" title="iron-python-screen" src="http://www.techerator.com/wp-content/uploads/2011/10/iron-python-screen-479x400.png" alt="" width="479" height="400" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">&#39;Hello World&#39; with IronPython</p></div>
<p style="text-align: left;">But how exactly does IronPython fit into the .NET world? The diagram below shows the basic functionality where the Python code makes calls to both the .NET framework classes as well as Python libraries. The Python code is then compiled by the IronPython Engine and converted to assembly code that can be executed by the .NET runtime.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-large wp-image-15261" title="iron-python-flow" src="http://www.techerator.com/wp-content/uploads/2011/10/iron-python-flow-585x229.png" alt="" width="421" height="165" /></p>
<p style="text-align: left;">IronPython isn&#8217;t just for the desktop and can be used to develop web applications that integrate with <a href="http://www.silverlight.net/">Silverlight</a>, a Microsoft framework similar to Adobe Flash. If you&#8217;re worried about pigeon-holing yourself into Windows with .NET, fear not, IronPython is supported by <a href="http://www.mono-project.com/Main_Page">Mono</a>, an open-source and cross-platform alternative to .NET. Likewise, if you don&#8217;t have the money to throw down on a license for Visual Studio, <a href="http://ironpythonstudio.codeplex.com/">IronPython Studio</a> is a free IDE that runs from the Visual Studio Shell.</p>
<p style="text-align: left;">So, if you&#8217;re a Python developer and want to make user-friendly apps that can take advantage of all that .NET has to offer, bust out of your command-line world give IronPython a spin.</p>
<p><a href="http://www.techerator.com/2012/01/bring-python-to-your-net-development-with-ironpython/">Bring Python to Your .NET Development with IronPython</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/01/how-to-install-microsofts-fxcop-for-visual-studio-2010/' rel='bookmark' title='How to install Microsoft&#8217;s FxCop for Visual Studio 2010'>How to install Microsoft&#8217;s FxCop for Visual Studio 2010</a></li>
<li><a href='http://www.techerator.com/2011/02/how-to-perform-sharepoint-development-on-a-client-workstation/' rel='bookmark' title='How to Perform SharePoint Development On A Client Workstation'>How to Perform SharePoint Development On A Client Workstation</a></li>
<li><a href='http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/' rel='bookmark' title='ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More'>ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2012/01/bring-python-to-your-net-development-with-ironpython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips and Tools for Better, Faster Writing</title>
		<link>http://www.techerator.com/2012/01/tips-and-tools-for-better-and-faster-writing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tips-and-tools-for-better-and-faster-writing</link>
		<comments>http://www.techerator.com/2012/01/tips-and-tools-for-better-and-faster-writing/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 17:00:12 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15104</guid>
		<description><![CDATA[I&#8217;ve been writing here at Techerator for over a year, but only recently have I decided to take steps to improve my writing and time efficiency. You probably know the drill: sit down at your desk, check out Twitter, open your word editor, Tweet something, check out Facebook, decide on a title, Facebook about how [...]<p><a href="http://www.techerator.com/2012/01/tips-and-tools-for-better-and-faster-writing/">Tips and Tools for Better, Faster Writing</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/02/writeroom-distraction-free-writing/' rel='bookmark' title='WriteRoom Brings Distraction-free Writing to Mac OS X'>WriteRoom Brings Distraction-free Writing to Mac OS X</a></li>
<li><a href='http://www.techerator.com/2010/12/stay-connected-save-6-tips-for-padding-your-bank-account-in-the-new-year/' rel='bookmark' title='Stay connected &amp; save: 6 tips for padding your bank account in the New Year'>Stay connected &#038; save: 6 tips for padding your bank account in the New Year</a></li>
<li><a href='http://www.techerator.com/2009/06/google-wants-to-help-make-your-website-faster-with-page-speed/' rel='bookmark' title='Google Wants to Help Make Your Website Faster with Page Speed'>Google Wants to Help Make Your Website Faster with Page Speed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing here at Techerator for over a year, but only recently have I decided to take steps to improve my writing and time efficiency. You probably know the drill: sit down at your desk, check out Twitter, open your word editor, Tweet something, check out Facebook, decide on a title, Facebook about how hard it is to write, go reward yourself with a cup of coffee, I wonder what&#8217;s on CNN&#8230;</p>
<p>We can do better than this. Without the massive amount of distractions inherent to the Internet our writing has more substance and fewer errors. Writing can be such a joy, but it&#8217;s so easy to get off track &#8212; how can we sweep away the distractions and get the best version of our content on the page quickly? Here are a few tips and tools that have cut my typical write time in half, and I like to think these tricks have made my writing better as well.</p>
<h2>1. Do your research before you start writing</h2>
<p>This seems like a no-brainer, but I think a lot of people (myself included) ignore this very basic concept. Until recently, I had a tab in my browser dedicated to my WordPress post editor and I would rapidly switch back and forth typing a sentence or two at a time as I figured out what I planned to say.</p>
<p>Grab a notebook (you know, that old paper version of the internet) and jot down your ideas as you&#8217;re reading. Collect all of the images you plan to use, and formulate an outline on paper. After 15-20 minutes of dedicated reading and establishing your position on a topic, you&#8217;ll be amazed how prepared you feel to write. When we have a solid stance on something, our natural instinct is to share that feeling.</p>
<p><img class="alignright size-medium wp-image-15177" style="border-style: initial; border-color: initial;;  float: right; padding: 4px; margin: 0 0 2px 7px;" title="breaktaker-break" src="http://www.techerator.com/wp-content/uploads/2011/10/breaktaker-break-239x250.png" alt="" width="239" height="250" /></p>
<h2>2. Use <a href="http://www.techerator.com/software/breaktaker">BreakTaker</a></h2>
<p>You need to take breaks while you&#8217;re working. It&#8217;s easy to get sucked into your project and forget to stretch, sit up straight, or even breath properly &#8212; this costs you productivity, and more of it than you&#8217;d expect. Techerator&#8217;s own <a href="http://www.techerator.com/author/ewondrasek/">Evan Wondrasek</a> created a useful tool called <a href="http://www.techerator.com/software/breaktaker/">BreakTaker</a> that will remind you to take a break at user-defined intervals and offer suggestions for your 60-second breather. Set it up and use it. Evan is working on a feature that will kick you in the groin if you ignore your BreakTaker.</p>
<h2>3. Eliminate the distractions and write&#8230; JUST WRITE</h2>
<p>This is the meat of my argument, and trust me, eliminating your distractions will make writing so fast that you&#8217;ll be back to your Xbox in surprising time.</p>
<p>Here&#8217;s what you do: Gather your materials; you should have everything you need to complete your article. Disable your wi-fi and close your browser. Now, open your text editor&#8230; but screw your old text editor. If you&#8217;re running on a Mac, <a href="http://www.hogbaysoftware.com/products/writeroom">WriteRoom</a> is the tool for you, and if you&#8217;re on Windows, <a href="http://they.misled.us/dark-room">Dark Room</a> is almost the exact same thing.</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-large wp-image-15175" title="mac_os_screen" src="http://www.techerator.com/wp-content/uploads/2011/10/mac_os_screen-463x400.jpg" alt="" width="463" height="400" /></p>
<p>WriteRoom and Dark Room are minimalistic editors that occupy your entire screen and allow you to fully engage your material. You can change the colors to fit your preferences, but seriously, green on black is so awesome I don&#8217;t know why you&#8217;d want to change it. Try these editors with the lights off &#8212; writing in a dark room is a technique some of the most successful bloggers use (like <a href="https://twitter.com/arrington">@arrington</a>). Combine with headphones; now you&#8217;re big-time. With nothing else to draw your attention, you will absolutely blaze through your article.</p>
<h2>4. Proof read with a partner</h2>
<p>I know, this seems over the top &#8212;  but believe me, it is completely possible and makes a world of difference. If you&#8217;re a writer, you probably have writer friends, or at least writers that contribute to the same blog or newspaper. Coordinate with a writing partner to exchange articles at a specific time to quickly proof, edit, and offer notes for each other. It takes 10-15 minutes at most, and the perspective offered by a reader will improve your word choices, your story flow, and on rare occasion they&#8217;ll recommend that you scrap it&#8230; because sometimes we convince ourselves that total garbage is worth publishing. Get a buddy and your writing will be better and your editing much quicker. Your managing editor will thank you.</p>
<p>These tricks have helped me reduce my write time and improve the quality of my content, and if you&#8217;re diligent, they&#8217;ll work for you, too. Good luck out there, and if you have tips that work for you, please share them in the comments.</p>
<p><a href="http://www.techerator.com/2012/01/tips-and-tools-for-better-and-faster-writing/">Tips and Tools for Better, Faster Writing</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/02/writeroom-distraction-free-writing/' rel='bookmark' title='WriteRoom Brings Distraction-free Writing to Mac OS X'>WriteRoom Brings Distraction-free Writing to Mac OS X</a></li>
<li><a href='http://www.techerator.com/2010/12/stay-connected-save-6-tips-for-padding-your-bank-account-in-the-new-year/' rel='bookmark' title='Stay connected &amp; save: 6 tips for padding your bank account in the New Year'>Stay connected &#038; save: 6 tips for padding your bank account in the New Year</a></li>
<li><a href='http://www.techerator.com/2009/06/google-wants-to-help-make-your-website-faster-with-page-speed/' rel='bookmark' title='Google Wants to Help Make Your Website Faster with Page Speed'>Google Wants to Help Make Your Website Faster with Page Speed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2012/01/tips-and-tools-for-better-and-faster-writing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Reset Your Cr-48 Chromebook to its Default Factory Settings</title>
		<link>http://www.techerator.com/2012/01/how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings</link>
		<comments>http://www.techerator.com/2012/01/how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 15:55:27 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15591</guid>
		<description><![CDATA[Google&#8217;s Cr-48 Chromebook was distributed to beta testers in February 2011 and was public&#8217;s the first glimpse at a netbook running the Chrome OS. Since its release, the Cr-48 has undergone a number of updates, and on occasion, the software changes create a problem that can be hard to fix with the limited number of resources available [...]<p><a href="http://www.techerator.com/2012/01/how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings/">How to Reset Your Cr-48 Chromebook to its Default Factory Settings</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2011/08/5-must-have-chromebook-apps-for-work/' rel='bookmark' title='5 Must-Have Chromebook Apps for Work'>5 Must-Have Chromebook Apps for Work</a></li>
<li><a href='http://www.techerator.com/2011/02/how-to-change-default-font-and-document-settings-in-microsoft-word/' rel='bookmark' title='How To Change Default Font and Document Settings In Microsoft Word'>How To Change Default Font and Document Settings In Microsoft Word</a></li>
<li><a href='http://www.techerator.com/2011/08/office-2010-fix-word-not-saving-default-settings/' rel='bookmark' title='Office 2010: Fix Word Not Saving Default Settings'>Office 2010: Fix Word Not Saving Default Settings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-15602" title="featured" src="http://www.techerator.com/wp-content/uploads/2011/10/featured1-300x210.jpg" alt="" width="300" height="210" />Google&#8217;s <a href="http://www.pcmag.com/article2/0,2817,2374173,00.asp">Cr-48 Chromebook</a> was distributed to beta testers in February 2011 and was public&#8217;s the first glimpse at a netbook running the <a href="http://www.chromium.org/chromium-os">Chrome OS</a>. Since its release, the Cr-48 has undergone a number of updates, and on occasion, the software changes create a problem that can be hard to fix with the limited number of resources available for Chrome OS issues. Not to worry, follow these steps to reset your Cr-48 to its default factory settings and you&#8217;ll be back in no time.</p>
<p><span style="color: red;"><em><strong>Note:</strong>  Friendly reminder that selling your Cr-48 is against the TOS &#8212; don&#8217;t be that guy!</em></span></p>
<h2>1. Remove the battery and flip on the &#8216;Dev&#8217; switch</h2>
<p>Power down your Chromebook, flip it over and remove the battery. The Chromebook engineers cleverly hid the Dev switch behind a piece of black tape. The tape covering the switch can be found right next to the battery pins (see below). Flip that very tiny switch, and do so carefully.</p>
<div id="attachment_15594" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15594" title="1" src="http://www.techerator.com/wp-content/uploads/2011/10/1-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Bottom view</p></div>
<div id="attachment_15595" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15595" title="2" src="http://www.techerator.com/wp-content/uploads/2011/10/21-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Bottom view after battery is removed</p></div>
<div id="attachment_15596" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15596" title="3" src="http://www.techerator.com/wp-content/uploads/2011/10/31-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">The hidden &#39;Dev&#39; switch</p></div>
<h2>2. Boot into Developer Mode</h2>
<p>Turn on the power and allow it to boot until you reach the Sad Chromebook screen. At this point, hit<em> Ctrl+D</em> to enter Developer Mode and initiate the wiping of your partition. The wiping initiates automatically and takes just a few minutes. When the &#8220;recovery&#8221; has completed, you&#8217;ll be prompted to reboot. Turn off the Chromebook and move on to step 3.</p>
<div id="attachment_15597" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15597" title="4" src="http://www.techerator.com/wp-content/uploads/2011/10/4-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">When you see the sad Chromebook, hit Ctrl+D</p></div>
<div id="attachment_15598" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15598" title="5" src="http://www.techerator.com/wp-content/uploads/2011/10/5-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Down the rabbit hole</p></div>
<h2>3. Power down and flip off the &#8216;Dev&#8217; switch</h2>
<p>Pretty self-explanatory, but we don&#8217;t want to stay in Developer Mode, so once again remove the battery and put the switch in its original &#8216;off&#8217; position.</p>
<h2>4. Reboot and reconfigure</h2>
<p>You should be able to reboot now and you&#8217;ll be greeted with one final message to let you know you&#8217;re back in Normal Mode. After a minute or so, you&#8217;ll be prompted to connect and configure.</p>
<div id="attachment_15599" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15599" title="6" src="http://www.techerator.com/wp-content/uploads/2011/10/6-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Transitioning back to Normal Mode</p></div>
<div id="attachment_15600" class="wp-caption aligncenter" style="width: 543px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15600" title="7" src="http://www.techerator.com/wp-content/uploads/2011/10/7-533x400.jpg" alt="" width="533" height="400" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">You&#39;re done!</p></div>
<p>That wasn&#8217;t so hard! In fact, once you&#8217;re configured, Chrome OS will automatically update, so you&#8217;ll be exactly where you want to be. Start to finish, this shouldn&#8217;t take more than 15 minutes.</p>
<p>Don&#8217;t be afraid to experiment with your Cr-48. Heck, maybe you want to try to install <a href="http://chromeos-cr48.blogspot.com/2010/12/easy-way-to-install-ubuntu-on-your-cr.html">Ubuntu Linux</a> on it. The worst that can happen is that you&#8217;ll be out 15 minutes. Have at it!</p>
<p><a href="http://www.techerator.com/2012/01/how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings/">How to Reset Your Cr-48 Chromebook to its Default Factory Settings</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2011/08/5-must-have-chromebook-apps-for-work/' rel='bookmark' title='5 Must-Have Chromebook Apps for Work'>5 Must-Have Chromebook Apps for Work</a></li>
<li><a href='http://www.techerator.com/2011/02/how-to-change-default-font-and-document-settings-in-microsoft-word/' rel='bookmark' title='How To Change Default Font and Document Settings In Microsoft Word'>How To Change Default Font and Document Settings In Microsoft Word</a></li>
<li><a href='http://www.techerator.com/2011/08/office-2010-fix-word-not-saving-default-settings/' rel='bookmark' title='Office 2010: Fix Word Not Saving Default Settings'>Office 2010: Fix Word Not Saving Default Settings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2012/01/how-to-reset-your-cr-48-chromebook-to-its-default-factory-settings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Embed Images Directly Into Your HTML</title>
		<link>http://www.techerator.com/2011/12/how-to-embed-images-directly-into-your-html/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-embed-images-directly-into-your-html</link>
		<comments>http://www.techerator.com/2011/12/how-to-embed-images-directly-into-your-html/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 15:40:09 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15202</guid>
		<description><![CDATA[When you code a web page, you&#8217;ll oftentimes want to include images. In almost every case you&#8217;ll throw down a line of code that looks something like this: But did you know that you can embed your image directly into the HTML without having to link to an external file? Yep, but first, why would [...]<p><a href="http://www.techerator.com/2011/12/how-to-embed-images-directly-into-your-html/">How To Embed Images Directly Into Your HTML</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/03/wordpress-fix-how-to-properly-align-images-in-rss-feeds/' rel='bookmark' title='WordPress Fix: How to Properly Align Images in RSS Feeds'>WordPress Fix: How to Properly Align Images in RSS Feeds</a></li>
<li><a href='http://www.techerator.com/2010/03/how-to-easily-resize-images-in-windows/' rel='bookmark' title='How To: Easily Resize Images in Windows'>How To: Easily Resize Images in Windows</a></li>
<li><a href='http://www.techerator.com/2010/12/how-to-scale-images-while-retaining-aspect-ratio-in-paint-net/' rel='bookmark' title='How to Scale Images While Retaining Aspect Ratio in Paint.NET'>How to Scale Images While Retaining Aspect Ratio in Paint.NET</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you code a web page, you&#8217;ll oftentimes want to include images. In almost every case you&#8217;ll throw down a line of code that looks something like this:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;img src=&quot;location/of/image.png&quot; alt=&quot;alternative text&quot; /&gt;
</pre>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-15208" title="logo" src="http://www.techerator.com/wp-content/uploads/2011/10/logo-300x151.png" alt="" width="180" height="91" /></p>
<p>But did you know that you can embed your image directly into the HTML without having to link to an external file? Yep, but first, why would you want to? In a word, portability. In certain cases, you may want to be able to pick up your page and simply relocate it without worrying about whether linked images are going to transfer correctly as well. How do we do this? Observe.</p>
<p>Let&#8217;s say you have an image that you want to include in your markup &#8212; when you link to it, the browser interprets it as encoded data in a format dictated by your <em>&lt;img&gt;</em> tag. In theory, you can convert the image directly to encoded data and put it directly into the <em>src</em> parameter, right? Let&#8217;s find out.</p>
<p><a href="http://www.abluestar.com/utilities/encode_base64/index.php">A Blue Star</a> is a tool for converting data, including images to Base64 encoding. It allows you to upload an image and then spits out the Base64 conversion for you. After uploading an image, you&#8217;re left with an image tag that has a stream of Base64 code instead of an image location.</p>
<pre class="brush: xml; title: ; notranslate">

&lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAAD
 NCAMAAAAsYgRbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5c
 cllPAAAABJQTFRF3NSmzMewPxIG//ncJEJsldTou1jHgAAAARBJREFUeNrs2EEK
 gCAQBVDLuv+V20dENbMY831wKz4Y/VHb/5RGQ0NDQ0NDQ0NDQ0NDQ0NDQ
 0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0PzMWtyaGhoaGhoaGhoaGhoaGhoxtb0QGho
 aGhoaGhoaGhoaGhoaMbRLEvv50VTQ9OTQ5OpyZ01GpM2g0bfmDQaL7S+ofFC6x
 v3ZpxJiywakzbvd9r3RWPS9I2+MWk0+kbf0Hih9Y17U0nTHibrDDQ0NDQ0NDQ0
 NDQ0NDQ0NTXbRSL/AK72o6GhoaGhoRlL8951vwsNDQ0NDQ1NDc0WyHtDTEhD
 Q0NDQ0NTS5MdGhoaGhoaGhoaGhoaGhoaGhoaGhoaGposzSHAAErMwwQ2HwRQ
 AAAAAElFTkSuQmCC&quot; alt=&quot;beastie.png&quot; /&gt;
</pre>
<p>Cute, right? It&#8217;s not exactly reader friendly, but look below to see how the browser interprets it &#8212; cool, that&#8217;s eight-bit me! And no linked image required!</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADNCAMAAAAsYgRbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABJQTFRF3NSmzMewPxIG//ncJEJsldTou1jHgAAAARBJREFUeNrs2EEKgCAQBVDLuv+V20dENbMY831wKz4Y/VHb/5RGQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0PzMWtyaGhoaGhoaGhoaGhoaGhoxtb0QGhoaGhoaGhoaGhoaGhoaMbRLEvv50VTQ9OTQ5OpyZ01GpM2g0bfmDQaL7S+ofFC6xv3ZpxJiywakzbvd9r3RWPS9I2+MWk0+kbf0Hih9Y17U0nTHibrDDQ0NDQ0NDQ0NDQ0NDQ0NTXbRSL/AK72o6GhoaGhoRlL8951vwsNDQ0NDQ1NDc0WyHtDTEhDQ0NDQ0NTS5MdGhoaGhoaGhoaGhoaGhoaGhoaGhoaGposzSHAAErMwwQ2HwRQAAAAAElFTkSuQmCC" alt="beastie.png" /></p>
<p>If you&#8217;re interested in trying this on your own without a pre-made base64 conversion tool, pay special attention to <strong>&#8220;<em>data:image/png;base64</em>&#8220;</strong>, which precedes your converted string in the <em>src</em> of your image tag.</p>
<p>Whether you&#8217;re creating a Read Me or streamlining your file structure, embedding images directly into your HTML may be just the thing you need. This isn&#8217;t practical for day-to-day decide, but at least now you have the option.</p>
<p><a href="http://www.techerator.com/2011/12/how-to-embed-images-directly-into-your-html/">How To Embed Images Directly Into Your HTML</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/03/wordpress-fix-how-to-properly-align-images-in-rss-feeds/' rel='bookmark' title='WordPress Fix: How to Properly Align Images in RSS Feeds'>WordPress Fix: How to Properly Align Images in RSS Feeds</a></li>
<li><a href='http://www.techerator.com/2010/03/how-to-easily-resize-images-in-windows/' rel='bookmark' title='How To: Easily Resize Images in Windows'>How To: Easily Resize Images in Windows</a></li>
<li><a href='http://www.techerator.com/2010/12/how-to-scale-images-while-retaining-aspect-ratio-in-paint-net/' rel='bookmark' title='How to Scale Images While Retaining Aspect Ratio in Paint.NET'>How to Scale Images While Retaining Aspect Ratio in Paint.NET</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/12/how-to-embed-images-directly-into-your-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Programmer&#8217;s Dilemma: Choosing between Qt and .NET</title>
		<link>http://www.techerator.com/2011/12/a-programmers-dilemma-choosing-between-qt-and-net/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-programmers-dilemma-choosing-between-qt-and-net</link>
		<comments>http://www.techerator.com/2011/12/a-programmers-dilemma-choosing-between-qt-and-net/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 15:30:57 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15195</guid>
		<description><![CDATA[I&#8217;ve been a programmer for a long time, but admittedly, most of my efforts have been devoted to web-based projects (PHP, ASP) and command line desktop programs with a very limited audience. Recently, I&#8217;ve decided to swallow my pride and accept that I need to learn to make desktop apps that&#8230;don&#8217;t suck. Where do I [...]<p><a href="http://www.techerator.com/2011/12/a-programmers-dilemma-choosing-between-qt-and-net/">A Programmer&#8217;s Dilemma: Choosing between Qt and .NET</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/02/cdburnerxp-free-powerful-easy-to-use-disc-burning-software/' rel='bookmark' title='CDBurnerXP: Free, Powerful &amp; Easy-To-Use Disc Burning Software'>CDBurnerXP: Free, Powerful &#038; Easy-To-Use Disc Burning Software</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-15199" title="logos" src="http://www.techerator.com/wp-content/uploads/2011/10/logos1-300x165.png" alt="" width="300" height="165" />I&#8217;ve been a programmer for a long time, but admittedly, most of my efforts have been devoted to web-based projects (PHP, ASP) and command line desktop programs with a very limited audience. Recently, I&#8217;ve decided to swallow my pride and accept that I need to learn to make desktop apps that&#8230;don&#8217;t suck. Where do I start?</p>
<p>I&#8217;m fortunate to have a group of software engineer friends &#8212; if I ever have a question about Dungeons &amp; Dragons or programming, they have me covered. Over a couple of beers, I presented them a seemingly mundane question got these code monkeys a little hot under the collar:</p>
<blockquote><p>Hey, guys&#8230; What framework should I develop in?</p></blockquote>
<p>With the ensuing noise you would have thought I&#8217;d just thrown an unopened Chewbacca action figure out of a moving vehicle. Unsurprisingly, debates over the best framework can send nerds into a tizzy &#8212; after all, they&#8217;ve devoted a hell of a lot of time becoming well-versed in something that the opposition considers a &#8220;waste of time!&#8221; Once the bickering subsided, two contenders rose to the top of everybody&#8217;s lists: <a href="http://qt.nokia.com/">Nokia&#8217;s Qt</a> and <a href="http://www.microsoft.com/net">Microsoft&#8217;s .NET</a>.</p>
<div id="attachment_15218" class="wp-caption aligncenter" style="width: 510px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-full wp-image-15218 " title="geek-fight" src="http://www.techerator.com/wp-content/uploads/2011/10/geek-fight.jpg" alt="" width="500" height="287" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Qt is better than .NET? How about you say that to my face?</p></div>
<p style="text-align: left;">All you need to do is Google <em>Qt versus .NET</em> to see that the debate rages on, but there is no clear winner. However, depending on your situation, there is definitely a best fit for you. Some discussion and research led me to a few considerations when choosing where to focus your learning efforts.</p>
<h2 style="text-align: left;">What are your platform needs?</h2>
<p style="text-align: left;"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-thumbnail wp-image-15227 alignright" title="os" src="http://www.techerator.com/wp-content/uploads/2011/10/os-225x225.jpg" alt="" width="158" height="158" />Both Qt&#8217;s SDK and Microsoft&#8217;s Visual Studio have a full set of tools for developing desktop apps complete with user interface controls, but if you intend to make software to work across all major platforms (Windows, OS X, Linux), you may want to think carefully. Qt is available under <a href="http://www.gnu.org/licenses/gpl.html">GPL</a> for all platforms and will let you deploy desktop apps that don&#8217;t require the user to install a framework like .NET does. The .NET framework is pre-installed in modern versions of Windows, but the <a href="http://www.mono-project.com/Main_Page">Mono framework</a> allows for .NET-compatibility in Linux and OS X. Any way you cut it, you can probably make software that works on any machine &#8212; but Qt definitely has the advantage here.</p>
<p style="text-align: left;">Personally, I like the idea of developing cross-platform software from a single IDE installation (à la Qt), but you can&#8217;t ignore the fact that .NET works with <a href="http://msdn.microsoft.com/en-us/library/ms748948.aspx">WPF</a> and <a href="http://msdn.microsoft.com/en-us/library/dd30h2yb.aspx">Windows Forms</a> to deliver some pretty awesome functionality without a lot of effort. How much emphasis do you put on cross-platform compatibility? If the answer is &#8220;a lot,&#8221; then Qt is for you. If you&#8217;re content to stick with Windows development, .NET will more than satisfy you.</p>
<h2 style="text-align: left;">Do you have strong programming fundamentals?</h2>
<p style="text-align: left;"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-15229" title="programming" src="http://www.techerator.com/wp-content/uploads/2011/10/programming.jpg" alt="" width="175" height="175" />If you&#8217;re a student, the answer is probably &#8220;not yet.&#8221; Because Qt is a framework that uses C++, it requires you to learn certain concepts like pointers, memory management, and other lower language abilities that are greatly abstracted in .NET&#8217;s C#. The idea here is that if you are a burgeoning programmer, you should gain familiarity with practices inherent to a language like C++ because it will make the transition to C# much easier.</p>
<p style="text-align: left;">So, if you&#8217;re looking to be the best programmer you can ever be and you&#8217;re not very experienced in baseline techniques, pick up Qt. If you&#8217;re more interested in getting a good job quickly, .NET developers are a <a href="http://www.mlive.com/jobs/index.ssf/2011/10/net_developers_wanted_but_the_pay_may_be.html">hot commodity</a>.</p>
<h2 style="text-align: left;">How much time are you willing to invest in learning?</h2>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-15234" title="sleeping" src="http://www.techerator.com/wp-content/uploads/2011/10/sleeping1.jpg" alt="" width="175" height="117" />The general consensus is that C++ isn&#8217;t an easy language to master, but it is pretty close to the metal when it comes to the stack, I/O devices, and memory management. Gaining proficiency in Qt is definitely going to take some time, but perhaps will make you a more well-rounded programmer in the end. However, don&#8217;t underestimate the value of getting something done quickly and smoothly &#8212; because .NET and C# will allow you to do that.</p>
<h2 style="text-align: left;">In the end, both are great frameworks</h2>
<p style="text-align: left;">The truth is that there is no &#8220;best&#8221; framework, and it will ultimately come down to your needs, professional goals, and personal interests. For fast-paced commercial programming, .NET/C# has an edge, but for open-source cross-platform development, Qt will lead you to good places. There is a lot of functional overlap in these two frameworks, so it may be wise to try them both&#8230;and don&#8217;t be quick to dismiss either.</p>
<p><a href="http://www.techerator.com/2011/12/a-programmers-dilemma-choosing-between-qt-and-net/">A Programmer&#8217;s Dilemma: Choosing between Qt and .NET</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/02/cdburnerxp-free-powerful-easy-to-use-disc-burning-software/' rel='bookmark' title='CDBurnerXP: Free, Powerful &amp; Easy-To-Use Disc Burning Software'>CDBurnerXP: Free, Powerful &#038; Easy-To-Use Disc Burning Software</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/12/a-programmers-dilemma-choosing-between-qt-and-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;Batch&#8221; is the ultimate mobile photo sharing app for iPhone</title>
		<link>http://www.techerator.com/2011/12/batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone</link>
		<comments>http://www.techerator.com/2011/12/batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 15:30:57 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Batch]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15686</guid>
		<description><![CDATA[In the smart phone era, everyone is an amateur photographer. Equipped with high-def capabilities and nearly bottomless storage, we produce a lot of photos on a daily basis which we&#8217;ve opted to share individually on Twitter or in bulk on Facebook. The problem is that sharing full albums with friends requires a bit of effort [...]<p><a href="http://www.techerator.com/2011/12/batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone/">&#8220;Batch&#8221; is the ultimate mobile photo sharing app for iPhone</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2011/06/create-an-instant-photo-gallery-with-dropmocks-and-min-us/' rel='bookmark' title='Create an Instant Photo Gallery with DropMocks and min.us'>Create an Instant Photo Gallery with DropMocks and min.us</a></li>
<li><a href='http://www.techerator.com/2010/08/tag-your-friends-faces-in-picasa-for-easy-photo-organization/' rel='bookmark' title='Tag Your Friends&#8217; Faces in Picasa for Easy Photo Organization'>Tag Your Friends&#8217; Faces in Picasa for Easy Photo Organization</a></li>
<li><a href='http://www.techerator.com/2012/01/bittorrent-takes-on-dropbox-with-new-file-sharing-service/' rel='bookmark' title='BitTorrent takes on Dropbox with new file-sharing service'>BitTorrent takes on Dropbox with new file-sharing service</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-15743" title="batch" src="http://www.techerator.com/wp-content/uploads/2011/11/batch.jpg" alt="" width="202" height="250" />In the smart phone era, everyone is an amateur photographer. Equipped with high-def capabilities and nearly bottomless storage, we produce a lot of photos on a daily basis which we&#8217;ve opted to share individually on Twitter or in bulk on Facebook. The problem is that sharing full albums with friends requires a bit of effort &#8212; downloading to your desktop, uploading to Facebook &#8212; why can&#8217;t we do it on the go?</p>
<p><a href="http://www.batch.com">Batch</a> is an iPhone app that allows you to easily share large numbers of photos with your friends without needing to make a stop at your computer. Sharing photos from your phone isn&#8217;t exactly a game-changer, but Batch is one of the first to offer a way to share many pictures with just a few taps.</p>
<div id="attachment_15690" class="wp-caption aligncenter" style="width: 595px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15690" title="2-screens" src="http://www.techerator.com/wp-content/uploads/2011/11/2-screens1-585x292.jpg" alt="" width="585" height="292" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Credit: iTunes App Store</p></div>
<p>The beauty of Batch is its simplicity. A focused design lets you snap pictures, tag friends, and share your albums without any fuss. Friends can leave comments or simply &#8216;Like&#8217; what they see. Batch allows you to post a link to your albums on Facebook and Twitter for friends to view anywhere. Photos dominate the screen and you can easily flip through pages of your own pictures or albums posted to your feed by friends. Privacy settings are a cinch, letting you make some albums private or share with just a few friends at a time.</p>
<p><strong>The downside? Batch requires a Facebook account for login. </strong>But come on, you already have one of those&#8230;</p>
<p>Batch keeps your photos safe and your friends updated. If you take a lot of pictures with your iPhone, batch is an absolute must. Photo-sharing apps seem to be the big thing right now, with <a href="http://instagr.am/">Instagram</a> and <a href="http://www.path.com/">Path</a> making big gains each month, but Batch is the first to perfect the idea of sharing full albums on the go.</p>
<p>Take a boatload of photos, share them with Batch.</p>
<p><a href="http://www.techerator.com/2011/12/batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone/">&#8220;Batch&#8221; is the ultimate mobile photo sharing app for iPhone</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2011/06/create-an-instant-photo-gallery-with-dropmocks-and-min-us/' rel='bookmark' title='Create an Instant Photo Gallery with DropMocks and min.us'>Create an Instant Photo Gallery with DropMocks and min.us</a></li>
<li><a href='http://www.techerator.com/2010/08/tag-your-friends-faces-in-picasa-for-easy-photo-organization/' rel='bookmark' title='Tag Your Friends&#8217; Faces in Picasa for Easy Photo Organization'>Tag Your Friends&#8217; Faces in Picasa for Easy Photo Organization</a></li>
<li><a href='http://www.techerator.com/2012/01/bittorrent-takes-on-dropbox-with-new-file-sharing-service/' rel='bookmark' title='BitTorrent takes on Dropbox with new file-sharing service'>BitTorrent takes on Dropbox with new file-sharing service</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/12/batch-is-the-ultimate-mobile-photo-album-sharing-app-for-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More</title>
		<link>http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shiftedit-a-web-based-ide-for-php-python-ruby-and-more</link>
		<comments>http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 16:00:49 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ShiftEdit]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15693</guid>
		<description><![CDATA[If you&#8217;re a programmer or developer that juggles several projects at a time, your code can sometimes be lost between multiple workstations, or worse, lost in some sort of catastrophic system failure. If only you&#8217;d had a chance to run a backup first! With everything going to the cloud these days, wouldn&#8217;t it make sense [...]<p><a href="http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/">ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/09/how-to-perform-age-verification-with-jquery-and-cookies-mmm-cookies/' rel='bookmark' title='How to Perform Age Verification with jQuery and Cookies (mmm, cookies)'>How to Perform Age Verification with jQuery and Cookies (mmm, cookies)</a></li>
<li><a href='http://www.techerator.com/2010/09/how-to-not-suck-at-foursquare-and-other-location-based-social-networks/' rel='bookmark' title='How to NOT Suck at Foursquare (and other location-based social networks)'>How to NOT Suck at Foursquare (and other location-based social networks)</a></li>
<li><a href='http://www.techerator.com/2011/05/getting-to-know-markdown/' rel='bookmark' title='Getting to Know Markdown'>Getting to Know Markdown</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-15695" title="0-logo" src="http://www.techerator.com/wp-content/uploads/2011/11/0-logo.png" alt="" width="230" height="139" />If you&#8217;re a programmer or developer that juggles several projects at a time, your code can sometimes be lost between multiple workstations, or worse, lost in some sort of catastrophic system failure. If only you&#8217;d had a chance to run a backup first! With everything going to the cloud these days, wouldn&#8217;t it make sense to have your valuable projects protected in the fluffy white stuff as you work on them?</p>
<p><a href="http://shiftedit.net">ShiftEdit </a>is a web-based development environment for HTML, PHP, Ruby, Python and more, and they&#8217;re adding new languages all the time. Like the usual desktop-based WYSIWYG counterparts, ShiftEdit offers &#8216;Code&#8217; and &#8216;Design&#8217; views for creating your applications, as well as syntax highlighting for their expanding portfolio. As you code, your projects are automatically saved, safe and sound in the cloud and accessible from any computer with a browser and internet connection.</p>
<div class="wp-caption aligncenter" style="width: 595px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img title="3-screen-split" src="http://www.techerator.com/wp-content/uploads/2011/11/3-screen-split-585x370.png" alt="" width="585" height="370" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Code, design, and split views</p></div>
<p>If you require FTP access and database connectivity for your projects, ShiftEdit gives you the ability to connect to one site for free with the option to add unlimited sites by upgrading to their Premier service ($5/month). ShiftEdit also gives you access to basic version control tools in case you&#8217;ll be collaborating with other users.</p>
<div id="attachment_15696" class="wp-caption aligncenter" style="width: 595px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15696 " title="1-ftp" src="http://www.techerator.com/wp-content/uploads/2011/11/1-ftp-585x358.png" alt="" width="585" height="358" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">FTP and database connectivity</p></div>
<p>If you&#8217;re looking for enterprise-class tools that help you whip out projects at lightning speed, ShiftEdit may not be everything you need. The IDE currently lacks auto-complete functionality and only provides real-time syntax debugging for JavaScript and PHP. Combine that with a finicky FTP tool, and you may want to steer clear with your high-impact projects. That said, ShiftEdit is on the right track to being a feature-rich IDE with new things being added all the time, like <a href="http://shiftedit.net/blog/dropbox-support">Dropbox support</a>.</p>
<p>With more and more production-grade development tools becoming web-based, don&#8217;t be surprised if you&#8217;re developing straight to the cloud in the next few years. Give ShiftEdit a try and put yourself ahead of the curve.</p>
<p><a href="http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/">ShiftEdit: A Web-Based IDE for PHP, Python, Ruby and More</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/09/how-to-perform-age-verification-with-jquery-and-cookies-mmm-cookies/' rel='bookmark' title='How to Perform Age Verification with jQuery and Cookies (mmm, cookies)'>How to Perform Age Verification with jQuery and Cookies (mmm, cookies)</a></li>
<li><a href='http://www.techerator.com/2010/09/how-to-not-suck-at-foursquare-and-other-location-based-social-networks/' rel='bookmark' title='How to NOT Suck at Foursquare (and other location-based social networks)'>How to NOT Suck at Foursquare (and other location-based social networks)</a></li>
<li><a href='http://www.techerator.com/2011/05/getting-to-know-markdown/' rel='bookmark' title='Getting to Know Markdown'>Getting to Know Markdown</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/11/shiftedit-a-web-based-ide-for-php-python-ruby-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Four HTML5 and JavaScript Frameworks To Jump-start Your App Development</title>
		<link>http://www.techerator.com/2011/11/four-html5-and-javascript-frameworks-to-jump-start-your-app-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=four-html5-and-javascript-frameworks-to-jump-start-your-app-development</link>
		<comments>http://www.techerator.com/2011/11/four-html5-and-javascript-frameworks-to-jump-start-your-app-development/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:09:56 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15575</guid>
		<description><![CDATA[Let&#8217;s just face the facts: Flash is dying, platform/browser agnostic development is in, and Windows 8 is bringing HTML5/JavaScript to desktop development. Love it or hate it, as a developer you&#8217;ll probably need to familiarize yourself with the finer points of HTML5 and JavaScript-driven application design, but where does a person start? Traditionally HTML and [...]<p><a href="http://www.techerator.com/2011/11/four-html5-and-javascript-frameworks-to-jump-start-your-app-development/">Four HTML5 and JavaScript Frameworks To Jump-start Your App Development</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/02/html5-and-the-future-of-mobile/' rel='bookmark' title='HTML5 and the Future of Mobile Apps and Gaming'>HTML5 and the Future of Mobile Apps and Gaming</a></li>
<li><a href='http://www.techerator.com/2011/11/adobe-kills-flash-for-mobile-in-favor-of-html5/' rel='bookmark' title='Adobe kills Flash for mobile in favor of HTML5'>Adobe kills Flash for mobile in favor of HTML5</a></li>
<li><a href='http://www.techerator.com/2011/06/googles-swiffy-converts-swf-files-to-html5/' rel='bookmark' title='Google&#8217;s Swiffy Converts SWF Files to HTML5'>Google&#8217;s Swiffy Converts SWF Files to HTML5</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-15814" title="logo" src="http://www.techerator.com/wp-content/uploads/2011/11/logo-250x250.png" alt="" width="250" height="250" />Let&#8217;s just face the facts: Flash is <a href="http://www.geek.com/articles/news/internet-explorer-10-metro-will-not-support-flash-silverlight-20110915/">dying</a>, platform/browser agnostic development is in, and Windows 8 is <a href="http://www.osnews.com/story/24846/Windows_8_HTML5_JS_Comment_Causes_Panic_Among_Developers">bringing HTML5/JavaScript</a> to desktop development. Love it or hate it, as a developer you&#8217;ll probably need to familiarize yourself with the finer points of HTML5 and JavaScript-driven application design, but where does a person start? Traditionally HTML and JavaScript are used for website markup and making pretty transition effects, so how do we get from high school level web design to making HTML5/JS a realistic front-end for enterprise class applications?</p>
<p>HTML5/JS frameworks are beginning to pop up as viable development environments for the entire range of web-based applications, from desktop to mobile. Here are four HTML5/JS tools that will turbocharge your apps and keep you savvy with this new trend in development.</p>
<h2>1. <a href="http://developer.yahoo.com/blogs/ydn/posts/2011/11/yahoo-announces-cocktails-%E2%80%93-shaken-not-stirred/">Yahoo! Cocktails</a></h2>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-full wp-image-15827 alignright" title="cocktails" src="http://www.techerator.com/wp-content/uploads/2011/11/cocktails1.jpg" alt="" width="234" height="66" />Yahoo recently announced its newest mix of HTML5, CSS3, and JavaScript tools, and believe it or not, Yahoo still knows how to bring decent services to the table. <a href="http://developer.yahoo.com/blogs/ydn/posts/2011/11/yahoo-announces-cocktails-%E2%80%93-shaken-not-stirred/">Cocktails</a> brings existing Yahoo! services like YQL and YUI together with HTML5/JavaScript tools for rapid multi-device and multi-platform development. The most impressive aspect of Cocktails is its integration with Yahoo!&#8217;s Mojito, which allows JavaScript functionality for your apps even if the device has JavaScript disabled by running scripts on the server side. Yahoo! isn&#8217;t dead yet!</p>
<h2>2.  <a href="http://www.sproutcore.com/">SproutCore</a></h2>
<p><a href="http://www.sproutcore.com/">SproutC</a><a href="http://www.sproutcore.com/"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-full wp-image-15824 alignright" title="sproutcore" src="http://www.techerator.com/wp-content/uploads/2011/11/sproutcore.png" alt="" width="210" height="46" /></a><a href="http://www.sproutcore.com/">ore</a> is an open-source set of tools built using MVC (model-view-controller) architecture for creating universally accessible, scalable, and speeding applications. The team that created SproutCore offers many easy-to-follow guides for beginners, and the well-established community of developers make troubleshooting relatively pain-free. Of the frameworks I&#8217;ve encountered, SproutCore is the most polished&#8230;and it doesn&#8217;t hurt that it&#8217;s free.</p>
<h2>3. <a href="http://www.limejs.com/">LimeJS</a></h2>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-full wp-image-15825 alignright" title="limeJS" src="http://www.techerator.com/wp-content/uploads/2011/11/limeJS1.png" alt="" width="190" height="54" />If your forte is creating web-based games, <a href="http://www.limejs.com/">LimeJS</a> is a framework for rapid development of native-experience touchscreen apps for mobile devices or desktop browsers. This simple but flexible tool set is free to download and takes the headaches out of creating rich cross-platform user experiences with standardized code and solid community support.</p>
<h2>4. <a href="http://www.sencha.com/">Sencha</a></h2>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-medium wp-image-15823 alignright" title="sencha_logo" src="http://www.techerator.com/wp-content/uploads/2011/11/sencha_logo-300x125.png" alt="" width="202" height="85" />The only non-free framework on this list, <a href="http://www.sencha.com/">Sencha</a> is meant for industrial strength app development. Sencha offers an array of tools like a visual designer, rich spreadsheet support, CSS3 animator, and skinning to put a unique look and feel to your application. The Sencha API allows for rapid development for touchscreens or standard desktops, and while it isn&#8217;t free to download, Sencha provides professional support and training for its customers. User interface, app functionality, and data connectivity &#8212; Sencha does it all.</p>
<h2>Conclusion</h2>
<p>Will HTML5/JavaScript bring about the downfall .NET/WPF app development? Not anytime soon. But if you&#8217;re looking to bring your application to as many users and devices as possible, HTML5/JS is your ticket to fame. These frameworks will get your started, and if you have a favorite not listed here (there are many), please leave it in the comments.</p>
<p><a href="http://www.techerator.com/2011/11/four-html5-and-javascript-frameworks-to-jump-start-your-app-development/">Four HTML5 and JavaScript Frameworks To Jump-start Your App Development</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2012/02/html5-and-the-future-of-mobile/' rel='bookmark' title='HTML5 and the Future of Mobile Apps and Gaming'>HTML5 and the Future of Mobile Apps and Gaming</a></li>
<li><a href='http://www.techerator.com/2011/11/adobe-kills-flash-for-mobile-in-favor-of-html5/' rel='bookmark' title='Adobe kills Flash for mobile in favor of HTML5'>Adobe kills Flash for mobile in favor of HTML5</a></li>
<li><a href='http://www.techerator.com/2011/06/googles-swiffy-converts-swf-files-to-html5/' rel='bookmark' title='Google&#8217;s Swiffy Converts SWF Files to HTML5'>Google&#8217;s Swiffy Converts SWF Files to HTML5</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/11/four-html5-and-javascript-frameworks-to-jump-start-your-app-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Domainr Makes Domain Search (Almost) Pain-Free</title>
		<link>http://www.techerator.com/2011/11/domainr-makes-domain-search-almost-pain-free/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=domainr-makes-domain-search-almost-pain-free</link>
		<comments>http://www.techerator.com/2011/11/domainr-makes-domain-search-almost-pain-free/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 15:00:26 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15106</guid>
		<description><![CDATA[If you&#8217;re starting a new web-based project, searching for suitable domains can be the most frustrating part. Heck, domain names are so important to the success of your venture that many people wait to name their product until they know which domains are available. Domainr helps to ease the pain of this process. Domainr is [...]<p><a href="http://www.techerator.com/2011/11/domainr-makes-domain-search-almost-pain-free/">Domainr Makes Domain Search (Almost) Pain-Free</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/05/google-tip-how-to-search-within-a-specific-website-domain-or-news-source/' rel='bookmark' title='Google Tip: How to Search Within a Specific Website, Domain, or News Source'>Google Tip: How to Search Within a Specific Website, Domain, or News Source</a></li>
<li><a href='http://www.techerator.com/2009/08/how-to-add-an-os-x-10-5-computer-to-a-windows-domain/' rel='bookmark' title='How to Add an OS X 10.5 Computer to a Windows Domain'>How to Add an OS X 10.5 Computer to a Windows Domain</a></li>
<li><a href='http://www.techerator.com/2009/08/think-youre-using-the-best-search-engine-try-a-blind-search-test/' rel='bookmark' title='Think You&#8217;re Using the Best Search Engine? Try a Blind Search Test'>Think You&#8217;re Using the Best Search Engine? Try a Blind Search Test</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re starting a new web-based project, searching for suitable domains can be the most frustrating part. Heck, domain names are so important to the success of your venture that many people wait to name their product until they know which domains are available. <a href="http://domai.nr/">Domainr</a> helps to ease the pain of this process.</p>
<div id="attachment_15136" class="wp-caption aligncenter" style="width: 595px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-large wp-image-15136 " title="domainr" src="http://www.techerator.com/wp-content/uploads/2011/10/domainr-585x259.png" alt="" width="585" height="259" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Domainr&#39;s clean search interface, complete with innuendo.</p></div>
<p>Domainr is an interesting tool for domain search that goes through almost every top-level extension out there and lets you know if your query is available in some form, <a href="http://dictionary.reference.com/browse/discombobulate">discombobulated</a> as it may be. A single search for a root word returns a listing of several possibilities from which to choose, and Domainr does its best to indicate whether the options are available or already taken. Probably my favorite part is that the search returns possible short URLs for your service.</p>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-15146" title="domainr-search" src="http://www.techerator.com/wp-content/uploads/2011/10/domainr-search1-e1318546295752-300x157.png" alt="" width="300" height="157" />If a particular domain is available, Domainr gives you several options for registering it and probably collects a little bit of referral coin in the process. If the domain is taken, Domainr provides a link to &#8220;Make an offer&#8221; which is facilitated by <a href="http://www.sedo.com">Sedo</a>, a domain brokerage company. Now, I&#8217;ve never worked with a company like Sedo before, but I&#8217;ve attempted to negotiate a domain purchase on my own and got the guy as low as $45,000 &#8212; I can only imagine Sedo would do a better job. If the domain really matters to you, it is probably wise to go to the professionals.</p>
<p>If you&#8217;re in the market for a domain, search quickly with Domainr. Chances are quite good that your desired domain won&#8217;t be available, but Domainr does a great job of offering alternatives, and sometimes the interesting spelling techniques can lead to an inspired name that is completely different than your first choice. Oh, and don&#8217;t forget &#8212; they have an <a href="http://itunes.com/app/domainr">iPhone app</a>, a lifesaver for those who tend to get inspired in the bar.</p>
<p>Good luck out there.</p>
<p><a href="http://www.techerator.com/2011/11/domainr-makes-domain-search-almost-pain-free/">Domainr Makes Domain Search (Almost) Pain-Free</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/05/google-tip-how-to-search-within-a-specific-website-domain-or-news-source/' rel='bookmark' title='Google Tip: How to Search Within a Specific Website, Domain, or News Source'>Google Tip: How to Search Within a Specific Website, Domain, or News Source</a></li>
<li><a href='http://www.techerator.com/2009/08/how-to-add-an-os-x-10-5-computer-to-a-windows-domain/' rel='bookmark' title='How to Add an OS X 10.5 Computer to a Windows Domain'>How to Add an OS X 10.5 Computer to a Windows Domain</a></li>
<li><a href='http://www.techerator.com/2009/08/think-youre-using-the-best-search-engine-try-a-blind-search-test/' rel='bookmark' title='Think You&#8217;re Using the Best Search Engine? Try a Blind Search Test'>Think You&#8217;re Using the Best Search Engine? Try a Blind Search Test</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/11/domainr-makes-domain-search-almost-pain-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Challenger Appears: Chime.in Enters the Social Networking Ring</title>
		<link>http://www.techerator.com/2011/11/a-challenger-appears-chime-in-enters-the-social-networking-ring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-challenger-appears-chime-in-enters-the-social-networking-ring</link>
		<comments>http://www.techerator.com/2011/11/a-challenger-appears-chime-in-enters-the-social-networking-ring/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 20:23:57 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.techerator.com/?p=15287</guid>
		<description><![CDATA[Bill Gross has been getting a lot of press lately. The serial entrepreneur and CEO of UberMedia masterminded keyword search advertising in the heydey of the dotcom era, a system Google has perfected to earn billions, but Gross now believes he&#8217;s onto a bright idea in the social network space &#8212; with Chime.in. In a territory saturated with household [...]<p><a href="http://www.techerator.com/2011/11/a-challenger-appears-chime-in-enters-the-social-networking-ring/">A Challenger Appears: Chime.in Enters the Social Networking Ring</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>

<strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/07/enter-social-networking-nirvana-with-flotzam-facebook-twitter-digg-and-more/' rel='bookmark' title='Enter Social Networking Nirvana with Flotzam (Facebook, Twitter, Digg, and more)'>Enter Social Networking Nirvana with Flotzam (Facebook, Twitter, Digg, and more)</a></li>
<li><a href='http://www.techerator.com/2011/06/make-your-searches-more-social-with-wajam/' rel='bookmark' title='Make Your Searches More Social With Wajam'>Make Your Searches More Social With Wajam</a></li>
<li><a href='http://www.techerator.com/2010/11/hybrid-value-chain-opening-new-markets-to-for-profits-and-social-enterprises/' rel='bookmark' title='Hybrid Value Chain: Opening New Markets to For-Profits and Social Enterprises'>Hybrid Value Chain: Opening New Markets to For-Profits and Social Enterprises</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techerator.com/wp-content/uploads/2011/10/chime.in_.png"><img class="size-full wp-image-15288 alignright" style="border-style: initial; border-color: initial;;  float: right; padding: 4px; margin: 0 0 2px 7px;" title="chime.in" src="http://www.techerator.com/wp-content/uploads/2011/10/chime.in_.png" alt="" width="266" height="147" /></a></p>
<p>Bill Gross has been getting a lot of press lately. The serial entrepreneur and CEO of <a href="http://www.ubermedia.com/">UberMedia</a> masterminded keyword search advertising in the heydey of the dotcom era, a system Google has perfected to earn billions, but Gross now believes he&#8217;s onto a bright idea in the social network space &#8212; with <a href="http://chime.in">Chime.in</a>. In a territory saturated with household names like Facebook, Twitter, and Google+, Gross plans to set Chime.in apart by filtering the noise.</p>
<p>Chime.in, which made its public debut on October 18, refers to itself as an &#8220;interest network,&#8221; but what exactly makes it different from the social networks we already use? Gross seems to be aware the just another social network isn&#8217;t going to be a winner, but he&#8217;s developed an idea that may cause some ripples. At a glance, Chime.in is the same as any other social network with the ability to post status updates up to 4,000 characters (called &#8220;chimes&#8221;) and share media publicly or privately with friends. What&#8217;s causing some to take notice is that Chime.in allows the users to be in full control of the advertisements displayed on their pages and in their posts. In fact, Gross plans to <a href="http://allthingsd.com/20111017/bill-gross-new-social-network-chime-in-will-pay-people-to-use-it/">split the proceeds</a> from ad revenue 50/50 with the users. Whaaaat?</p>
<div class="mceTemp mceIEcenter" style="text-align: center;">
<dl id="attachment_15293" class="wp-caption aligncenter" style="width: 497px;">
<dt class="wp-caption-dt"><a href="http://www.techerator.com/wp-content/uploads/2011/10/chimein-screen.png"><img class="size-large wp-image-15293 " title="chimein-screen" src="http://www.techerator.com/wp-content/uploads/2011/10/chimein-screen-487x400.png" alt="" width="487" height="400" /></a></dt>
<dd class="wp-caption-dd">E! Online profile on Chime.in</dd>
</dl>
</div>
<p>Paid social networking? Really? Oh boy. If you thought Facebook was addicting, now imagine getting a paycheck for using it. But will Chime.in be able to lure the masses with financial incentive? I personally doubt it, because nothing makes a website &#8220;uncool&#8221; more quickly than pasted everywhere (you&#8217;ve seen <a href="http://www.imdb.com/title/tt1285016/">Social Network</a>, right?). So, what exactly can Chime.in offer its users? According to Gross, content more relevant your interests. Hmmm&#8230;color me skeptical.</p>
<p>When you first start your account, you&#8217;re asked to check a few boxes to help decide the news bits you&#8217;ll receive, but despite my best efforts, I still have Ashton Kutcher poisoning my &#8220;chimeline&#8221; &#8212; perhaps I&#8217;m in denial, and Kutcher really IS relevant to my interests. For the most part, the Chime.in is Google+, but with the exception that I have almost no confidence in the effort &#8212; I&#8217;m probably not going to put too much time into a social network that I honestly don&#8217;t think will be around in 12 months.</p>
<div id="attachment_15298" class="wp-caption aligncenter" style="width: 484px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://www.techerator.com/wp-content/uploads/2011/10/chimescreen2.jpg"><img class="size-large wp-image-15298 " title="chimescreen2" src="http://www.techerator.com/wp-content/uploads/2011/10/chimescreen2-474x400.jpg" alt="" width="474" height="400" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Dude, why are you here?</p></div>
<p>Some companies have already committed to providing content to Chime.in, like <a href="http://chime.in/community/58377761366495232">E! Online</a> and Disney, but there seems to be very little disparity between the company profiles of this new social network and the well-established communities already present on Facebook. Am I missing something here?</p>
<p>Maybe I&#8217;m not being totally fair, because the one nice thing is that you can sign into Chime.in with your existing Facebook or Twitter accounts. I should also note that I&#8217;m pleased to see more competition for Facebook, because Zuckerberg&#8217;s service only gets better as he sees ideas to borrow.</p>
<p>Is Chime.in worth your time? At this point, I say no. I haven&#8217;t had a chance to try the mobile apps, but Chime.in is so feature-poor that I&#8217;m not sure I need to. Is Chime.in poised to be a Facebook or Twitter killer? Not yet. From my first impressions I would guess not ever.</p>
<p>Chime.in has advertised itself as a replacement for social networks (Facebook, Twitter) and bookmarking sites (Digg, Reddit), but at launch it looks like a desperate attempt at a Google+ clone. If that piques your interest, Chime away.</p>
<p><a href="http://www.techerator.com/2011/11/a-challenger-appears-chime-in-enters-the-social-networking-ring/">A Challenger Appears: Chime.in Enters the Social Networking Ring</a> is a post from <a href="http://www.techerator.com">Techerator.com</a>.</p>
<p><strong>Related posts:</strong><ol>
<li><a href='http://www.techerator.com/2010/07/enter-social-networking-nirvana-with-flotzam-facebook-twitter-digg-and-more/' rel='bookmark' title='Enter Social Networking Nirvana with Flotzam (Facebook, Twitter, Digg, and more)'>Enter Social Networking Nirvana with Flotzam (Facebook, Twitter, Digg, and more)</a></li>
<li><a href='http://www.techerator.com/2011/06/make-your-searches-more-social-with-wajam/' rel='bookmark' title='Make Your Searches More Social With Wajam'>Make Your Searches More Social With Wajam</a></li>
<li><a href='http://www.techerator.com/2010/11/hybrid-value-chain-opening-new-markets-to-for-profits-and-social-enterprises/' rel='bookmark' title='Hybrid Value Chain: Opening New Markets to For-Profits and Social Enterprises'>Hybrid Value Chain: Opening New Markets to For-Profits and Social Enterprises</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techerator.com/2011/11/a-challenger-appears-chime-in-enters-the-social-networking-ring/feed/</wfw:commentRss>
		<slash:comments>0</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
Database Caching 48/3058 queries in 1.080 seconds using disk: basic

Served from: www.techerator.com @ 2012-05-17 11:40:49 -->
