<?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>altforge</title>
	<atom:link href="http://altforge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://altforge.com</link>
	<description>perspectives forged through creativity</description>
	<lastBuildDate>Wed, 19 Oct 2011 15:56:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Top 3 WordPress Plugins, you can not live without</title>
		<link>http://altforge.com/general/top-3-wordpress-plugins-you-can-not-live-without/</link>
		<comments>http://altforge.com/general/top-3-wordpress-plugins-you-can-not-live-without/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 19:47:10 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=185</guid>
		<description><![CDATA[So your serious about your WordPress site?]]></description>
			<content:encoded><![CDATA[<p>So your serious about your WordPress site? Well I am too! I&#8217;v'e been working heavily with WordPress since 2009 and its a very powerful, flexible platform. But it does not include 3 MAJOR addon&#8217;s that you should not be without.</p>
<p>1. <a href="http://wordpress.org/extend/plugins/backwpup/">BackWpPup</a></p>
<p>2. <a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP SuperCache</a></p>
<p>3. <a href="http://wordpress.org/extend/plugins/wp-minify/">WP Minify</a></p>
<p>&nbsp;</p>
<p><span id="more-185"></span></p>
<p>BackWpPup is hands down the most flexible backup solution for wordpress it can backup your whole site, part of it, or just your database to remote servers, via FTP and to the cloud! (Including Rackspace Files, which is why i Love it). Scheduled backups are a must, and if your running in a professional enviroment they are critical! Making BackWPup the most needed addon for your wordpress site.</p>
<p>WP SuperCache, is simply fantastic, it precaches your php output as static html, saving you database queries and speeding your site up significantly, if you ever go viral or get hit by huge traffic this little plugin will help you survive!</p>
<p>WP Minify was a recent discover for me, but its simply awesome it helps your reduce those evil pesky HTTP requests by combining your JS and CSS files. But be careful sometimes combining JS can kill conflicting scripts. So you might need to be wise on what javascript files to be excluded from WP Minify. But its simply awesome, it should speed up your initial website loadtimes significantly!</p>
<p>And thats all folks, short and sweet post here, but those WordPress Plugins are a complete necessity for anyone who is serious about WordPress.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/general/top-3-wordpress-plugins-you-can-not-live-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A little PHP code that saved me alot of SQL work</title>
		<link>http://altforge.com/general/a-little-php-code-that-saved-me-alot-of-sql-work/</link>
		<comments>http://altforge.com/general/a-little-php-code-that-saved-me-alot-of-sql-work/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 00:34:57 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Php Web Scripts]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=174</guid>
		<description><![CDATA[For the past few months]]></description>
			<content:encoded><![CDATA[<p>For the past few months I have been basically building from scratch the web infrastructure for <a href="http://us.arcanatura.com">Arcanatura</a>. I have been primarily developing the U.S. website. But I also had to do a basic install that would be ready for our translators to translate and write topics for spanish speakers. The major problem was though that UTF-8_general_ci does not support special often commonly used Spanish langauge characters. So I had the issue of converting our wordpress install into a spanish ready database.</p>
<p><span id="more-174"></span></p>
<p>The way to do that is to simply convert UTF-8_general_ci into UTF-8_spanish_ci. Now in PHP My Admin its easy to change the collation, but to my knowledge it is much more complex to run a mysql query that will change each table. Which is where this little php script I found comes into handy. It will convert everytable in a database to the UTF charset of your choice.</p>
<p>To change database simply change collation to what you need in this line: mysql_query(&#8220;ALTER TABLE $value COLLATE utf8_general_ci&#8221;);</p>
<p>You can use any UTF-8 charset seen here: <a href="http://dev.mysql.com/doc/refman/5.0/es/charset-unicode-sets.html">http://dev.mysql.com/doc/refman/5.0/es/charset-unicode-sets.html</a></p>
<pre class="qoate-code">

&lt;!--?php  $db = mysql_connect('localhost','myuser_mydbuser','mypassword'); if(!$db) echo "Cannot connect to the database - incorrect details";  mysql_select_db('myuser_mydbname'); $result=mysql_query('show tables');  while($tables = mysql_fetch_array($result)) { foreach ($tables as $key =----&gt; $value) {
mysql_query("ALTER TABLE $value COLLATE utf8_general_ci");
}}
echo "The collation of your database has been successfully changed!";
?&gt;
</pre>
<p>I highly reccomend to remove this PHP file after you run it to do your work.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/general/a-little-php-code-that-saved-me-alot-of-sql-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>95% Blog Abandonment, Nah . . . I just got hired, and I&#8217;m back!</title>
		<link>http://altforge.com/general/95-blog-abandonment-nah-i-just-got-hired-and-i-m-back/</link>
		<comments>http://altforge.com/general/95-blog-abandonment-nah-i-just-got-hired-and-i-m-back/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 16:10:10 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=166</guid>
		<description><![CDATA[A recent mashable article reminded]]></description>
			<content:encoded><![CDATA[<p>A recent <a href="http://mashable.com/2011/07/04/how-to-measure-roi-content-marketing-strategy/">mashable</a> article reminded me, I&#8217;ve forgotten about my blog since May! But I have not joined the 95% of people that abandon their blogs! So now I&#8217;m back to bring my blog up to speed. And give a little preview to some of my posts to come.</p>
<p>June 15th, I started my dream job, I&#8217;m not making six figures, but I am doing exactly what I wanted to do: working for a seed funded high tech startup. I was hired into Arcanatura LLC an international company that has been creating and developing all natural clinically proven products for the animal health market. I&#8217;m joining a company that been in the &#8220;game&#8221; for over 3 years and is now ready to push into the U.S. market. We are pursuing a e-commerce only sales model, which is where I come in as the first hire(Web Marketing Manager) to begin a rapid development of the website, eCommerce, and social media platforms!</p>
<p><span id="more-166"></span></p>
<p>Many of my blog posts from here on out, will be focused on the startup world I&#8217;m in. Also I&#8217;m not the best writter in the world, but I hope many will find my knowledge and experiences that I pass on through this blog valuable!</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/general/95-blog-abandonment-nah-i-just-got-hired-and-i-m-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook Event List PHP widget</title>
		<link>http://altforge.com/downloads/facebook-events-fanpage-lis-website-api-widget/</link>
		<comments>http://altforge.com/downloads/facebook-events-fanpage-lis-website-api-widget/#comments</comments>
		<pubDate>Fri, 20 May 2011 17:14:16 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Php Web Scripts]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=152</guid>
		<description><![CDATA[I searched the internet high]]></description>
			<content:encoded><![CDATA[<p>I searched the internet high and low looking for a simple facebook events widget that allows you to pull events from my facebook fanpage events directly to a webpage (via php). Luckly Steve Rolfe a buddy of mine helped by whipping up this code, which I modified a little bit. This php code is embeddable into any site joomla, wordpress, etc, and takes events and lists them in a standard row.</p>
<p>What it looks like:<a href="http://altforge.com/wp-content/uploads/2011/05/Facebook-event-list-php-widget2.png"><img class="aligncenter size-full wp-image-161" title="Facebook-event-list-php-widget2" src="http://altforge.com/wp-content/uploads/2011/05/Facebook-event-list-php-widget2.png" alt="" width="630" height="127" /></a></p>
<p><span id="more-152"></span>Currently it has almost zero formatting and is a work in progress, but its a very solid foundation to getting a list of events from your facebook fanpage to be dynamically and seamlessly posted on your website. Feel free to customize it to your hearts content and if you redistribute it please link back!</p>
<p>Oh yes so you need 3 things to make this function:</p>
<p>AppID</p>
<p>AppSecret</p>
<p>And an Authtoken</p>
<p>Get the code here:</p>
<p><a href="https://github.com/joshperron/Facebook-Events-List-Widget/downloads">https://github.com/joshperron/Facebook-Events-List-Widget/downloads</a></p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/downloads/facebook-events-fanpage-lis-website-api-widget/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Why the iPhone 4GS/5 will most likely hit ATT &#8211; Verizon this summer</title>
		<link>http://altforge.com/tech/why-the-iphone-4gs5-will-most-likely-hit-att-verizon-this-summer/</link>
		<comments>http://altforge.com/tech/why-the-iphone-4gs5-will-most-likely-hit-att-verizon-this-summer/#comments</comments>
		<pubDate>Fri, 20 May 2011 16:53:16 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=148</guid>
		<description><![CDATA[Numerous rumors have been floating]]></description>
			<content:encoded><![CDATA[<p>Numerous rumors have been floating around about the iPhone 4GS / iPhone 5 for months, <a href="http://hubpages.com/hub/The-NEW-iPhone-4G-Coming-2010">One of which</a> being that it is delayed until this fall October 2011(<a href="http://www.engadget.com/2007/05/16/iphone-delayed-until-october-leopard-delayed-again-until-januar/">Flashback 2007 iPhone Delay Rumor</a>). Now Apple has created this 4 year ritual/legacy of releasing iPhones in the summer, why would this year be any different? Sure it may be coming to T-Mobile and Sprint this year, But . . .</p>
<p><strong>Reason #1 Why ATT/Verizon will get it this summer</strong></p>
<p><span id="more-148"></span>Would a hit product that runs stockpiles dry for EVERY launch, release on four cellphone networks simultaneously? Answer: <em>Hellll No</em>. Apple is great and to some a Mythic God, but it cannot defy the laws of supply and demand. Even if the iPhone 4GS/5 is a &#8220;universal&#8221; phone (works on all carriers), what we are possibly seeing in these rumors is staggered launch dates. Most likely well see ATT / Verizon get the phone this summer, and T-Mobile/Sprint get it this fall/winter (possibly even next spring at latest).</p>
<p><strong>Reason #2 <strong>Why ATT/Verizon will get it this summer</strong></strong></p>
<p>Our little green robotic friend, Android, has several high end Dual Core 4G phones releasing this summer, Samsung Galaxy S II, Motorola Droid Bionic, LG Optimus 2x, etc. These phones are direct competitors to the  Apple iPhone and Apple would surely lose out sales to these phones this summer if it shifted its launch date to the fall. I for one would most definitely buy one of these bleeding edge hardware packed android phones if I don&#8217;t see an iPhone 4GS/5 this summer.</p>
<p>As far as hardware goes I&#8217;m not going to do much interpretation on that, the next iphone will clearly be dualcore, but other than that its purely speculation.</p>
<p>Well see what happens at now sold out <a href="http://developer.apple.com/wwdc/">Apple WWDC 2011</a> from June 6-10.</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/tech/why-the-iphone-4gs5-will-most-likely-hit-att-verizon-this-summer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Whats been happening?</title>
		<link>http://altforge.com/off-topic/whats-been-happening/</link>
		<comments>http://altforge.com/off-topic/whats-been-happening/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 03:35:00 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Off Topic]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=145</guid>
		<description><![CDATA[The past 2 months since]]></description>
			<content:encoded><![CDATA[<p>The past 2 months since I last posted have flown by. I have neglected to post many finished articles lately (many drafts sitting and waiting), but here is a quick update on whats cookin!</p>
<p>Deal.iz.io is doing well, not great, but doing well and over the next few months were going to refocus the iOS app toward a webapp, which should be exciting. Unforunatly lately deal.iz.io has been getting neglected as well as this blog due to the halestorm of projects/different things going on for both myself and Steve Rolfe (the co-founder of deal.iz.io/app.iz.io).</p>
<p>In recent news I&#8217;m still doing Market Research work for <a href="http://odonnellco.com/">OdonnellCo</a>; if anyone needs a Full Service marketing firm thats the place to go. Dan, Eileen, and the whole staff are just great people who do outstanding work. Speaking of marketing, I just got picked up by <a href="http://www.shizzlr.com/">Shizzlr</a> to jump in and take on a part time marketing role. Shizzlr is also run by some awesome people and good friends of mine, co-founders <a href="http://www.shizzlr.com/aboutdefault.aspx">Nick Jaensch and Keith Bessette</a>. Over the past few years they have been building an excellent startup/app and have gotten several serious investors to back the company, and I&#8217;m glad to be a part of it. Shizzlr is a unique social event/ social planning application, that you all will be hearing much more of!</p>
<p>Thats about all for now, but stay tuned for some cool stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/off-topic/whats-been-happening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Pixels, Big Price &#8211; App Icons!</title>
		<link>http://altforge.com/app-development/small-pixels-big-price-app-icons/</link>
		<comments>http://altforge.com/app-development/small-pixels-big-price-app-icons/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 03:54:59 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[App Development]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=127</guid>
		<description><![CDATA[Yeah so its probably not]]></description>
			<content:encoded><![CDATA[<p><a href="http://altforge.com/wp-content/uploads/2011/02/apple_vs_appwall.png"><img class="aligncenter size-full wp-image-131" title="apple_vs_appwall" src="http://altforge.com/wp-content/uploads/2011/02/apple_vs_appwall.png" alt="" width="525" height="210" /></a></p>
<p>Yeah so its probably not good style or display of writing skill starting an article title with &#8220;OMG&#8221;, but yeah app icon designers can be wicked expensive! But lets start with why we even considered the quest of pursuing an app icon designer.</p>
<p><span id="more-127"></span></p>
<p><strong>Icon Designs are VERY important!</strong></p>
<p>Remember the saying, &#8220;Don&#8217;t judge a book by it&#8217;s cover?&#8221; well according to a <a href="http://iphone.appstorm.net/general/weekly-poll/weekly-poll-do-you-judge-an-app-by-its-icon/">poll over at appstorm</a>, 34% of app buyers absolutely do! Who doesn&#8217;t want to see a good looking icon that they want to click? Not to mention sometimes all users see of your app is its name and the icon, and you need to invoke them to click on it with these two things!  See the results in an image below:</p>
<p><a href="http://altforge.com/wp-content/uploads/2011/02/judge_an_app_by_its_icon.png"><img class="aligncenter size-full wp-image-129" title="judge_an_app_by_its_icon" src="http://altforge.com/wp-content/uploads/2011/02/judge_an_app_by_its_icon.png" alt="" width="321" height="552" /></a></p>
<p><strong>Our apps done, but is the icon good enough?</strong></p>
<p>When we were developing <a href="http://deal.iz.io/">deal.iz.io</a> we started questioning whether  or not our icon was good enough.So naturally we began checking out icon designers. Ultimately we found two sources helped us find designers that we would be okay with designing our icons.</p>
<ol>
<li><a href="http://dribbble.com/">dribbble.com</a></li>
<li><a href="http://www.deviantart.com/">deviantart.com</a></li>
</ol>
<p>Dribbble was by far the most helpful for us, and it helped us find some absolutely amazing designers!</p>
<p><strong>The Price Quotes</strong></p>
<p>So we got price quotes from 7 icon designers and here is our results from most expensive to least expensive.</p>
<ol>
<li>$2,500</li>
<li>$1,470</li>
<li>$750</li>
<li>$450</li>
<li>$400</li>
<li>$270</li>
<li>$250</li>
</ol>
<p><strong>What you can expect to pay</strong></p>
<ul>
<li>When you contact a <strong>Good</strong> designer for making an app icon you can expect to pay between <strong>$300.00-500.00</strong> for a good app icon.</li>
<li>When you contact a <strong>Amazing</strong>, very well known app icon designer, you better have some app seed money saved up because you will be paying well over <strong>$1,000</strong> for a graphic that will end up as a small 57px by 57px graphic on most devices.</li>
</ul>
<p>We ended up staying in house with our app design, and were very pleased with how it came out. Are amazing app icons worth the high cost?</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/app-development/small-pixels-big-price-app-icons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beginning the App Developer / app.iz.io Company Journey!</title>
		<link>http://altforge.com/app-development/beginning-the-app-developer-app-iz-io-company-journey/</link>
		<comments>http://altforge.com/app-development/beginning-the-app-developer-app-iz-io-company-journey/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 02:18:16 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[App Development]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=124</guid>
		<description><![CDATA[Recently dealizio or deal.iz.io was]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://altforge.com/wp-content/uploads/2011/02/iTunesArtwork.png"><img class="aligncenter size-medium wp-image-125" title="dealizio itunes artwork" src="http://altforge.com/wp-content/uploads/2011/02/iTunesArtwork-300x300.png" alt="" width="240" height="240" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">Recently dealizio or deal.iz.io was <a href="http://itunes.apple.com/us/app/deal-iz-io/id418378788?mt=8&amp;ls=1">accepted by the appstore</a>! Wahoo! It was a huge relief for our app to finally get in. For those of you who haven&#8217;t herd of it, it is perhaps the best deal finding, searching, and monitoring app in the appstore. The quickest synopsis of what it helps you do is: &#8220;Find deals. Get deals. Save money. Be happy!&#8221; Enough of my pitch of the app, now comes the hardest part getting the word out!</p>
<p style="text-align: left;"><span id="more-124"></span></p>
<p style="text-align: left;">Among 1000&#8242;s of applications trying to get noticed is very difficult, but we will do it, and we will talk  how we are doing it! As a developer /company we (app.iz.io) want to be well &#8220;cool&#8221;, so were going to take after <a href="http://blogs.balsamiq.com/peldi/">peldi</a> and offer as much transparency as possible! Many of my blog posts from here on out, will be very closely related to the development &amp; marketing process of our app and company! And I hope you all enjoy everything!</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/app-development/beginning-the-app-developer-app-iz-io-company-journey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Xbox 360 DIY Horizontal Riser Mod, With Kinect packaging aka &#8220;Sticky bar mod&#8221;</title>
		<link>http://altforge.com/off-topic/xbox-360-diy-horizontal-riser-mod-with-kinect-packaging-aka-sticky-bar-mod/</link>
		<comments>http://altforge.com/off-topic/xbox-360-diy-horizontal-riser-mod-with-kinect-packaging-aka-sticky-bar-mod/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 23:10:38 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=112</guid>
		<description><![CDATA[The Xbox 360 is undoubtedly a great]]></description>
			<content:encoded><![CDATA[<p><a href="http://altforge.com/wp-content/uploads/2011/01/Xbox-Stickybar-Riser-Final-Result.jpg"><img class="aligncenter size-full wp-image-116" title="Xbox Stickybar Riser Final Result" src="http://altforge.com/wp-content/uploads/2011/01/Xbox-Stickybar-Riser-Final-Result.jpg" alt="" width="500" height="191" /></a></p>
<p>The Xbox 360 is undoubtedly a great console, however one of its major downsides especially first generation Xbox 360 is the sheer amount of hardware failures. With electronics and computers a general rule of thumb is that if you can increase airflow, and reduce temperature, you increase the lifespan.</p>
<p>This DIY mod is for both Xbox 360 first generation and Xbox 360 Slim owners who like to set their xbox 360 horizontally. This DIY mod utilizes Xbox Kinect packaging materials to create a subtle and nearly invisible riser to give your Xbox 360 some increased airflow by lifting it further off the platform it rests on. I perfer horizontal configuration myself because its less likely to get knocked over that way.</p>
<p><span id="more-112"></span></p>
<p><strong>Supplies needed:</strong></p>
<ul>
<li>Xbox360 or Xbox360 Slim</li>
<li>Kinect Packaging Materials</li>
<li>Scissors</li>
<li>Possibly a tape measure (if your a perfectionist)</li>
<li>1-3 minutes of time</li>
</ul>
<p><strong> Step 1:</strong> Slowly peel the &#8220;bar&#8221; of Sticky Backed Foam from Kinect Box with your hands(see picture below). If you get some paper that transfers from the box to the sticky backing no problem, you don&#8217;t need it to be extremely sticky all over.</p>
<p><a href="http://altforge.com/wp-content/uploads/2011/01/Xbox-360-kinect-packaging-materials.jpg"><img class="aligncenter size-full wp-image-113" title="Xbox 360 kinect packaging materials" src="http://altforge.com/wp-content/uploads/2011/01/Xbox-360-kinect-packaging-materials.jpg" alt="" width="610" height="364" /></a></p>
<p><strong>Step 2: </strong>Once you remove the sticky bar of foam from the box, Simply cut it in half with scissors to make two equal length risers!</p>
<p><a href="http://altforge.com/wp-content/uploads/2011/01/Xbox-360-sticky-bar-riser.jpg"><img class="aligncenter size-full wp-image-114" title="Xbox 360 sticky bar riser" src="http://altforge.com/wp-content/uploads/2011/01/Xbox-360-sticky-bar-riser.jpg" alt="" width="454" height="84" /></a><strong> </strong></p>
<p><strong>Step 3: </strong>Once you have the two sticky backed foam risers, simply place them on the underside of the xbox, equal distance from the center. Be sure that you do not cover up any ventilation holes (outlined below in red), covering them up would make this mod pretty much pointless.</p>
<p><a href="http://altforge.com/wp-content/uploads/2011/01/XBox-360-Stickbar-Riser.jpg"><img class="aligncenter size-full wp-image-115" title="XBox 360 Stickbar Riser" src="http://altforge.com/wp-content/uploads/2011/01/XBox-360-Stickbar-Riser.jpg" alt="" width="500" height="375" /></a></p>
<p>Step 4: Admire your clean DIY mod, that cost you pretty much nothing and increased overall airflow to your Xbox 360 by lifting it up higher! Also you recycled some of that packing material instead of jut tossing it, so props to being green! Also check out the Kinect Privacy Guard Shield DIY <a href="http://makeprojects.com/Project/Kinect-Privacy-Guard-from-Kinect-Package-Material/483/1">here</a> it is another neat mod that utilizes the Kinect Packaging Supplies.</p>
<p style="text-align: center;">Final Result!</p>
<p><a href="http://altforge.com/wp-content/uploads/2011/01/Xbox-Stickybar-Riser-Final-Result.jpg"><img class="aligncenter size-full wp-image-116" title="Xbox Stickybar Riser Final Result" src="http://altforge.com/wp-content/uploads/2011/01/Xbox-Stickybar-Riser-Final-Result.jpg" alt="" width="500" height="191" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/off-topic/xbox-360-diy-horizontal-riser-mod-with-kinect-packaging-aka-sticky-bar-mod/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Complete RSS Readability vs A Mobile Friendly Website, Pick One!</title>
		<link>http://altforge.com/website-development/full-rss-readability-or-make-your-site-mobile-friendly/</link>
		<comments>http://altforge.com/website-development/full-rss-readability-or-make-your-site-mobile-friendly/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 04:37:19 +0000</pubDate>
		<dc:creator>Josh Perron</dc:creator>
				<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://altforge.com/?p=100</guid>
		<description><![CDATA[So this one goes out]]></description>
			<content:encoded><![CDATA[<p><a href="http://altforge.com/wp-content/uploads/2010/12/rss_vs_mobilefriendly.jpg"><img class="aligncenter size-full wp-image-102" title="rss_vs_mobilefriendly" src="http://altforge.com/wp-content/uploads/2010/12/rss_vs_mobilefriendly.jpg" alt="" width="493" height="179" /></a></p>
<p>So this one goes out to all the News Websites and Bloggers out there, I have one simple proposal backed with plenty of reason.</p>
<p><strong>Proposal: </strong>Either display the entire article via RSS feed (for us mobile users) or make a mobile version of your website.</p>
<p>Mobile internet is climbing in usage, devices that run iOS operating system (iPhone, iPod touch, and the iPad) and According to <a href="http://techcrunch.com/2010/09/03/quantcast-mobile-web-browsing/">TechCrunch</a> accounted for 1.1% of all hardware on the internet in August of 2010(mobile devices in total are probably are about 2-3% now). And now several months smartphone devices are launching by the dozen, but what this means is that for major websites and blogs at least 3 in every 100 visitors is trying to view your website from a mobile device. And if you don&#8217;t have a mobile template for them, pages are slow loading, advertisements are less effective, and the overall experience is just garbage.</p>
<p><span id="more-100"></span></p>
<p>Now because you don&#8217;t have a mobile friendly website end users will be even more likely to view your site via a RSS reader. The problem for the user is they can only read the first 400 characters of the article before your RSS feed makes the end users view the source article in its non-mobile friendly format. See where I&#8217;m going with this?</p>
<p><strong>The major drawback of taking the easy way out</strong></p>
<p>So the easy way out as a new-site or blog is to simply let your RSS feed display the entire articles, but now your out of that much needed advertising income because of the clever app development of mobile applications like <a href="http://www.alphonsolabs.com/">Pulse RSS Reader</a> can strip those advertisements right out of your RSS feed.</p>
<p><strong>So what to do?</strong></p>
<p>Set your RSS feed to an appropriate character/word limit and get your website running a mobile theme! Almost every major CMS Joomla, WordPress, etc has mobile ready themes; for example <a href="http://www.bravenewcode.com/products/wptouch-pro/">WP Touch</a> is an excellent free plugin to get any WordPress blog going mobile. Then get some Admob or Google mobile advertisements setup on your mobile theme and you have the perfect solution to the entire problem. So easy everyone should be doing it, but sites like <a href="http:/defensetech.org">defensetech.org</a> a pretty popular military tech blog/news site doesn&#8217;t. So suggest if your site isn&#8217;t mobile friendly no matter how big or small, please get it mobile friendly and fast!</p>
]]></content:encoded>
			<wfw:commentRss>http://altforge.com/website-development/full-rss-readability-or-make-your-site-mobile-friendly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

