<?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>Fauxzen.com &#187; Technology</title>
	<atom:link href="http://www.fauxzen.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fauxzen.com</link>
	<description>Incoherent Ramblings in basic form</description>
	<lastBuildDate>Thu, 02 Feb 2012 17:36:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Resetting MySQL root password from the CLI</title>
		<link>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/</link>
		<comments>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 04:41:35 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3460</guid>
		<description><![CDATA[Seems like I always end up searching for this so I thought I would add it to my site for easy reference. Stop MySQL sudo /etc/init.d/mysql stop Start MySQL with the following command sudo mysqld --skip-grant-tables &#38; Login to MySQL as root with out a password mysql -u root mysql Replace PASSWORD with the new [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like I always end up searching for this so I thought I would add it to my site for easy reference.</p>
<ol>
<li>Stop MySQL
<pre class="brush: bash; gutter: true">sudo /etc/init.d/mysql stop</pre>
</li>
<li>Start MySQL with the following command
<pre class="brush: bash; gutter: true">sudo mysqld --skip-grant-tables &amp;</pre>
</li>
<li>Login to MySQL as root with out a password
<pre class="brush: bash; gutter: true">mysql -u root mysql</pre>
</li>
<li>Replace PASSWORD with the new password of your choice.
<pre class="brush: bash; gutter: true">UPDATE user SET Password=PASSWORD(&#039;PASSWORD&#039;) WHERE User=&#039;root&#039;; FLUSH PRIVILEGES; exit;</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centralized XBMC library</title>
		<link>http://www.fauxzen.com/2012/centralized-xbmc-library/</link>
		<comments>http://www.fauxzen.com/2012/centralized-xbmc-library/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 23:06:19 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3445</guid>
		<description><![CDATA[Problem: I have multiple AppleTV&#8217;s running XBMC on them all reading from the same central server.  The issue was that the thumbnails might be on one and not the other, also watching TV series its hard to keep track of which episode I am on since I watch from multiple locations. Solution: Doing some reading [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> I have multiple AppleTV&#8217;s running XBMC on them all reading from the same central server.  The issue was that the thumbnails might be on one and not the other, also watching TV series its hard to keep track of which episode I am on since I watch from multiple locations.</p>
<p><strong>Solution:</strong> Doing some reading you can actually make all of the XBMC instances store data to a central server running MySQL.  Why would you want to do that? Well there are a few reasons, besides having everything in sync across the board it also gives you the ability to resume playback from where you left off in another room.</p>
<p><span id="more-3445"></span>Since I already had a server on my LAN which is providing the media via Samba and already has MySQL running for a development environment it was a pretty simple setup.  I followed the tutorial <a href="http://wiki.xbmc.org/index.php?title=HOW-TO:Synchronize_multiple_XBMC_libraries">here</a>, which pretty much calls for making a MySQL user for XBMC and then I took it a step further and have all of the actor/movie thumbnails being stored on a network share too.  I have included my advancedsettings.xml file which you need to create and add to each XBMC instance.</p>
<pre class="brush: xml; gutter: true">&lt;advancedsettings&gt;
    &lt;videodatabase&gt;
        &lt;type&gt;mysql&lt;/type&gt;
        &lt;host&gt;10.0.1.100&lt;/host&gt;
        &lt;port&gt;3306&lt;/port&gt;
        &lt;user&gt;xbmc&lt;/user&gt;
        &lt;pass&gt;xbmc&lt;/pass&gt;
        &lt;name&gt;xbmc_video&lt;/name&gt;
    &lt;/videodatabase&gt; 

    &lt;musicdatabase&gt;
        &lt;type&gt;mysql&lt;/type&gt;
        &lt;host&gt;10.0.1.100&lt;/host&gt;
        &lt;port&gt;3306&lt;/port&gt;
        &lt;user&gt;xbmc&lt;/user&gt;
        &lt;pass&gt;xbmc&lt;/pass&gt;
        &lt;name&gt;xbmc_music&lt;/name&gt;
    &lt;/musicdatabase&gt;

	&lt;pathsubstitution&gt;
  		&lt;substitute&gt;
			&lt;from&gt;special://masterprofile/Thumbnails/&lt;/from&gt;
			&lt;to&gt;smb://10.0.1.100/XBMC/Thumbnails/&lt;/to&gt;
		&lt;/substitute&gt;
	&lt;/pathsubstitution&gt;
&lt;/advancedsettings&gt;</pre>
<p>I decided to rebuild my whole library, which takes a little but but all said and done its a pretty nice setup and being able to resume playback from room to room is nice too.  If you have a dedicated machine, and multiple XBMC instances I would recommend this type of setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2012/centralized-xbmc-library/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Site is not broken&#8230;</title>
		<link>http://www.fauxzen.com/2011/site-is-not-broken/</link>
		<comments>http://www.fauxzen.com/2011/site-is-not-broken/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 22:51:52 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[The Site]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3429</guid>
		<description><![CDATA[While I know the site looks like its missing the stylesheet, it really isn&#8217;t.  I have been messing around trying to make the site as fast loading and as minimal as possible&#8230; so it should start to take better shape soon enough.]]></description>
			<content:encoded><![CDATA[<p>While I know the site looks like its missing the stylesheet, it really isn&#8217;t.  I have been messing around trying to make the site as fast loading and as minimal as possible&#8230; so it should start to take better shape soon enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/site-is-not-broken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSX: iTunes 10.5.2</title>
		<link>http://www.fauxzen.com/2011/osx-itunes-10-5-2/</link>
		<comments>http://www.fauxzen.com/2011/osx-itunes-10-5-2/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 17:52:23 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3422</guid>
		<description><![CDATA[What&#8217;s new in iTunes 10.5.2 iTunes 10.5.2 includes several improvements for iTunes Match and fixes an audio distortion problem when playing or importing certain CDs. iTunes 10.5.1 included: • iTunes Match. Store your entire music library in iCloud, including music you&#8217;ve imported from CDs, and enjoy your collection anywhere, anytime, on your iPhone, iPad, iPod touch, computer, [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>What&#8217;s new in iTunes 10.5.2<br />
</strong>iTunes 10.5.2 includes several improvements for iTunes Match and fixes an audio distortion problem when playing or importing certain CDs.</p>
<p>iTunes 10.5.1 included:<br />
<strong>• iTunes Match.</strong> Store your entire music library in iCloud, including music you&#8217;ve imported from CDs, and enjoy your collection anywhere, anytime, on your iPhone, iPad, iPod touch, computer, or Apple TV.<br />
<strong>• iTunes in the Cloud.</strong> iTunes now stores your music and TV purchases in iCloud and makes them available on your devices anywhere, any time, at no additional cost.<br />
<strong>• Automatic Downloads.</strong> Purchase music from any device or computer and automatically download a copy to your Mac, PC and iOS devices.<br />
<strong>• Download Previous Purchases.</strong> Download your past music, TV, app, and book purchases again, at no additional cost. Previous purchases may be unavailable if they are no longer on the iTunes Store.<br />
<strong>• Sync with your iPhone, iPad, or iPod touch with iOS 5.<br />
</strong><strong>• Wi-Fi Syncing.</strong> Automatically sync your iPhone, iPad, or iPod touch with iTunes any time they&#8217;re both on the same Wi-Fi network.</p>
<p>For information on the security content of this update, please visit: <a href="http://support.apple.com/kb/HT1222">support.apple.com/kb/HT1222</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/osx-itunes-10-5-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Las Vegas WordCamp Sticker video</title>
		<link>http://www.fauxzen.com/2011/las-vegas-wordcamp-sticker-video/</link>
		<comments>http://www.fauxzen.com/2011/las-vegas-wordcamp-sticker-video/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 17:09:40 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[stickers]]></category>
		<category><![CDATA[Wordcamp]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3404</guid>
		<description><![CDATA[Just wanted to show off a short video of the stickers that StickerGiant has sent to us for this years WordCamp Las Vegas.]]></description>
			<content:encoded><![CDATA[<p>Just wanted to show off a short video of the stickers that <a title="http://www.stickergiant.com/" href="http://www.stickergiant.com/">StickerGiant</a> has sent to us for this years <a title="http://2011.vegas.wordcamp.org" href="http://2011.vegas.wordcamp.org">WordCamp Las Vegas</a>.</p>
<p><iframe width="600" height="338" src="http://www.youtube.com/embed/a1y2VTQMTJE?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/las-vegas-wordcamp-sticker-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 Battery issues with iOS5 possible fix?</title>
		<link>http://www.fauxzen.com/2011/iphone-4-battery-issues-with-ios5-possible-fix/</link>
		<comments>http://www.fauxzen.com/2011/iphone-4-battery-issues-with-ios5-possible-fix/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 01:25:08 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3392</guid>
		<description><![CDATA[While I have seen a lot of reports of really bad battery life on the iPhone 4S with iOS5 I haven&#8217;t seen many articles about battery issues on the iPhone 4.  I have had some major battery issues since my upgrade, unplugging my fully charged iPhone 4 at 8:30am not using it through the day [...]]]></description>
			<content:encoded><![CDATA[<p>While I have seen a lot of reports of really bad battery life on the iPhone 4S with iOS5 I haven&#8217;t seen many articles about battery issues on the iPhone 4.  I have had some major battery issues since my upgrade, unplugging my fully charged iPhone 4 at 8:30am not using it through the day it usually ends up at about 12% charge left at 6:30pm.</p>
<p>I came across an <a title="apple forum post" href="https://discussions.apple.com/message/16626823#16626823">apple forum post</a> that may or may not help, I just disabled this feature today.</p>
<blockquote><p>I upgraded my ipone 4 to ios5 and had the same issue.  I did the same thing everybody did and turned all the cool fetures off, I even went to apple.  I could litterally watch the batter drop.  I started looking again and found a new feature on ios 5 called diagnostics &amp; usage under settings, general, about.  If you click on it and changed to don&#8217;t send rather than automatic send your battery life will be back to normal.  I looked up the reoports it was sending down where it says diagnostic &amp; usage data, and found my phone was sending out around 200 reports a day back to apple.  This is what was draining my battery and most likely yours too.  Apple uses this to help diagnose problems with the ios and apps.  Good Luck!</p></blockquote>
<p>Thought I would repost it here as I had a hard time finding it in the first place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/iphone-4-battery-issues-with-ios5-possible-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>October Las Vegas WordPress meetup.</title>
		<link>http://www.fauxzen.com/2011/october-las-vegas-wordpress-meetup/</link>
		<comments>http://www.fauxzen.com/2011/october-las-vegas-wordpress-meetup/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 20:18:55 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[las vegas]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3378</guid>
		<description><![CDATA[The Las Vegas WordPress Meetup Group is tomorrow at @thebeatlv &#8211; meetu.ps/4tgd8 &#8212; Shelby DeNike (@sdenike) October 19, 2011]]></description>
			<content:encoded><![CDATA[<blockquote class="twitter-tweet" width="550"><p>The Las Vegas WordPress Meetup Group is tomorrow at @<a href="https://twitter.com/thebeatlv">thebeatlv</a> &#8211; <a href="http://t.co/r5CCCBsx" title="http://meetu.ps/4tgd8">meetu.ps/4tgd8</a></p>
<p>&mdash; Shelby DeNike (@sdenike) <a href="https://twitter.com/sdenike/status/126753186701783041" data-datetime="2011-10-19T20:14:49+00:00">October 19, 2011</a></p></blockquote>
<p><script src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/october-las-vegas-wordpress-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Newstand into a folder on iOS5</title>
		<link>http://www.fauxzen.com/2011/move-newstand-into-a-folder-on-ios5/</link>
		<comments>http://www.fauxzen.com/2011/move-newstand-into-a-folder-on-ios5/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 17:08:59 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3376</guid>
		<description><![CDATA[Instead of fully reposting, I figured I would just link to my tweet instead. [blackbirdpie url="https://twitter.com/#!/sdenike/status/124892752956768256"]]]></description>
			<content:encoded><![CDATA[<p>Instead of fully reposting, I figured I would just link to my tweet instead.</p>
<p>[blackbirdpie url="https://twitter.com/#!/sdenike/status/124892752956768256"]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/move-newstand-into-a-folder-on-ios5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mass delete images from your iPhone</title>
		<link>http://www.fauxzen.com/2011/how-to-mass-delete-images-from-your-iphone/</link>
		<comments>http://www.fauxzen.com/2011/how-to-mass-delete-images-from-your-iphone/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 23:08:26 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3374</guid>
		<description><![CDATA[I had around 2,600 images on my iPhone that wouldn&#8217;t delete via iPhoto or from within iTunes when I would select NOT to sync images. After doing a bit of research I came across some information on how to remove them with out going through your camera roll one-by-one. I outlined the steps below. Connected [...]]]></description>
			<content:encoded><![CDATA[<p>I had around <strong><em>2,600</em></strong> images on my iPhone that wouldn&#8217;t delete via iPhoto or from within iTunes when I would select NOT to sync images. After doing a bit of research I came across some information on how to remove them with out going through your camera roll one-by-one. I outlined the steps below.</p>
<ol>
<li><span style="direction: ltr;">Connected my iPhone to my Macbook</span></li>
<li><span style="direction: ltr;">Opened Image Capture and selected my iPhone from the device list</span></li>
<li><span style="direction: ltr;">Selected all of the images shown (Command+A).</span></li>
<li><span style="direction: ltr;">Click the delete button at the bottom of the Image Capture window</span></li>
<li><span style="direction: ltr;">Sit back, it takes a while to clear off the images</span></li>
</ol>
<div>And thats that.  You can monitor the camera roll on your phone or the image count within the Image Capture app to follow the progress.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/how-to-mass-delete-images-from-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GLaDOSiri .. the real Siri for iPhone 4S</title>
		<link>http://www.fauxzen.com/2011/gladosiri-the-real-siri-for-iphone-4s/</link>
		<comments>http://www.fauxzen.com/2011/gladosiri-the-real-siri-for-iphone-4s/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 20:31:44 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[siri]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3369</guid>
		<description><![CDATA[In a followup to my previous post  showing off Siri, I came across this and found it to be a bit funny [youtube http://www.youtube.com/watch?v=aTg00wIijNY]]]></description>
			<content:encoded><![CDATA[<p>In a followup to my <a href="http://www.fauxzen.com/apple-siri-demo/">previous post</a>  showing off Siri, I came across this and found it to be a bit funny<br />
[youtube http://www.youtube.com/watch?v=aTg00wIijNY]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/gladosiri-the-real-siri-for-iphone-4s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming to Alderaan</title>
		<link>http://www.fauxzen.com/2011/coming-to-alderaan/</link>
		<comments>http://www.fauxzen.com/2011/coming-to-alderaan/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 01:19:08 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[kat]]></category>
		<category><![CDATA[star wars]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3365</guid>
		<description><![CDATA[Ahha! I have to hand it to Kat for showing me this damn video a while back, it has gone down in my book as a classic. [youtube http://www.youtube.com/watch?v=utGXF5orynk] So thats it!]]></description>
			<content:encoded><![CDATA[<p>Ahha! I have to hand it to Kat for showing me this damn video a while back, it has gone down in my book as a classic.<br />
[youtube http://www.youtube.com/watch?v=utGXF5orynk]<br />
So thats it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/coming-to-alderaan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R.I.P Steve Jobs</title>
		<link>http://www.fauxzen.com/2011/r-i-p-steve-jobs/</link>
		<comments>http://www.fauxzen.com/2011/r-i-p-steve-jobs/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 23:51:52 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[steve jobs]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3361</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3364" title="RIP-Steve" src="http://cdn.fauxzen.com/wp-content/uploads/2011/10/RIP-Steve.png" alt="" width="640" height="507" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/r-i-p-steve-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Siri Demo</title>
		<link>http://www.fauxzen.com/2011/apple-siri-demo/</link>
		<comments>http://www.fauxzen.com/2011/apple-siri-demo/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 17:13:15 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[siri]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3360</guid>
		<description><![CDATA[So yesterday Apple had their event where everyone assumed that they would release the new iPhone 5&#8230;. well they only came out with the iPhone 4S, which while many seemed upset and disappointed by this move it really only seemed natural.  When you look at how well the iPhone 3G did it was only logical to ride [...]]]></description>
			<content:encoded><![CDATA[<p>So yesterday Apple had their event where everyone assumed that they would release the new iPhone 5&#8230;. well they only came out with the iPhone 4S, which while many seemed upset and disappointed by this move it really only seemed natural.  When you look at how well the iPhone 3G did it was only logical to ride that wave a little longer and put out the 3GS, which did amazing as well.</p>
<p>After hearing the specs of the iPhone 4S I really want to get one.  It comes with better talk time, better camera, as well as what really got me the A5 processor.  Since owning an iPad2 I have noticed that when using my iPhone 4 it seems slower than I once though, only when compared to the device using an A5.  Another awesome feature is Siri, I have attached a video of the Siri demo which is just amazing.</p>
<p>[youtube http://www.youtube.com/watch?v=L4D4kRbEdJw]</p>
<p>What are your thoughts? Will you be getting an iPhone 4S or will you be waiting for the iPhone 5?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/apple-siri-demo/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Apple.com Hacked?</title>
		<link>http://www.fauxzen.com/2011/apple-com-hacked/</link>
		<comments>http://www.fauxzen.com/2011/apple-com-hacked/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 19:38:28 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[hacked]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3358</guid>
		<description><![CDATA[Update: So as pointed out this looks to be something to do with whois-spam. Strange that its the first time I have personally seen this before. Link1, Link2 When loading Apple.com I am getting the following error &#160; Access Denied You don&#8217;t have permission to access &#8220;http://www.apple.com/&#8221; on this server. Reference #18.301deb3f.1317756953.ae3bd422 And a whois of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update</strong>: So as pointed out this looks to be something to do with whois-spam. Strange that its the first time I have personally seen this before. <a title="http://superuser.com/questions/37954/how-to-use-command-line-whois-for-spam-infected-domains-like-apple-com " href="http://superuser.com/questions/37954/how-to-use-command-line-whois-for-spam-infected-domains-like-apple-com ">Link1</a>, <a title="http://www.betabeat.com/2011/10/04/just-a-cheap-trick-facebook-twitter-apple-and-microsoft-dns-records-were-not-hacked/" href="http://www.betabeat.com/2011/10/04/just-a-cheap-trick-facebook-twitter-apple-and-microsoft-dns-records-were-not-hacked/">Link2</a><br />
<span id="more-3358"></span><br />
<del>When loading <a title="http://www.apple.com/" href="http://www.apple.com/">Apple.com</a> I am getting the following error</del></p>
<p>&nbsp;</p>
<blockquote><p><del>Access Denied</del></p>
<p><del>You don&#8217;t have permission to access &#8220;<a title="http://www.apple.com/" href="http://www.apple.com/">http://www.apple.com/</a>&#8221; on this server.</del><br />
<del> Reference #18.301deb3f.1317756953.ae3bd422</del></p></blockquote>
<p><del>And a whois of apple.com shows the following</del></p>
<blockquote><p><del>Domain names in the .com and .net domains can now be registered</del><br />
<del> with many different competing registrars. Go to <a title="http://www.internic.net" href="http://www.internic.net">http://www.internic.net</a></del><br />
<del> for detailed information.</del></p>
<p><del>APPLE.COM.WWW.BEYONDWHOIS.COM</del><br />
<del> APPLE.COM.WAS.PWNED.BY.M1CROSOFT.COM</del><br />
<del> APPLE.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM</del><br />
<del> APPLE.COM.IS.OWN3D.BY.NAKEDJER.COM</del><br />
<del> APPLE.COM.IS.0WN3D.BY.GULLI.COM</del><br />
<del> APPLE.COM.BEYONDWHOIS.COM</del><br />
<del> APPLE.COM.AT.WWW.BEYONDWHOIS.COM</del><br />
<del> APPLE.COM</del></p>
<p><del>To single out one record, look it up with &#8220;xxx&#8221;, where xxx is one of the<br />
of the records displayed above. If the records are the same, look them up<br />
with &#8220;=xxx&#8221; to receive a full display for each record.</p>
<p></del><del>&gt;&gt;&gt; Last update of whois database: Tue, 04 Oct 2011 19:33:53 UTC &lt;&lt;&lt;</del></p></blockquote>
<p>&nbsp;</p>
<p><del>Dont know if it would be wise to order anything from <a title="http://www.apple.com/" href="http://www.apple.com/">apple.com</a> right now &#8230;.</del></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/apple-com-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experiments with LED&#8217;s</title>
		<link>http://www.fauxzen.com/2011/experiments-with-leds/</link>
		<comments>http://www.fauxzen.com/2011/experiments-with-leds/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 19:59:35 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[kat]]></category>
		<category><![CDATA[led]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3357</guid>
		<description><![CDATA[Now if you know me, you know that I love me some LED&#8217;s.  So to add to that here is a new project in the works which I think is pretty cool.  Kat took a small video of it, more to come as the project progresses. [youtube http://www.youtube.com/watch?v=9tY5m9CXBdc]]]></description>
			<content:encoded><![CDATA[<p>Now if you know me, you know that I love me some LED&#8217;s.  So to add to that here is a new project in the works which I think is pretty cool.  Kat took a small video of it, more to come as the project progresses.<br />
[youtube http://www.youtube.com/watch?v=9tY5m9CXBdc]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/experiments-with-leds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Meetup &#8211; September</title>
		<link>http://www.fauxzen.com/2011/wordpress-meetup-september/</link>
		<comments>http://www.fauxzen.com/2011/wordpress-meetup-september/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 00:03:55 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[meetup]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=2955</guid>
		<description><![CDATA[The WordPress meetup is tonight @ The Beat.  Be there http://www.facebook.com/event.php?eid=262369270447952]]></description>
			<content:encoded><![CDATA[<p>The WordPress meetup is tonight @ The Beat.  Be there</p>
<p>http://www.facebook.com/event.php?eid=262369270447952</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/wordpress-meetup-september/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site performance and moving to the Cloud&#8230;.</title>
		<link>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/</link>
		<comments>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 01:49:04 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloudflare]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=2581</guid>
		<description><![CDATA[This is a topic that I revisit quite often, sometimes out of boredom and sometimes just out of a need to well revisit things. Over the years I have worked as a system admin for a few hosting companies and have noticed that not all sites fit well on a shared platform, or if they fit just [...]]]></description>
			<content:encoded><![CDATA[<p>This is a <a title="Cut back WordPres CPU load on your server" href="http://www.fauxzen.com/cut-back-wordpress-cpu-load-on-your-server/">topic</a> that I revisit quite often, sometimes out of boredom and sometimes just out of a need to well revisit things. Over the years I have worked as a system admin for a few hosting companies and have noticed that not all sites fit well on a shared platform, or if they fit just don&#8217;t work as well as they could.  My goal has always been to try to get a premium setup with out paying an arm and a leg for it.</p>
<p>Below I am going to cover a few things that I have researched(Don&#8217;t expect any hard numbers you will simply have to take my word on this of search Google for articles showing full comparisons/numbers), tested and implemented for Fauxzen.com.<span id="more-2581"></span></p>
<p><strong>Server Setup:</strong>  After shopping around I found that <a title="RackSpace Cloud Servers" href="http://www.rackspace.com/cloud/cloud_hosting_products/servers/">RackSpace</a> seemed to offer the cheapest cloud server weighing in at about $11 a month. Originally I chose to go with <a title="CentOS" href="http://centos.org/">CentOS</a>, but after create an exact <a title="Ubuntu Server" href="http://www.ubuntu.com/">Ubuntu Server</a> install and comparing the CPU/Memory usage I found that <a title="Ubuntu Server" href="http://www.ubuntu.com/">Ubuntu Server</a> had far less overhead than <a title="CentOS" href="http://centos.org/">CentOS</a>. Keeping with the memory/cpu usage as well as reading many articles about performance from a web server I chose to go with <a title="NGinx" href="http://nginx.org/">NGinx</a> <img class="alignleft size-full wp-image-2585" title="NGinx" src="http://cdn.fauxzen.com/wp-content/uploads/2011/09/nginx-logo.png" alt="NGinx" width="168" height="43" />instead of <a title="Apache" href="http://apache.org/">Apache</a>.  While the initial install and setup was a little more complex than <a title="Apache" href="http://apache.org/">Apache</a> once up and running I haven&#8217;t had to look back.  I should clear up that I have been using Apache for the past 10yrs to <a title="NGinx" href="http://nginx.org/">NGinx</a> seemed a little foreign to me until I did some reading.  Of course the server has <a title="MySQL" href="http://dev.mysql.com/">MySQL</a> and the only thing I have really customized with it at this point was to enable <a title="Enable query-cache" href="http://www.cyberciti.biz/tips/enable-the-query-cache-in-mysql-to-improve-performance.html">query-cache</a>. Of course there is a ton more that can be done with <a title="MySQL" href="http://dev.mysql.com/">MySQL</a>&#8230; but thats for another article.  Ohh and for php I am using <a title="Enabled php-fpm" href="http://interfacelab.com/nginx-php-fpm-apc-awesome/">php-fpm</a> with <a title="Enable APC with PHP-FPM" href="http://interfacelab.com/nginx-php-fpm-apc-awesome/">APC</a> enabled.</p>
<p><strong>DNS:</strong> I first debated about using <a title="Route53" href="http://aws.amazon.com/route53/">Route53</a> for my DNS since its cloud based.  After doing some research there were a few things that made me decide to look elsewhere.  First off  keeping with the cheap budget it does cost $1 and if you are looking to go as cheap as possible &#8230; well thats another $1 per month for each domain.  Second thing which was not really a deal breaker, but could be for some is that there is no interface for it.  Everything you wish to manage with your DNS with <a title="Route53" href="http://aws.amazon.com/route53/">Route53</a> has to be done via their API or you can use some of the 3rd party services people have created to manage your DNS, just seemed like a bit of a small hassle.<br />
The other option that I found, which I am a big fan of is <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a>.  <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a> is <img class="alignright size-full wp-image-2584" title="CloudFlare" src="http://cdn.fauxzen.com/wp-content/uploads/2011/09/cloudflare-logo.png" alt="CloudFlare" width="185" height="31" />a cloud based DNS host and then some&#8230; ohh and Free.  They help prevent spammers/bots from accessing your site, which in the end saves you X page views over the course of the month as well as X bandwidth which is a huge plus.  They also cache parts of your site to make so that it is always online, this feature is awesome I have actually tested by turning my server off and trying to load my site and it loads a static version.  They also give you a nice run down of stats that are updated every 24hrs, the pro version updates stats every 15mins.</p>
<p><strong>Statistics:</strong> Some people will argue thatusing <a title="Google Analytics" href="http://www.google.com/analytics/">Google Analytics</a> is not as accurate as using something like <a title="AWstats" href="http://awstats.sourceforge.net/">AWstats</a>, <a title="Webalizer" href="http://www.webalizer.org/">Webalizer</a> or even writing your own which reads the server log files in realtime. This option works good enough for me since I am not running in click tracking ads etc etc.</p>
<p><strong>Email:</strong> <a title="Google Apps" href="http://www.google.com/apps/intl/en/business/index.html">Google Apps</a> for your domain is an awesome free product and allows you NOT to have a mail server running on you setup.  Besides the performance gain from NOT running this on your server, you also get the benefit of letting Google handle your Spam&#8230; which if you have ever done admin work mail can be a total pain.</p>
<p><strong>CDN:</strong>  While this kind of goes away from the whole aiming to be as cheap as possible, its a nice feature to have.  The cost involved with using a CDN can vary on who you go with, and the traffic that your site is generating. I chose to go with <a title="Amazon S3" href="http://aws.amazon.com/s3/">Amazon S3</a>/<a title="Cloudfront" href="http://aws.amazon.com/cloudfront/">CloudFront</a>, the cost is pretty much next to nothing once you get all setup and there seems to be a bit of a noticable</p>
<p><strong>Frontend/Backend:</strong>  <a title="WordPress" href="http://wordpress.org/">WordPress</a> is used through the site, with minimal plugins as well as a child theme running on <a title="Genesis" href="http://www.studiopress.com/themes/genesis">Genesis</a>.  I tested out a few theme frameworks and found that <a title="Genesis" href="http://www.studiopress.com/themes/genesis">Genesis</a> gives you more bang for your buck as well as seems to be fast when compared to other frameworks on the market, and has a great customer base to help support it&#8230;. and yeah I know this is not Free either.  I am using a total of <em>13 plugins</em>, I could honestly probably disable a few others as I don&#8217;t use them often. Speaking of plugins since I didn&#8217;t configure a local mail server of any sorts on this install I had to install <a title="WP-Mail-SMTP" href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP-Mail-SMTP</a> plugin which allowed me to use a POP mail account for <a title="WordPress" href="http://wordpress.org/">WordPress</a> mailing. I am also using Disqus for my commenting, this works great with <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a> when your server is not reachable.</p>
<p>So far the site/setup seem great especially when you look at the total price being under <strong>$15 a month</strong> for a cloud based setup which doesn&#8217;t place all your eggs in one basket and gives you an almost true 100% uptime for all of your services.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Las Vegas, Tickets on Sale</title>
		<link>http://www.fauxzen.com/2011/wordcamp-las-vegas-tickets-on-sale/</link>
		<comments>http://www.fauxzen.com/2011/wordcamp-las-vegas-tickets-on-sale/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 16:19:52 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[las vegas]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Wordcamp]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=2430</guid>
		<description><![CDATA[[blackbirdpie url="https://twitter.com/#!/LVWordCamp/status/113679323550064640"]]]></description>
			<content:encoded><![CDATA[<p>[blackbirdpie url="https://twitter.com/#!/LVWordCamp/status/113679323550064640"]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/wordcamp-las-vegas-tickets-on-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AirVideo server on Ubuntu</title>
		<link>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/</link>
		<comments>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 22:29:22 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1369</guid>
		<description><![CDATA[In the past installing AirVideo server on an Ubuntu system was somewhat of a pain, and an all around hack.  Upon my recent purchase of an iPad I really wanted to get AirVideo working again.  So after a little search and thinking that it was going to be a hack job again, I came across a [...]]]></description>
			<content:encoded><![CDATA[<p>In the past installing <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> server on an <a title="Ubuntu" href="http://www.ubuntu.com">Ubuntu</a> system was somewhat of a pain, and an all around hack.  Upon my recent purchase of an iPad I really wanted to get <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> working again.  So after a little search and thinking that it was going to be a hack job again, I came across a package that someone had created to get this installed.</p>
<p>You can find the PPA information needed to install <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> <a title="https://launchpad.net/~rubiojr/+archive/airvideo" href="https://launchpad.net/~rubiojr/+archive/airvideo">here</a>. Using the PPA installing was a breeze and I now have <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> setup and streaming to my iPad, iPhone and soon to Kats iTouch.</p>
<p>You can find the startup script <a title="https://gist.github.com/905291" href="https://gist.github.com/905291">here</a> and there is also some other great information covered little more in depth <a title="http://irrationale.com/2011/03/31/airvideo-on-ubuntu-the-even-easier%C2%A0way/" href="http://irrationale.com/2011/03/31/airvideo-on-ubuntu-the-even-easier%C2%A0way/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordCamp Las Vegas</title>
		<link>http://www.fauxzen.com/2011/wordcamp-las-vegas/</link>
		<comments>http://www.fauxzen.com/2011/wordcamp-las-vegas/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 17:34:41 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordcamp]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1332</guid>
		<description><![CDATA[Once again another post that should have been posted a while ago.  I have taken over the responsibilities involved with organizing WordCamp Las Vegas 2011.  This is the first time I have directly organized such an event, though the company I used to work for did help with the organization of the first WordCamp Los Angeles so I have some [...]]]></description>
			<content:encoded><![CDATA[<p>Once again another post that should have been posted a while ago.  I have taken over the responsibilities involved with organizing <a title="Las Vegas WordCamp 2011" href="http://2011.vegas.wordcamp.org/ ">WordCamp Las Vegas 2011</a>.  This is the first time I have directly organized such an event, though the <a title="InMotion Hosting" href="http://www.inmotionhosting.com">company</a> I used to work for did help with the organization of the first <a title="WordCamp Los Angeles" href="http://2011.la.wordcamp.org/">WordCamp Los Angeles</a> so I have some insight of how it should go.  Not to mention I have the mentoring of <a title="John Hawkins" href="http://vegasgeek.com/">John Hawkins</a> who was the previous Vegas organizer so that should help a lot too.<br />
I have made a pretty big dent in planning and what not.  I have secured a <a href="http://2011.vegas.wordcamp.org/date-and-venue/">date and venue</a>, and have recently opened up the <a href="http://2011.vegas.wordcamp.org/speakers/become-a-speaker/">speaker application form</a> so the ball is slowly rolling.  I have enlisted the help of <a title="Sean Goodwin" href="http://seanpgoodwin.com">Sean Goodwin</a> for some sticker/shirt/graphic design for the event as well.<br />
I hope to put tickets for the event on sale this week, as well as start accepting sponsorship once that is all out there I think I can take a short breather for a bit which I am looking forward to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/wordcamp-las-vegas/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 apc
Database Caching 8/89 queries in 0.101 seconds using memcached
Object Caching 1095/1321 objects using apc
Content Delivery Network via Amazon Web Services: CloudFront: cdn.fauxzen.com

Served from: fauxzen.com @ 2012-02-08 00:21:47 -->
