<?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>Hyperspatial.com</title>
	<atom:link href="http://hyperspatial.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hyperspatial.com</link>
	<description>Expand your horizons and your knowledge</description>
	<lastBuildDate>Tue, 21 Feb 2012 21:32:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Watch out for gmail</title>
		<link>http://hyperspatial.com/2011/12/watch-out-for-gmail/</link>
		<comments>http://hyperspatial.com/2011/12/watch-out-for-gmail/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 23:28:29 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2983</guid>
		<description><![CDATA[Watch out for gmails' learning feature.  When I delete email notifications from my wordpres sites, gmail decides they are spam periodically. Have been just clicking 'not spam' in the spam folder - instead of adding a filter for each and every site. Just don't forget to check your spam.]]></description>
			<content:encoded><![CDATA[<p>Watch out for gmails' learning feature.  When I delete email notifications from my wordpres sites, gmail decides they are spam periodically.</p>
<p>Have been just clicking 'not spam' in the spam folder - instead of adding a filter for each and every site. Just don't forget to check your spam.</p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2011/12/watch-out-for-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WWW The Debate</title>
		<link>http://hyperspatial.com/2011/09/www-the-debate/</link>
		<comments>http://hyperspatial.com/2011/09/www-the-debate/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 15:59:22 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2918</guid>
		<description><![CDATA[Against WWW Not neccessary - In 1991 you needed it but not any more, its 2011 and usage of www is an outdated approach No Advantages - There are no SEO advantages to including the prefix It's easier to look at - Url's just look better without it, especially long ones The trend is to [...]]]></description>
			<content:encoded><![CDATA[<div>
	<strong>Against WWW</strong></p>
<ul>
<li>Not neccessary - In 1991 you needed it but not any more, its 2011 and usage of www is an outdated approach</li>
<li>No Advantages - There are no SEO advantages to including the prefix</li>
<li>It's easier to look at - Url's just look better without it, especially long ones</li>
<li>The trend is to go without - See the list of non www sites below</li>
</ul>
</div>
<div>
	<strong>For WWW</strong></p>
<ul>
<li>People like to bookmark the www version - This is a pro but if your site is non www then it gets bookmarket withot anyway </li>
</ul>
</div>
<div>
<strong>Non WWW Sites</strong></p>
<ol>
<li><a href="http://espn.com">http://espn.com</a></li>
<li><a href="http://stackoverflow.com/">http://stackoverflow.com</a></li>
<li><a href="http://twitter.com/">http://twitter.com</a></li>
<li><a href="http://wordpress.org">http://wordpress.org</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2011/09/www-the-debate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Trick of the Year</title>
		<link>http://hyperspatial.com/2011/09/apache-trick-of-the-year/</link>
		<comments>http://hyperspatial.com/2011/09/apache-trick-of-the-year/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 03:16:52 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2892</guid>
		<description><![CDATA[Just noticed I have not written a blog post since 2010. Most of my writing is in code so my blogs are written in PHP on code.hyperspatial.com - Ah Justifications are the root of all accomplishment The Situation: I have a WordPress Multisite setup with wildcard dns for subdomains, installed on a virtual host with [...]]]></description>
			<content:encoded><![CDATA[<p>Just noticed I have not written a blog post since 2010. Most of my writing is in code so my blogs are written in PHP on <a href="http://code.hyperspatial.com">code.hyperspatial.com</a> - Ah Justifications are the root of all accomplishment</p>
<p><strong>The Situation:</strong><br />
I have a WordPress Multisite setup with wildcard dns for subdomains, installed on a virtual host with the ServerAlias set to *.mydomain.com - ServerAlias set in apache2/sites-available</p>
<p>I needed to allow a subdomain of mydomain.com to skirt the <em>*.mydomain.com</em> Apache rule and be served from its own files that are not part of the wordpress install.  For the example the subdomain will be <em>outsmart.mydomain.com</em></p>
<p>Despite all my efforts, when pointing the browser to <em>outsmart.mydomain.com</em>, I would end up at a 404 page on <em>mydomain.com</em> which is the multisite install</p>
<p><strong>The Solution:</strong><br />
After much experimentation with rewrites and virtual host setups it became apparent that apache was following the ServerAlias set in the <em>mydomain.com</em> vhost and not the ServerAlias in <em>outsmart.mydomain.com</em> vhost</p>
<p><strong>~~~ Ding! ~~~</strong></p>
<p>Apache reads the vhosts from the apache2/sites-enabled and conciquently the apache2/sites-available directories in alphabetical order. <strong>So just change the first letter in the server name to something that comes before M!</strong></p>
<p>It was not quite that easy, here's the proceedure</p>
<ol>
<li>Delete the subdomain vhost and create a new one with the server name alphabetically lower than the offending domain. I would make the example <em>ajoutsmart.mydomain.com</em> (You can't just change the server name of an existing vhost because Apache will not re-order existing sites-available upon namechange)</li>
<li>Add the ServerAlias <em>outsmart.mydomain.com</em> to the new vhost using Webmin or by editing the vhost file in the apache2/sites-available directory</li>
<li>Restart Apache</li>
</ol>
<p><em>Note: Since Apache does not re-order the sites available you may be able to get away with creating the vhost beginning with an 'A' then change the server name to begin with any letter.</em></p>
<p><a href="code.hyperspatial.com"><br />
</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2011/09/apache-trick-of-the-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Caching</title>
		<link>http://hyperspatial.com/2011/05/firefox-caching/</link>
		<comments>http://hyperspatial.com/2011/05/firefox-caching/#comments</comments>
		<pubDate>Wed, 04 May 2011 12:44:27 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2738</guid>
		<description><![CDATA[The latest version of Firefox seems to be caching pages differently than it usually does. (Or I am going crazy) I was working on pointing one of my .org domains to it's .com counterpart and was getting frustrated because it just did not seem to be redirecting. Firefox was caching the old page instead of [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of Firefox seems to be caching pages differently than it usually does. (Or I am going crazy)</p>
<p>I was working on pointing one of my .org domains to it's .com counterpart and was getting frustrated because it just did not seem to be redirecting. Firefox was caching the old page instead of opening and running the .htaccess file that performed the redirect. I don't think Firefox has always done this.</p>
<p>When conducting dns changes or redirects just keep this in mind.  Clearing Firefox history then restarting the browser worked for me. I also noticed that name server changes were not picked up by the Firefox browser until after a total system restart.</p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2011/05/firefox-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ez Overlay</title>
		<link>http://hyperspatial.com/2010/11/ez_overlay/</link>
		<comments>http://hyperspatial.com/2010/11/ez_overlay/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 02:03:26 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2161</guid>
		<description><![CDATA[A simple lightbox plugin designed to enable you to display html content within a popup window using just about any html element as a trigger. This plugin is an alternative to the jQuery based lightbox systems. It was created using pure Javascript and has no dependencies on any other libraries. I created this simple lightbox [...]]]></description>
			<content:encoded><![CDATA[<p>A simple lightbox plugin designed to enable you to display html content within a popup window using just about any html element as a trigger.</p>
<p>This plugin is an alternative to the jQuery based lightbox systems.  It was created using pure Javascript and has no dependencies on any other libraries.  I created this simple lightbox after weeks of dealing with jQuery conflicts within Buddypress and WordPress.  Many of the existing jQuery type lightboxes do not stop audio playback for flash/.swf playback when closing the lightbox.  This plugin completely removes the overlay content from the dom to make absolutely sure your .swf file playback is stopped in all browsers.</p>
<div style="margin-top: 16px; margin-bottom: 16px;"><a title="Download Now" href="http://wordpress.org/extend/plugins/ez-overlay/"><img src="/graphics/download_now.png" alt="Download Sensiri" width="154" height="54" /></a></div>
<hr />
<h3>Instructions:</h3>
<ol>
<li>Upload the entire 'ez-overlay' folder to the `/wp-content/plugins/` directory</li>
<li> Activate the plugin through the 'Plugins' menu in WordPress</li>
<li> Create your overlay's and triggers with html using the examples included in the plugin folder.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/11/ez_overlay/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Audio Player</title>
		<link>http://hyperspatial.com/2010/10/audio-player/</link>
		<comments>http://hyperspatial.com/2010/10/audio-player/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 14:20:58 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2140</guid>
		<description><![CDATA[List of flash players: http://blancer.com/tutorials/35493/top-20-music-players-to-embed-your-audio-online/ Tutorial: http://www.republicofcode.com/tutorials/flash/as3musicplayer/ Tutorial: http://www.clickpopmedia.com/2008/04/15/making-an-mp3-player-in-as3/]]></description>
			<content:encoded><![CDATA[<p>List of flash players:<br />
<a href="http://blancer.com/tutorials/35493/top-20-music-players-to-embed-your-audio-online/">http://blancer.com/tutorials/35493/top-20-music-players-to-embed-your-audio-online/</a></p>
<p>Tutorial:</p>
<p><a href="http://www.republicofcode.com/tutorials/flash/as3musicplayer/">http://www.republicofcode.com/tutorials/flash/as3musicplayer/</a></p>
<p>Tutorial:</p>
<p><a href="http://www.clickpopmedia.com/2008/04/15/making-an-mp3-player-in-as3/">http://www.clickpopmedia.com/2008/04/15/making-an-mp3-player-in-as3/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/10/audio-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Html 5</title>
		<link>http://hyperspatial.com/2010/09/html-5/</link>
		<comments>http://hyperspatial.com/2010/09/html-5/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 19:46:49 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2122</guid>
		<description><![CDATA[This is my html 5 video and audio research. VideoJs player: http://videojs.com/ MooTools Audio player: http://simulacre.org/mootools-html5-audio-player/# Conversion, Server side: http://firefogg.org/index.html Useful Article about html5: http://www.peachpit.com/articles/article.aspx?p=1619307&#38;seqNum=2 FFMpeg Stuff: http://howto-pages.org/ffmpeg/ Audio Player info with compatibility chart: http://dev.opera.com/articles/view/html5-audio-radio-player/ Ipad/phone Redirect: http://davidwalsh.name/detect-iphone Browser Compatibility: http://findmebyip.com/litmus#target-selector Player events and javascript: http://developer.apple.com/library Ten good html 5 systems: http://wpmu.org/10-beautiful-html5-video-audio-players-for-wordpress/]]></description>
			<content:encoded><![CDATA[<p>This is my html 5 video and audio research.</p>
<p>VideoJs player:<br />
<a href="http://videojs.com/">http://videojs.com/</a></p>
<p>MooTools Audio player:<br />
<a href="http://simulacre.org/mootools-html5-audio-player/#">http://simulacre.org/mootools-html5-audio-player/#</a></p>
<p>Conversion, Server side:<br />
<a href="http://firefogg.org/index.html">http://firefogg.org/index.html</a></p>
<p>Useful Article about html5:<br />
<a href="http://www.peachpit.com/articles/article.aspx?p=1619307&amp;seqNum=2">http://www.peachpit.com/articles/article.aspx?p=1619307&amp;seqNum=2</a></p>
<p>FFMpeg Stuff:<br />
<a href="http://howto-pages.org/ffmpeg/">http://howto-pages.org/ffmpeg/</a></p>
<p>Audio Player info with compatibility chart:<br />
<a href="http://dev.opera.com/articles/view/html5-audio-radio-player/">http://dev.opera.com/articles/view/html5-audio-radio-player/</a></p>
<p>Ipad/phone Redirect:<br />
<a href="http://davidwalsh.name/detect-iphone">http://davidwalsh.name/detect-iphone</a></p>
<p>Browser Compatibility:<br />
<a href="http://findmebyip.com/litmus#target-selector">http://findmebyip.com/litmus#target-selector</a></p>
<p>Player events and javascript:<br />
<a href="http://developer.apple.com/library/safari/#documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/ControllingMediaWithJavaScript/ControllingMediaWithJavaScript.html">http://developer.apple.com/library</a></p>
<p>Ten good html 5 systems:<br />
<a href="http://wpmu.org/10-beautiful-html5-video-audio-players-for-wordpress/">http://wpmu.org/10-beautiful-html5-video-audio-players-for-wordpress/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/09/html-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JW Player research</title>
		<link>http://hyperspatial.com/2010/09/jw-player-research/</link>
		<comments>http://hyperspatial.com/2010/09/jw-player-research/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 19:19:10 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2116</guid>
		<description><![CDATA[This is a technique for redirecting after video plays http://developer.longtailvideo.com/contributors/nyboe/JW_API_xmpl_4-3-2-0.html]]></description>
			<content:encoded><![CDATA[<p>This is a technique for redirecting after video plays</p>
<p><a href="http://developer.longtailvideo.com/contributors/nyboe/JW_API_xmpl_4-3-2-0.html">http://developer.longtailvideo.com/contributors/nyboe/JW_API_xmpl_4-3-2-0.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/09/jw-player-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Preloaders</title>
		<link>http://hyperspatial.com/2010/08/flash-preloaders/</link>
		<comments>http://hyperspatial.com/2010/08/flash-preloaders/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 23:06:00 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Planet Flash]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2113</guid>
		<description><![CDATA[Here are some flash preloaders: http://preloaderz.com/design/free-preloader-animations/]]></description>
			<content:encoded><![CDATA[<p>Here are some flash preloaders:</p>
<p><a href="http://preloaderz.com/design/free-preloader-animations/">http://preloaderz.com/design/free-preloader-animations/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/08/flash-preloaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must have WPMU plugins</title>
		<link>http://hyperspatial.com/2010/08/must-have-wpmu-plugins/</link>
		<comments>http://hyperspatial.com/2010/08/must-have-wpmu-plugins/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:56:35 +0000</pubDate>
		<dc:creator>Adam J Nowak</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://hyperspatial.com/?p=2087</guid>
		<description><![CDATA[This is my list of must have plugins for WordPress Multi-User: 1) Exclude-Plugins  ~  Enables you to control your plugins on user sites. 2) Blue Network Plugins ~ Display Network activated plugins separate from locals 3) Unfiltered Mu - this allows admin users to post 'evil' tags, like embed iframe and object Unfiltered MU]]></description>
			<content:encoded><![CDATA[<p>This is my list of must have plugins for WordPress Multi-User:</p>
<p>1) Exclude-Plugins  ~  Enables you to control your plugins on user sites.</p>
<p>2) Blue Network Plugins ~ Display Network activated plugins separate from locals</p>
<p>3) Unfiltered Mu - this allows admin users to post 'evil' tags, like embed iframe and object</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h2>Unfiltered MU</h2>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hyperspatial.com/2010/08/must-have-wpmu-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

