<?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>JayChristopher</title>
	<atom:link href="http://www.jaychristopher.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaychristopher.com</link>
	<description>Wordpress Developer, Design and Enrtrepreneur</description>
	<lastBuildDate>Fri, 27 Jan 2012 23:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to remove menus in the wordpress admin area</title>
		<link>http://www.jaychristopher.com/350-how-to-remove-menus-in-the-wordpress-admin-area/</link>
		<comments>http://www.jaychristopher.com/350-how-to-remove-menus-in-the-wordpress-admin-area/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 00:03:00 +0000</pubDate>
		<dc:creator>jaychristopher</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jaychristopher.com/?p=350</guid>
		<description><![CDATA[Put the following code into the functions.php file of your theme, and just remove the items in the array that you want to keep. function remove_menus () { global $menu; // REMOVE ALL $restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), &#8230; <a href="http://www.jaychristopher.com/350-how-to-remove-menus-in-the-wordpress-admin-area/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Put the following code into the functions.php file of your theme, and just remove the items in the array that you want to keep.</p>
<p><code><br />
function remove_menus () {</p>
<p>		global $menu;<br />
		// REMOVE ALL<br />
		$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'), __('Profile')); </p>
<p>		end ($menu);<br />
		while (prev($menu)){<br />
			$value = explode(' ',$menu[key($menu)][0]);<br />
			if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}<br />
		}</p>
<p>}<br />
add_action('admin_menu', 'remove_menus');<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaychristopher.com/350-how-to-remove-menus-in-the-wordpress-admin-area/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading a Volume&#8217;s Capacity on Amazon EC2</title>
		<link>http://www.jaychristopher.com/346-upgrading-a-volumes-capacity-on-amazon-ec2/</link>
		<comments>http://www.jaychristopher.com/346-upgrading-a-volumes-capacity-on-amazon-ec2/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 11:04:23 +0000</pubDate>
		<dc:creator>jaychristopher</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[VIP]]></category>

		<guid isPermaLink="false">http://www.jaychristopher.com/?p=346</guid>
		<description><![CDATA[I was capping out an EC2 instance today and needed to upgrade the volumes capacity. This is pretty easy but you are not able to do it on-the-fly. Right click on the Volume Click &#8220;Create Snapshot Wait for the snapshot &#8230; <a href="http://www.jaychristopher.com/346-upgrading-a-volumes-capacity-on-amazon-ec2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was capping out an EC2 instance today and needed to upgrade the volumes capacity. This is pretty easy but you are not able to do it on-the-fly.</p>
<ol>
<li>Right click on the Volume</li>
<li>Click &#8220;Create Snapshot</li>
<li>Wait for the snapshot to complete in the snapshots tab</li>
<li>Right click on the snapshot</li>
<li>Click &#8220;Create Volume from snapshot&#8221;</li>
<li>Make sure to select the same availability zone as your current volume.</li>
<li>Click Yes, Create</li>
<li>Go to your Volumes</li>
<li>Right click and Detach the current Volume</li>
<li>Attach the new volume</li>
<li>You&#8217;re done!</li>
]]></content:encoded>
			<wfw:commentRss>http://www.jaychristopher.com/346-upgrading-a-volumes-capacity-on-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

