<?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>Techorials</title>
	<atom:link href="http://www.techorials.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techorials.com</link>
	<description>converting non-tech to high-tech, one at a time</description>
	<lastBuildDate>Wed, 01 Dec 2010 08:28:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Minimal VPS Installation</title>
		<link>http://www.techorials.com/general/minimal-vps-installation/</link>
		<comments>http://www.techorials.com/general/minimal-vps-installation/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 21:44:33 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=393</guid>
		<description><![CDATA[My server from YardVPS was already pretty darn close to a minimal installation. There were few more things left to do however: Update the server Install Midnight Commander (personally can't live without this thing!) Stop and disable httpd (the Apache web server) Stop and disable sendmail (mail server, ugh, i really don't trust those, don't [...]]]></description>
			<content:encoded><![CDATA[<p>My server from YardVPS was already pretty darn close to a minimal installation. There were few more things left to do however:</p>
<ul>
<li>Update the server</li>
<li>Install Midnight Commander (personally can't live without this thing!)</li>
<li>Stop and disable httpd (the Apache web server)</li>
<li>Stop and disable sendmail (mail server, ugh, i really don't trust those, don't want someone to hack and start spamming on your behalf! You can always set your mail to be handled by Google Apps)</li>
<li>Stop and disable saslauthd (do not need the authentication service)</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">yum -y update
yum -y install mc
<a href="http://www.ss64.com/nt/echo.html"><span class="kw3">echo</span></a> export LANG=C &gt;&gt; .bash_profile
service httpd stop
service sendmail stop
service saslauthd stop
chkconfig httpd off
chkconfig sendmail off
chkconfig saslauthd off</pre></div></div>

<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Minimal VPS Installation" url="http://www.techorials.com/general/minimal-vps-installation/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/general/minimal-vps-installation/feed/</wfw:commentRss>
		<slash:comments>1344</slash:comments>
		</item>
		<item>
		<title>Client and Server Side Cloaking</title>
		<link>http://www.techorials.com/general/client-and-server-side-cloaking/</link>
		<comments>http://www.techorials.com/general/client-and-server-side-cloaking/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:57:05 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=388</guid>
		<description><![CDATA[What is cloaking? Cloaking is the method of showing different content to user based on various factors. Examples of Black-Hat SEO cloaking: Search engine cloaking (serving content that ranks for a keyword to the engines in order to lure visitors in, but then redirect the visitor to another page or show them an offer for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is cloaking?</strong></p>
<p>Cloaking is the method of showing different content to user based on various factors.</p>
<p><strong>Examples of Black-Hat SEO cloaking:</strong></p>
<ul>
<li>Search engine cloaking (serving content that ranks for a keyword to the engines in order to lure visitors in, but then redirect the visitor to another page or show them an offer for a product and/or service)
<ul>
<li>This particular technique is  against Google's webmaster guidelines and can really annoy visitors</li>
</ul>
</li>
</ul>
<p><strong>Examples of White-Hat SEO cloaking:</strong></p>
<ul>
<li>Showing slightly different content based on
<ul>
<li>the visitor's location</li>
<li>the visitor's screen size</li>
</ul>
</li>
<li>Banned users can be completely redirected or just straight up refused service</li>
</ul>
<p><strong>Client Side Cloaking Example</strong></p>
<p>Put this code between the &lt;HEAD&gt; &lt;/HEAD&gt; header tags:</p>
<pre class="html">&lt;script type="text/javascript"&gt;
&lt;!--
function delayer() {
  window.location = "http://redirect-address"
}
//--&gt;
&lt;/script&gt;
</pre>
<p>Put this in your &lt;BODY&gt; tag:</p>
<pre class="html">&lt;body onLoad="setTimeout('redirectme()',Â  1000)"&gt;
</pre>
<p>The number 1000 indicates time in milliseconds to wait before the page is redirected - set it to 0 to redirect immediately after the page is loaded.</p>
<p><strong>Server Side Cloacking Example:</strong></p>
<p>Put this somewhere in the header of your PHP file:</p>
<pre class="php">&lt;?php

$ref = $_SERVER['HTTP_REFERER'];

if (FALSE) // ((strstr($ref, 'google') !== FALSE) &amp;&amp; (strstr($ref, 'q=') !== FALSE))
{
  echo '&lt;meta http-equiv="refresh" content="0;url=http://redirect-address"&gt;';
  echo "\n";
  echo '&lt;/head&gt;';
  echo '&lt;body&gt;&lt;/body&gt;&lt;/html&gt;';
  exit(0);
}

?&gt;
</pre>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Client and Server Side Cloaking" url="http://www.techorials.com/general/client-and-server-side-cloaking/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/general/client-and-server-side-cloaking/feed/</wfw:commentRss>
		<slash:comments>1333</slash:comments>
		</item>
		<item>
		<title>Intro to the Linux Command Line</title>
		<link>http://www.techorials.com/general/intro-to-the-linux-command-line/</link>
		<comments>http://www.techorials.com/general/intro-to-the-linux-command-line/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 05:09:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=364</guid>
		<description><![CDATA[The power of Linux lies in its ability to be infinitely modified to suit the individual user. To do this, you'll need to master the command line, a daunting task for most, but don't worry, Techorials is here to help! The command line is the text-based interface allowing you to talk directly to the computer [...]]]></description>
			<content:encoded><![CDATA[<p>The power of Linux lies in its ability to be infinitely modified to suit the individual user. To do this, you'll need to master the command line, a daunting task for most, but don't worry, Techorials is here to help!</p>
<p>The command line is the text-based interface allowing you to talk directly to the computer hardware using a set of commands you'll quickly master. By knowing these commands, you'll be able to start any program, check hardware status information, see any and all files on your computer, and manipulate those files in any way imaginable. Some functions are only accessable through the command line, making it that much more valuable to master.</p>
<p>To begin, fire up whichever terminal client came with your Linux distribution. Konsole, Gnome-Terminal, and others. XTerm is almost always available too.</p>
<p>When you open the terminal client, you'll be met with a mostly-blank window, containing a hash mark (pound sign) or dollar sign, followed by a blinking box, or line-shaped marker. This is called a prompt, since the aforementioned mark is prompting you to enter a command.</p>
<p>Start with a fun, simple command. Enter "whoami" and look at the return information. The terminal should return your username, or the name you log in to the system with, and then prompt you for another password.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/whoami.jpg" alt="whoami"></center></p>
<p>&nbsp;</p>
<p>All commands have a specified syntax, or an order in which you must construct the commands. The command is entered first, and generally followed by a modifier, called an option. Options change how the command is executed, and are usually preceeded by a hyphen. Commands often also include the name of the file or directory the command is operating on. Finished commands often look like the following:</p>
<p><em>command -option file</em></p>
<p>Some of the most commonly used commands are:</p>
<p><em>cp </em>- Copy, makes a duplicate of a file and moves it somewhere else. Syntax: <em>cp /path/to/original/file /path/to/copied/file</em></p>
<p><em>mv </em>- Move, does exactly what it says. Moves the targeted file from the original location to the new location. Same syntax as cp: <em>mv /path/to/original/file /path/to/moved/file</em></p>
<p><em>rm </em>- Remove, deletes the original file. Remember this: "rm is forever." Syntax: <em>rm /path/to/file</em></p>
<p><em>cd </em>- Change Directory, moves your position in the file system to the given location. Syntax: <em>cd /path/to/location</em></p>
<p><em>ls</em> - List, lists all the visible files in a directory. To execute this, just run it alone: <em>ls</em></p>
<p><em>mkdir</em> - Make Directory, makes a directory in the current location (shocking!), somewhat like creating a folder.</p>
<p>Finally, the all-important <em>sudo</em>. Sudo, or su, tells Linux to run the command you specify as if you were the super-user, or system administrator. Run this before a command, but be prepared to enter the superuser's password for confirmation. Note that this gives you access to literally <strong>everything</strong> in the system, so use it wisely, and sparingly if possible.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Intro to the Linux Command Line" url="http://www.techorials.com/general/intro-to-the-linux-command-line/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/general/intro-to-the-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>1516</slash:comments>
		</item>
		<item>
		<title>Techorials Mobile</title>
		<link>http://www.techorials.com/general/techorials-mobile/</link>
		<comments>http://www.techorials.com/general/techorials-mobile/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 07:30:28 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=358</guid>
		<description><![CDATA[Techorials.com is completely mobile-browser friendly. Viewing our website in your mobile-browser displays an entirely optimized web page that allows quick and lightweight navigation through our website. Best of all, the theme is optimized to fit your mobile devices screen size so you won't have to do any zooming or scrolling around in order to read [...]]]></description>
			<content:encoded><![CDATA[<p>Techorials.com is completely mobile-browser friendly. Viewing our website in your mobile-browser displays an entirely optimized web page that allows quick and lightweight navigation through our website. Best of all, the theme is optimized to fit your mobile devices screen size so you won't have to do any zooming or scrolling around in order to read a techorial! Currently, the following list of platforms is supported by our mobile site.</p>
<blockquote><p>Android, BlackBerry9500, BlackBerry9530, CUPCAKE, dream, iPhone, iPod, incognito, webOS, webmate</p></blockquote>
<p><center>A preview of our mobile site as it displays in safari on the iPhone is displayed below.<br />
&nbsp;<br />
<img src="http://www.techorials.com/wp-content/uploads/2010/06/mobile.jpg" alt="techorials mobile website" /></center><br />
&nbsp;<br />
Stay tuned in the coming days for an in-depth tutorial of how you can optimize your wordpress blog for mobile devices. In the meantime, please feel free to check us out on your smartphone and drop a bookmark so you can read our newest techorials on the go.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Techorials Mobile" url="http://www.techorials.com/general/techorials-mobile/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/general/techorials-mobile/feed/</wfw:commentRss>
		<slash:comments>1507</slash:comments>
		</item>
		<item>
		<title>Getting started in JavaScript, AJAX, and jQuery, Part 1</title>
		<link>http://www.techorials.com/code/getting-started-in-javascript-ajax-and-jquery-part-1/</link>
		<comments>http://www.techorials.com/code/getting-started-in-javascript-ajax-and-jquery-part-1/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 02:22:09 +0000</pubDate>
		<dc:creator>Kyle Russell</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=326</guid>
		<description><![CDATA[The rise of Ajax, or Asynchronous JavaScript and XML, has brought with it a movement towards more interactive Internet sites and the use of "web applications", without a need to install proprietary plug-ins. As nearly all personal computers and "smart" mobile devices now contain web browsers capable of showing JavaScript, those interested in making interactive sites and applications [...]]]></description>
			<content:encoded><![CDATA[<p>The rise of Ajax, or Asynchronous JavaScript and XML, has brought with it a movement towards more interactive Internet sites and the use of "web applications", without a need to install proprietary plug-ins. As nearly all personal computers and "smart" mobile devices now contain web browsers capable of showing JavaScript, those interested in making interactive sites and applications for a variety of platforms would do well to learn to use it, at least to the point where they can use the more advanced libraries that reduce the necessary workload.</p>
<p>In this article, I'll go over how to set up a working environment for programming in JavaScript. If you already have an understanding of these topics, Part 2 will start to go more in-depth with using Ajax and explaining how it works. It is recommended that you already have an understanding of HTML and CSS so that you sites will not only be interactive, but also appeal to users aesthetically.</p>
<p><span id="more-326"></span>When doing any kind of software development, the best thing to do first is to find a development environment that works best for you. Personally, for web development on Windows my personal favorite is <a href="http://notepad-plus-plus.org/">Notepad++</a>. It's got some great features, such as syntax highlighting and support for dozens of programming languages. However, if you don't feel like downloading Notepad++, you can always use good old-fashioned Notepad that comes installed on all Windows computers. However, when you need to save, you'll need to do three things. First, click Save As. Secondly, "Save as type:" should be set to "All Files". Finally, the file name should also include the file type. For example, in the following picture, I am saving a JavaScript file:</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/1.jpg" alt="saving" /></center><br />
&nbsp;<br />
Fortunately for Mac users, despite not having any programs to recommend I can say that the included Notepad program should work just as well as the included one for Windows. If any readers have one to recommend, please put it in the comments.</p>
<p>Now that you've got an environment to work in, let's get started with a basic script. Open your editor of choice and enter the following:<br />
&nbsp;<br />
<code><br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&nbsp;<br />
&lt;script type="text/javascript"&gt;<br />
document.write("Nothing to see here, just programming in JavaScript!");<br />
&lt;/script&gt;<br />
&nbsp;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code><br />
&nbsp;<br />
Now, save this as an HTML file (put .html at the end). Find where you saved the file (I like to save small projects like this to the desktop, at least temporarily), and right click the file. Navigate to "Open With..." and select your web browser of choice. If you did everything correctly, this should appear in you browser:</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/2.jpg" alt="preview" /></center><br />
&nbsp;<br />
And you're done! I'm sorry if this was a little trivial for some of you, but we have to get the beginners on track too!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Getting started in JavaScript, AJAX, and jQuery, Part 1" url="http://www.techorials.com/code/getting-started-in-javascript-ajax-and-jquery-part-1/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/code/getting-started-in-javascript-ajax-and-jquery-part-1/feed/</wfw:commentRss>
		<slash:comments>1468</slash:comments>
		</item>
		<item>
		<title>SSH into iPhone with WinSCP (Windows)</title>
		<link>http://www.techorials.com/mobile/iphone/ssh-into-iphone-with-winscp-windows/</link>
		<comments>http://www.techorials.com/mobile/iphone/ssh-into-iphone-with-winscp-windows/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 21:00:17 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=302</guid>
		<description><![CDATA[This Techorial is an introduction to SSH, and will teach you how to SSH into your iPhone, or other iDevice on a windows based machine. SSHing into your iDevice will allow you to directly edit OS files, or transfer files to your iDevice. So what is SSH? "Secure Shell or SSH is a network protocol [...]]]></description>
			<content:encoded><![CDATA[<p>This Techorial is an introduction to SSH, and will teach you how to SSH into your iPhone, or other iDevice on a windows based machine. SSHing into your iDevice will allow you to directly edit OS files, or transfer files to your iDevice.</p>
<p><strong>So what is SSH?</strong><br />
"Secure Shell or SSH is a network protocol that allows data to be exchanged using a secure channel between two networked devices.[1]  Used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plaintext, rendering them susceptible to packet analysis.[2]  The encryption used by SSH provides confidentiality and integrity of data over an insecure network, such as the Internet."</p>
<p><strong>SSH Requirements: </strong></p>
<ul>
<li>Jailbroken iDevice</li>
<li>Windows Based Machine</li>
<li>WinSCP Installed (download <a href="http://winscp.net/eng/download.php" target="_blank">here</a>)</li>
<li>Wireless Network - Windows Machine and iDevice Connected</li>
</ul>
<p><strong>SSHing:</strong></p>
<p>The first thing you must do before being able to SSH into your iPhone, is install OpenSSH onto your jailbroken device. Launch cydia, and then search for and install openSSH. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/IMG_0422.png" alt="openSSH" /></center><br />
&nbsp;<br />
OpenSSH does not have a springboard icon, so in able to activate or deactivate SSH, you will need an app like SBSettings or BossPrefs. Both can be found in cydia as well, I recommend using SBSettings if you do not already. Once you have a settings controller installed, enable SSH.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/IMG_0418.png" alt="SBSettings" /></center><br />
&nbsp;<br />
Next, navigate into your system settings and then open the "Auto-Lock" settings in the "general" tap. Set Auto-Lock to never. This will prevent your device from going to sleep while you are trying to SSH, preventing any errors.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/IMG_0419.png" alt="auto-lock" /></center><br />
&nbsp;<br />
While in settings, navigate to Wi-Fi Networks. Next to the network that your iDevice (and windows machine) is connected to, will be a blue arrow. Clicking this arrow will take you to the network details. Once you have found the details, take note of your IP Address, as this will be used to connect to your device.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/IMG_0421.png" alt="IP Address" /></center><br />
&nbsp;<br />
Turning to your Windows machine now, launch WinSCP. Fill in the following information in their respective fields.<br />
&nbsp;</p>
<blockquote><p>Host name: The IP Address you noted.<br />
Username: "Root"<br />
Password: "Alpine"</p></blockquote>
<p>"Root" and "Alpine" are the default username and password respectively, without quotes. All other settings should remain as-is.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/winscp.png" alt="WinSCP" /></center><br />
&nbsp;<br />
Pressing login will navigate through the connection process. If a request to "cahce" appears, select yes.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/login.png" alt="login_WinSCP" /></center><br />
&nbsp;<br />
Finally, you will be taken to the file manager screen. You have successfully SSHed into your iDevice.</p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/fileview1.png" alt="fileview_WinSCP" /></center><br />
&nbsp;<br />
Once you are done with SSH, remember to disable SSH and return your auto-lock settings to normal. If you forget, these two items will quickly drain your battery.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="SSH into iPhone with WinSCP (Windows)" url="http://www.techorials.com/mobile/iphone/ssh-into-iphone-with-winscp-windows/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/mobile/iphone/ssh-into-iphone-with-winscp-windows/feed/</wfw:commentRss>
		<slash:comments>1763</slash:comments>
		</item>
		<item>
		<title>The Future of Mobile Computing</title>
		<link>http://www.techorials.com/general/the-future-of-mobile-computing/</link>
		<comments>http://www.techorials.com/general/the-future-of-mobile-computing/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 04:42:39 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=285</guid>
		<description><![CDATA[Kyle, editor-in-chief of JTHeadlines and a very dear friend wrote about his take on the future of the mobile market. Here's a taste: "The mobile gadget realm is moving forward at an unprecedented pace (notice that I no longer say "smartphone", as Apple has shown that the tablet has finally caught on as a form [...]]]></description>
			<content:encoded><![CDATA[<p>Kyle, editor-in-chief of JTHeadlines and a very dear friend wrote about his take on the future of the mobile market. Here's a taste:</p>
<p>"The mobile gadget realm is moving forward at an unprecedented pace (notice that I no longer say "smartphone", as Apple has shown that the tablet has finally caught on as a form factor as well). Silicon Valley is now engaged in a high stakes race to the top, or in the case of RIM, a race to stay at the top for as long as possible.</p>
<p>While the first half of the decade brought us multimedia devices galore and smartphones for savvier business users, the release of the iPhone in 2007 proved that, when wrapped in an accessible software interface, creating an "all in one" device could lead to mainstream success.</p>
<p>Flash forward to today, where Google's Android platform is spreading from carrier to carrier like wildfire, Apple is doing its best to maintain its role as leader in innovation, and RIM and Microsoft alike struggle to remain relevant."</p>
<p>Read the full post <a title="A Dreamer's Look At Where Mobile Is Going" href="http://jtheadlines.blogspot.com/2010/06/dreamers-look-at-where-mobile-is-going.html">here.</a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="The Future of Mobile Computing" url="http://www.techorials.com/general/the-future-of-mobile-computing/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/general/the-future-of-mobile-computing/feed/</wfw:commentRss>
		<slash:comments>1202</slash:comments>
		</item>
		<item>
		<title>Custom ROMs</title>
		<link>http://www.techorials.com/mobile/android/custom-roms/</link>
		<comments>http://www.techorials.com/mobile/android/custom-roms/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 05:52:04 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=256</guid>
		<description><![CDATA[The beauty of GNU/Linux lies in its ability to be modified almost infinitely, to the specifications of the user. This functionality extends also to the Android operating system. Unfortunately, since only a handful of people possess the technical knowledge required to manipulate source code to fit user-specific needs. Rather than study up on the nuances [...]]]></description>
			<content:encoded><![CDATA[<p>The beauty of GNU/Linux lies in its ability to be modified almost infinitely, to the specifications of the user.</p>
<p>This functionality extends also to the Android operating system. Unfortunately, since only a handful of people possess the technical knowledge required to manipulate source code to fit user-specific needs. Rather than study up on the nuances of Java, JavaScript, Linux, and Bash, one may turn to pre-compiled ROM images, saving the end-user a lot of work.</p>
<p>Several developers have created their own versions of the stock ROM releases, along with countless custom theme packages, application and widget skins, and indeed, whole new applications usable only by users who have gained root access.</p>
<p>Benefits of custom ROM builds include, but are not limited to: the ability to theme or skin all or part of the Android user interface, access to previously unavailable functionality of the device hardware, processor overclocking, and modification of core system files via either an application or the now available command line interface.</p>
<p><strong>Installing a custom ROM:</strong></p>
<p><strong><span style="font-weight: normal;">First, you must find a ROM image that seems suitable to your tastes. The most popular ROMs for the Motorola Droid are Pete's Bugless Beast, JRummy's CyanogenMod, Team Chaos' Red Rum, and Chevy's Simply Stunning.</span></strong></p>
<p>When you download the ROM image, it will come in a zip file. This file is installed one of two ways: either by nandroid backup, or by the install from zip functions on SPRecovery and Clockwork Recovery.</p>
<p>Depending on the type of installation, you will have to do one of the following:</p>
<p><span style="text-decoration: underline;">Nandroid Backup Installation:</span></p>
<ol>
<li>Download the ROM zip file and unpack it to the /sdcard/nandroid/ location on your device.</li>
<li>Reboot the phone into recovery mode.</li>
<li>In ClockworkMod Recovery, select nandroid, Restore, and then the name of the backup you just unpacked.</li>
</ol>
<p><span style="text-decoration: underline;">Zip File Installation</span></p>
<ol>
<li>Download the ROM's zip file and move it to /sdcard/ on your device.</li>
<li>Reboot your phone into recovery mode.</li>
<li>In ClockworkMod Recovery, select "install zip from sdcard," then "choose zip from sdcard."</li>
<li>Select the zip file you wish to install, and let the installation continue until you are notified it has finished, whereupon you can reboot your phone and enjoy the new ROM.</li>
</ol>
<p>Installation of custom ROM builds can be expedited with the use of the ROM Manager application, which I strongly recommend.</p>
<p><span style="text-decoration: underline;">To install with ROM Manager:</span></p>
<ol>
<li>Open the ROM Manager application.</li>
<li>Navigate to and select Download ROM from the ROM Management list.</li>
<li>Select the ROM you wish to install, and then the version of that ROM you wish to install.</li>
<li>Allow the ROM to download (you will be notified of download progress in the notifications dropdown menu), then choose whether or not to make a backup of your current ROM, and whether or not to perform a factory reset and cache wipe prior to installation, when prompted.</li>
</ol>
<p style="text-align: center;"><img src="http://www.techorials.com/wp-content/uploads/2010/06/ROMz1.png" alt="ROMZ" /></p>
<p>It is important to note that some developers have included customization options from within the ROM Manager. For example, JRummy's CyanogenMod releases can be themed, or have applications added to or removed from them, from within the ROM Manager application.</p>
<p>When upgrading from one release to another, for example, from Android 2.1 "Eclair" to 2.2 "FroYo," it is important to use the factory reset and cache wipe tools, either when prompted by ROM Manager, or in recovery mode prior to installation. Users upgrading to a new ROM of the same version generally do not need to perform a factory reset and cache wipe, though it is sometimes necessary.</p>
<p>Enjoy your ROMs!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Custom ROMs" url="http://www.techorials.com/mobile/android/custom-roms/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/mobile/android/custom-roms/feed/</wfw:commentRss>
		<slash:comments>1648</slash:comments>
		</item>
		<item>
		<title>iPhone Quick Tip #3</title>
		<link>http://www.techorials.com/mobile/iphone/iphone-quick-tip-3/</link>
		<comments>http://www.techorials.com/mobile/iphone/iphone-quick-tip-3/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 11:13:56 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=207</guid>
		<description><![CDATA[If your iDevice ever freezes completely or locks up on a black screen, it is impossible to recover from it on-the-go unless you know how to do a hard reboot. Letting your iDevice's battery dissipate completely or plugging it into iTunes will also unfreeze it, however neither are necessary or practical. To reboot your iDevice [...]]]></description>
			<content:encoded><![CDATA[<p>If your iDevice ever freezes completely or locks up on a black screen, it is impossible to recover from it on-the-go unless you know how to do a hard reboot. </p>
<p>Letting your iDevice's battery dissipate completely or plugging it into iTunes will also unfreeze it, however neither are necessary or practical. To reboot your iDevice simply press and HOLD both the power button and the home button simultaneously. Your iDevice will power down. Keep holding both buttons and your iDevice will reboot. Once you see the apple logo, you device has begun powering up and you can release both buttons. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/iphonediagram.png" alt="iphone" /></center></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="iPhone Quick Tip #3" url="http://www.techorials.com/mobile/iphone/iphone-quick-tip-3/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/mobile/iphone/iphone-quick-tip-3/feed/</wfw:commentRss>
		<slash:comments>1694</slash:comments>
		</item>
		<item>
		<title>Increasing iDevice Battery Life</title>
		<link>http://www.techorials.com/mobile/iphone/increasing-idevice-battery-life/</link>
		<comments>http://www.techorials.com/mobile/iphone/increasing-idevice-battery-life/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 13:53:57 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.techorials.com/?p=206</guid>
		<description><![CDATA[The relatively short battery life apple has damned us with on our iDevice's poses a huge issue for heavy users. This techorial is geared toward helping users maximize the batter life on their iDevices for maximum usage! 1. Brightness - Nothing consumes more power than your big-ol' LCD screen. Turn it's brightness down when feasible [...]]]></description>
			<content:encoded><![CDATA[<p>The relatively short battery life apple has damned us with on our iDevice's poses a huge issue for heavy users. This techorial is geared toward helping users maximize the batter life on their iDevices for maximum usage!</p>
<p>1. Brightness - Nothing consumes more power than your big-ol' LCD screen. Turn it's brightness down when feasible and you will extend your battery life significantly. </p>
<p>2. Auto-Lock - While on the topic of your LCD and it's battery consumption, what better way to save your battery than to keep it off. Set your Auto-Lock time to one minute. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/autolock.jpg" alt="autolock" /></center><br />
&nbsp;</p>
<p>3. 3G - If you aren't streaming music, browsing YouTube, or surfing the web, you have no need for 3G. 3G consumes your battery much quicker than edge. Turn it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/3g.jpg" alt="3g" /></center><br />
&nbsp;</p>
<p>4. WiFi - Leaving it on will keep your phone constantly searching for networks. Turn it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/wifi.jpg" alt="wifi" /></center><br />
&nbsp;</p>
<p>5. Bluetooth - Our devices have limited to no uses for Bluetooth anyways unless jailbroken. If you aren't using it, then keep it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/bluelocation.jpg" alt="bluelocation" /></center><br />
&nbsp;</p>
<p>6. Location Services - (See Above) If you aren't using maps, a GPS app, or geo tagging, turn location services off. This will significantly reduce network communication, thus increasing battery life. </p>
<p>7. Push Notifications - By allowing apps to push notifications, you are allowing them to run background processes and notify you when an event occurs. This kills your batter. Turn it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/notifications.jpg" alt="notifications" /></center><br />
&nbsp;</p>
<p>8. Email Fetch - Having Fetch enabled means that you want your email app to check for new emails automatically on a preset interval. This allows the app to communicate with the network on it's own, which is unnecessary for the average user. Check for new emails manually. Turn it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/fetch.jpg" alt="fetch" /></center><br />
&nbsp;</p>
<p>9. SSH (Jailbroken Only) - If your iDevice is jailbroken and you have installed an SSH extension, make sure SSH is disabled when you are not using it. The best solution to keep it disabled is SBSettings. If you leave SSH on, you will literally be able to watch your battery meter drain. Keep it off. </p>
<p><center><img src="http://www.techorials.com/wp-content/uploads/2010/06/ssh_SSB.jpg" alt="ssh" /></center><br />
&nbsp;</p>
<p>Collectively, these items should help you manage your battery life for maximum usage. </p>
<p>If your device is jailbroken, I suggest using SBSettings to easily manage brightness, wifi toggles, network toggles, location toggles, and SSH toggles. More information on SBSettings can be found <a href="http://www.techorials.com/mobile/iphone/fully-utilize-your-jailbroken-device-apps-hacks/#sbsettings">here</a>. </p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_18410" title="Increasing iDevice Battery Life" url="http://www.techorials.com/mobile/iphone/increasing-idevice-battery-life/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.techorials.com/mobile/iphone/increasing-idevice-battery-life/feed/</wfw:commentRss>
		<slash:comments>1556</slash:comments>
		</item>
	</channel>
</rss>

