<?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>Cubicle Generation &#187; Nuri Hodges</title>
	<atom:link href="http://cubiclegeneration.com/author/inurinternet/feed" rel="self" type="application/rss+xml" />
	<link>http://cubiclegeneration.com</link>
	<description>omgz cubicles</description>
	<lastBuildDate>Mon, 02 Jan 2012 23:09:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Setting Up SSL Certificates On PHP Fog Apps</title>
		<link>http://cubiclegeneration.com/cloud-services/setting-up-ssl-certificates-on-php-fog-apps</link>
		<comments>http://cubiclegeneration.com/cloud-services/setting-up-ssl-certificates-on-php-fog-apps#comments</comments>
		<pubDate>Mon, 02 Jan 2012 23:09:34 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Cloud Services]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP Fog]]></category>
		<category><![CDATA[phpfog.com]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=427</guid>
		<description><![CDATA[Let me tell you, it was something of an endeavor setting up an SSL certificate on a PHP Fog application, mostly due to lack of (obvious) documentation, but their technical support was extremely fast and helpful, so we were able to get through the issues quickly. Here&#8217;s a little step-by-step write up for those of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fcloud-services%2Fsetting-up-ssl-certificates-on-php-fog-apps"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fcloud-services%2Fsetting-up-ssl-certificates-on-php-fog-apps&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Let me tell you, it was something of an endeavor setting up an SSL certificate on a PHP Fog application, mostly due to lack of (obvious) documentation, but their technical support was extremely fast and helpful, so we were able to get through the issues quickly. Here&#8217;s a little step-by-step write up for those of you who might still be in the dark about the whole SSL certificate installation process.</p>
<p>First of all, be ready to fork over $20 per month to enable the ability to attach an SSL certificate to your PHP Fog application. (C&#8217;mon guys, really? I get that IPs are limited, and Amazon&#8217;s ELB has a price too, but there&#8217;s got to be a better and more cost effective way to do this.)</p>
<p>Second, you&#8217;re going to want to log into a computer with OpenSSL installed, so that you can generate the private key to sign your Certificate Request (CSR) file. Run the following command to generate the private key, and be sure to not use a PEM passphrase:</p>
<p><code>openssl genrsa -out phpfog.key 2048</code></p>
<p>Now, we are going to generate the Certificate Request. Run the following command to generate the CSR file, using <em>www.yourdomain.com</em> or <em>*.yourdomain.com</em> for the &#8220;Common Name&#8221; input when it prompts you:</p>
<p><code>openssl req -new -key www.reconapi.com.key -out phpfog.csr</code></p>
<p>You can now use this .CSR file to generate your SSL certificate from your provider. I used a Comodo PositiveSSL certificate from NameCheap, which ran me a grand total of $8.95 &#8230; however they&#8217;re currently running a <a href="https://www.namecheap.com/ssl-certificates/exclusive-positive-ssl-offer.aspx?aff=26450" title="$1.99 PositiveSSL Certificate Offer" target="_blank">promotion offering PositiveSSL certificates for $1.99 with the registration or transfer of a domain name</a>. (affiliate link)</p>
<p>Once you generate your SSL certificate with your .CSR file, your provider will make the certificate available for download via e-mail or their website. Be sure to download all related certificates, including the intermediary certificate if there is one available.</p>
<p>Now, navigate to your application&#8217;s dashboard on PHP Fog, and select the SSL tab from the sidebar. You are going to be filling out two (possibly three) text boxes with relevant certificate information:</p>
<ul>
<li>Paste the contents of www_yourdomain_com.crt into the <strong>Signed Certificate</strong> text box.</li>
<li>Paste the contents of phpfog.key into the box labeled <strong>RSA or DSA Private Key Used to Sign the Certificate</strong>.</li>
<li>If you received an intermediary certificate, check the box &#8220;Use intermediate certificate&#8221; and paste the contents of the intermediary certificate file into the text box that appears.</li>
</ul>
<p>You should be good to go, just click the orange &#8216;Enable SSL&#8217; button to proceed! Remember, you will have to add some sort of redirection to your application, it won&#8217;t automatically forward your visitors to the proper secure pages. I tried using mod_rewrite, however %{HTTPS} does not seem to work, so here&#8217;s a little PHP snippet that works instead:</p>
<p><code>    if($_SERVER['HTTP_X_FORWARDED_PROTO'] !== 'https') {<br />
        header("HTTP/1.1 301 Moved Permanently");<br />
        header("Location: https://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}"); exit;<br />
    }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/cloud-services/setting-up-ssl-certificates-on-php-fog-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount Box.net Storage As Network Drive</title>
		<link>http://cubiclegeneration.com/cloud-services/mount-box-net-storage-as-network-drive</link>
		<comments>http://cubiclegeneration.com/cloud-services/mount-box-net-storage-as-network-drive#comments</comments>
		<pubDate>Fri, 09 Dec 2011 06:23:23 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Cloud Services]]></category>
		<category><![CDATA[Box.net]]></category>
		<category><![CDATA[Cloud Storage]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=424</guid>
		<description><![CDATA[Box.net has been running a recent promotion giving away a FREE 50GB of cloud storage if you sign up for your account via one of their iOS applications. Naturally, this was very tempting. However, after signing up I realized there was no easy way to upload mass amounts of files. Well, a little Google magic [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fcloud-services%2Fmount-box-net-storage-as-network-drive"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fcloud-services%2Fmount-box-net-storage-as-network-drive&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Box.net has been running a recent promotion giving away a FREE 50GB of cloud storage if you sign up for your account via one of their iOS applications. Naturally, this was very tempting. However, after signing up I realized there was no easy way to upload mass amounts of files. Well, a little Google magic and I had a solution to make the newly acquired 50GB &#8220;cloud drive&#8221; mount as a network drive and be available through Windows Explorer!</p>
<ul>
<li>Mount Network Drive > Specify an alternate network location</li>
<li>Enter <strong>https://www.box.net/dav</strong> in the &#8220;Internet or network address&#8221; field</li>
<li>Once you click next, you will be prompted to enter your box.net credentials. After you enter your username and password and successfully log in, name your &#8220;Network Drive&#8221; and you&#8217;re good to go!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/cloud-services/mount-box-net-storage-as-network-drive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset the Root MySQL Password on Ubuntu 10.04</title>
		<link>http://cubiclegeneration.com/linux-help/reset-the-root-mysql-password-on-ubuntu-10-04</link>
		<comments>http://cubiclegeneration.com/linux-help/reset-the-root-mysql-password-on-ubuntu-10-04#comments</comments>
		<pubDate>Mon, 17 Oct 2011 23:12:35 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Linux Help]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Server Administrator]]></category>
		<category><![CDATA[Systems Administrator]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=412</guid>
		<description><![CDATA[It&#8217;s a commonality among sleep-deprived developers to set up a sandbox at 3AM and wake up not remembering the passwords that were set before the retreat into la-la land. Well, resetting the root user&#8217;s administrative password for MySQL is a little tedious, but it&#8217;s not impossible: sudo /etc/init.d/mysql stop sudo /usr/sbin/mysqld --skip-grant-tables --skip-networking &#038; You [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Freset-the-root-mysql-password-on-ubuntu-10-04"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Freset-the-root-mysql-password-on-ubuntu-10-04&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s a commonality among sleep-deprived developers to set up a sandbox at 3AM and wake up not remembering the passwords that were set before the retreat into la-la land. Well, resetting the root user&#8217;s administrative password for MySQL is a little tedious, but it&#8217;s not impossible:</p>
<ul>
<li><code>sudo /etc/init.d/mysql stop</code></li>
<li><code>sudo /usr/sbin/mysqld --skip-grant-tables --skip-networking &#038;</code><br />
	<em>You will now be able to log into MySQL as root with no password, since you have launched the MySQL daemon with the flag to skip the privilege index.</em></li>
<li><code>mysql -u root</code>
<ul>
<li><code>FLUSH PRIVILEGES;</code></li>
<li><code>SET PASSWORD FOR root@'localhost' = PASSWORD('password');</code></li>
<li><code>UPDATE mysql.user SET Password=PASSWORD('newpwd') WHERE User='root';</code></li>
<li><code>FLUSH PRIVILEGES;</code></li>
</ul>
</li>
<li><code>sudo /etc/init.d/mysql stop</code></li>
<li><code>sudo /etc/init.d/mysql start</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/linux-help/reset-the-root-mysql-password-on-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Git on Ubuntu 10.04</title>
		<link>http://cubiclegeneration.com/linux-help/installing-git-on-ubuntu-10-04</link>
		<comments>http://cubiclegeneration.com/linux-help/installing-git-on-ubuntu-10-04#comments</comments>
		<pubDate>Thu, 13 Oct 2011 22:22:59 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Linux Help]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=408</guid>
		<description><![CDATA[I&#8217;m positive there are other blog posts almost identical to this one, however since this blog serves for the purpose of posterity, I am going to post it as a reference regardless. In order to install Git (via command line) on Ubuntu 10.04, Lucid Lync, you must follow these steps: sudo aptitude build-dep git-core wget [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Finstalling-git-on-ubuntu-10-04"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Finstalling-git-on-ubuntu-10-04&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m positive there are other blog posts almost identical to this one, however since this blog serves for the purpose of posterity, I am going to post it as a reference regardless.</p>
<p>In order to install Git (via command line) on Ubuntu 10.04, Lucid Lync, you must follow these steps:</p>
<ul>
<li><code>sudo aptitude build-dep git-core</code></li>
<li><code>wget http://git-core.googlecode.com/files/git-1.7.7.tar.gz</code></li>
<li><code>tar xvzf git-1.7.7.tar.gz</code></li>
<li><code>cd git-1.7.7</code></li>
<li><code>./configure</code></li>
<li><code>make</code></li>
<li><code>sudo make install</code></li>
<li><code>git --version</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/linux-help/installing-git-on-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora via the Command Line on Ubuntu 10.04</title>
		<link>http://cubiclegeneration.com/linux-help/pandora-via-the-command-line-on-ubuntu-10-04</link>
		<comments>http://cubiclegeneration.com/linux-help/pandora-via-the-command-line-on-ubuntu-10-04#comments</comments>
		<pubDate>Fri, 07 Oct 2011 09:17:22 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Linux Help]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Pandora]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=403</guid>
		<description><![CDATA[I&#8217;ve been using a really great command line app to listen to Pandora on my laptop lately, it&#8217;s called Pianobar. You can install it by running the following commands: cd ~ sudo apt-get install build-essential sudo apt-get install libao-dev libmad0-dev libfaad-dev wget https://github.com/PromyLOPh/pianobar/tarball/master tar xvf Promy*.tar.gz cd Promy* make sudo make install That&#8217;s it! You&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Fpandora-via-the-command-line-on-ubuntu-10-04"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Fpandora-via-the-command-line-on-ubuntu-10-04&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been using a really great command line app to listen to Pandora on my laptop lately, it&#8217;s called <a href="http://github.com/PromyLOPh/pianobar" title="Pianobar" target="_blank">Pianobar</a>. You can install it by running the following commands:</p>
<p><code>cd ~<br />
sudo apt-get install build-essential<br />
sudo apt-get install libao-dev libmad0-dev libfaad-dev<br />
wget https://github.com/PromyLOPh/pianobar/tarball/master<br />
tar xvf Promy*.tar.gz<br />
cd Promy*<br />
make<br />
sudo make install</code></p>
<p>That&#8217;s it! You&#8217;ve installed Pianobar on Ubuntu 10.04, Lucid Lynx. Now just run <strong>pianobar</strong> to start the Pandora CLI app. Please refer to <strong>man pianobar</strong> for further usage instructions</p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/linux-help/pandora-via-the-command-line-on-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista/7 God Mode Shortcut</title>
		<link>http://cubiclegeneration.com/windows-2/windows-vista7-god-mode-shortcut</link>
		<comments>http://cubiclegeneration.com/windows-2/windows-vista7-god-mode-shortcut#comments</comments>
		<pubDate>Sun, 10 Jul 2011 23:35:45 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 7 Easter Eggs]]></category>
		<category><![CDATA[Windows Easter Eggs]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows Vista Easter Eggs]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=386</guid>
		<description><![CDATA[You&#8217;ve probably heard of this little easter egg before, but in case you haven&#8217;t, Microsoft offers a myriad of various administration tools that are only available in a hidden Easter Egg shortcut, the GodMode shortcut! It&#8217;s pretty easy to get access to Windows God Mode, here&#8217;s how: Create a new folder where you would like [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fwindows-2%2Fwindows-vista7-god-mode-shortcut"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fwindows-2%2Fwindows-vista7-god-mode-shortcut&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>You&#8217;ve probably heard of this little easter egg before, but in case you haven&#8217;t, Microsoft offers a myriad of various administration tools that are only available in a hidden Easter Egg shortcut, the GodMode shortcut!</p>
<p>It&#8217;s pretty easy to get access to Windows God Mode, here&#8217;s how:</p>
<ul>
<li>Create a new folder where you would like your God Mode folder to reside.</li>
<li>Rename the newly created folder to: <b>GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}</b></li>
<li>Your folder will change to a &#8220;Control Panel&#8221; looking icon, and its name will set to GodMode. You&#8217;re done!</li>
</ul>
<p>When you open the GodMode folder, you&#8217;ll be presented with a host of options, which all are a pretty granular version of your existing Windows Control Panel; however, there are new options to play with, and I&#8217;ll leave the discovery of those as an excercise for the reader.</p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/windows-2/windows-vista7-god-mode-shortcut/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOM Monster JavaScript Performance Utility</title>
		<link>http://cubiclegeneration.com/javascript/dom-monster-javascript-performance-utility</link>
		<comments>http://cubiclegeneration.com/javascript/dom-monster-javascript-performance-utility#comments</comments>
		<pubDate>Mon, 09 May 2011 01:48:35 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=365</guid>
		<description><![CDATA[DOM Monster is a neat little JavaScript performance testing library (cross-browser, cross-platform) that was envisioned by Amy Hoy and coded by Thomas Fuchs. When there are problems, DOM Monster will point them out to you, and even try to suggest a fix! Drag the (DOM Monster!) to your bookmarks bar, or visit the DOM Monster [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fjavascript%2Fdom-monster-javascript-performance-utility"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fjavascript%2Fdom-monster-javascript-performance-utility&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://cubiclegeneration.com/wp-content/uploads/2011/05/dom-monster.png"><img src="http://cubiclegeneration.com/wp-content/uploads/2011/05/dom-monster-300x84.png" alt="DOM Monster" title="DOM Monster" width="300" height="84" style="background: transparent" /></a></p>
<p>DOM Monster is a neat little JavaScript performance testing library (cross-browser, cross-platform) that was envisioned by Amy Hoy and coded by <a href="http://mir.aculo.us/" target="_blank">Thomas Fuchs</a>. When there are problems, DOM Monster will point them out to you, and even try to suggest a fix!</p>
<p>Drag the <a class="bookmarklet" href="javascript:(function(){var%20script=document.createElement('script');script.src='http://mir.aculo.us/dom-monster/dommonster.js?'+Math.floor((+new Date)/(864e5));document.body.appendChild(script);})()">(DOM Monster!)</a> to your bookmarks bar, or visit the <a href="http://mir.aculo.us/dom-monster/" target="_blank">DOM Monster website</a> for more informaiton.</p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/javascript/dom-monster-javascript-performance-utility/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MacPorts From Command Line</title>
		<link>http://cubiclegeneration.com/apple/installing-macports-from-command-line</link>
		<comments>http://cubiclegeneration.com/apple/installing-macports-from-command-line#comments</comments>
		<pubDate>Wed, 13 Apr 2011 08:00:25 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Darwin]]></category>
		<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[MacPorts]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=346</guid>
		<description><![CDATA[Well, installing MacPorts is tedious itself, and can be especially annoying to manage when you have to do it on (several) remote systems. Here&#8217;s how you can perform the meticulous task completely from the command line: Log in via SSH, or if you&#8217;re doing it from the system itself, open Terminal. Download MacPorts from their [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fapple%2Finstalling-macports-from-command-line"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fapple%2Finstalling-macports-from-command-line&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Well, installing MacPorts is tedious itself, and can be especially annoying to manage when you have to do it on (several) remote systems. Here&#8217;s how you can perform the meticulous task completely from the command line:</p>
<ul>
<li>Log in via SSH, or if you&#8217;re doing it from the system itself, open Terminal.</li>
<li>
		Download MacPorts from their SVN repository using cURL:<br />
		<strong>curl -O http://svn.macports.org/repository/macports/downloads/MacPorts-1.7.1/MacPorts-1.7.1-10.5-Leopard.dmg</strong>
	</li>
<li>
		Mount the MacPorts disk image (dmg) using hdiutil:<br />
		<strong>hdiutil attach MacPorts-1.7.1-10.5-Leopard.dmg</strong>
	</li>
<li>
		Run the MacPorts installer from the mounted MacPorts dmg:<br />
		<strong>sudo installer -verbose -pkg /Volumes/MacPorts-1.7.1/MacPorts-1.7.1.pkg -target /</strong>
	</li>
<li>
		Update the MacPorts installation with the following command:<br />
		<strong>sudo port -v selfupdate</strong>
	</li>
</ul>
<p><u>Note:</u><br />
You can unmount the MacPorts disk image (dmg) by running the <strong>mount</strong> command by itself to retrieve the disk ID, then running the command: <strong>hdiutil detach -verbose /dev/disk[ID]</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/apple/installing-macports-from-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Amazon &amp; Blockbuster Apps (Android)</title>
		<link>http://cubiclegeneration.com/google-android/remove-amazon-blockbuster-apps-android</link>
		<comments>http://cubiclegeneration.com/google-android/remove-amazon-blockbuster-apps-android#comments</comments>
		<pubDate>Sun, 10 Apr 2011 19:58:55 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Google Android]]></category>
		<category><![CDATA[Amazon MP3]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Bloatware]]></category>
		<category><![CDATA[Blockbuster]]></category>
		<category><![CDATA[Crapware]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mobile Applications]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=322</guid>
		<description><![CDATA[You&#8217;ve probably never used either of the Amazon MP3 or Blockbuster mobile applications for Android, and you&#8217;ve also tried to uninstall them multiple times, and failed. Well, if you&#8217;ve rooted your Android phone, you can install an application called Titanium Backup (Free) that will allow you to uninstall ANY application on your phone, which includes [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Fgoogle-android%2Fremove-amazon-blockbuster-apps-android"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Fgoogle-android%2Fremove-amazon-blockbuster-apps-android&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>You&#8217;ve probably never used either of the Amazon MP3 or Blockbuster mobile applications for Android, and you&#8217;ve also tried to uninstall them multiple times, and failed. Well, if you&#8217;ve rooted your Android phone, you can install an application called Titanium Backup (Free) that will allow you to uninstall ANY application on your phone, which includes the bloatware applications Amazon MP3 and Blockbuster, as well as applications that might not have a visible icon. Be careful when deleting things, as you could delete required system applications and files!</p>
<p><strong>Instructions</strong></p>
<ul>
<li>Launch <u>Titanium Backup</u> and grant it root (Super User) access</li>
<li>Click on the <u>Backup/Restore</u> tab</li>
<li>Scroll to the unwanted application and select it</li>
<li>Choose the red &#8220;Un-install !&#8221; button and confirm your action</li>
</ul>
<div style="margin: 10px 0;"><a href="http://cubiclegeneration.com/wp-content/uploads/2011/04/titanium-backup-1.png"><img src="http://cubiclegeneration.com/wp-content/uploads/2011/04/titanium-backup-1.png" alt="Titanium Backup - Remove Bloatware" title="Titanium Backup - Remove Bloatware" width="200" class="alignnone size-full wp-image-331" style="float: left;" /></a><a href="http://cubiclegeneration.com/wp-content/uploads/2011/04/titanium-backup-21.png"><img src="http://cubiclegeneration.com/wp-content/uploads/2011/04/titanium-backup-21.png" alt="Titanium Backup - Remove Bloatware" title="Titanium Backup - Remove Bloatware" width="200"" class="alignnone size-full wp-image-333" style="float: right;" /></a><br style="clear: both;" /></div>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/google-android/remove-amazon-blockbuster-apps-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove a Network Device From Boot Sequence</title>
		<link>http://cubiclegeneration.com/linux-help/remove-a-network-device-from-boot-sequence</link>
		<comments>http://cubiclegeneration.com/linux-help/remove-a-network-device-from-boot-sequence#comments</comments>
		<pubDate>Wed, 09 Mar 2011 05:22:24 +0000</pubDate>
		<dc:creator>Nuri Hodges</dc:creator>
				<category><![CDATA[Linux Help]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Networking Devices]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Wireless Cards]]></category>

		<guid isPermaLink="false">http://cubiclegeneration.com/?p=314</guid>
		<description><![CDATA[I get really annoyed when I&#8217;m forced to start at a hanging boot message, even more so when it&#8217;s preventable and/or avoidable. Namely, the prompt the wireless card in my development box is causing to hang. Even though I never use my wireless network, this just started happening the other day. Anyways, disabling the device [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Fremove-a-network-device-from-boot-sequence"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcubiclegeneration.com%2Flinux-help%2Fremove-a-network-device-from-boot-sequence&amp;source=TYPELiFE&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I get really annoyed when I&#8217;m forced to start at a hanging boot message, even more so when it&#8217;s preventable and/or avoidable. Namely, the prompt the wireless card in my development box is causing to hang. Even though I never use my wireless network, this just started happening the other day. </p>
<p>Anyways, disabling the device from activating during the boot sequence was the first thing that popped into my head, and now I don&#8217;t sit and watch the Great March of Loading Dots while my computer boots. It&#8217;s a simple configuration file edit, and you&#8217;re good to go.</p>
<p><strong>/etc/sysconfig/network-scripts/ifcfg-wlan0</strong> (change)<br />
<code>ONBOOT=yes</code><br />
TO<br />
<code>ONBOOT=no</code></p>
<p><em>Note: If you want to disable another networking device besides wlan0, you can look for the appropriate configuration file to edit, just ls and peek at the contents of <strong>/etc/sysconfig/network-scripts</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://cubiclegeneration.com/linux-help/remove-a-network-device-from-boot-sequence/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

