<?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>simpleisnt</title>
	<atom:link href="http://www.simpleisnt.com/isnt_is/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.simpleisnt.com/isnt_is</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 08 May 2010 21:23:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>EC2: Coda Public Key Authentication</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=66</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=66#comments</comments>
		<pubDate>Sat, 08 May 2010 19:52:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web-Dev]]></category>
		<category><![CDATA[ec2]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/isnt_is/?p=66</guid>
		<description><![CDATA[Panic&#8217;s Coda uses the same method of connecting to EC2 instances as I described previously here.
In short:
Edit your ~/.ssh/config file (or create one if you don&#8217;t already have it) and add an entry that looks like this (variable areas are marked like this {variable})
Host {the shortcut name that you want to use to connect to [...]]]></description>
			<content:encoded><![CDATA[<p>Panic&#8217;s <a href="http://panic.com/coda">Coda</a> uses the same method of connecting to EC2 instances as I described previously <a href="http://www.simpleisnt.com/isnt_is/?p=17">here</a>.</p>
<p>In short:</p>
<blockquote><p>Edit your ~/.ssh/config file (or create one if you don&#8217;t already have it) and add an entry that looks like this (variable areas are marked like this {variable})</p>
<p>Host {the shortcut name that you want to use to connect to the instance}<br />
User {the user you will connect with, for instance root}</p>
<p>Port 22 Hostname {host name or ip address} IdentityFile {location of your private key file, for example ~/.ssh/id_rsa-gsg-keypair} TCPKeepAlive yes IdentitiesOnly yes</p>
<p>And thats it, you should be able to connect to your instance (or any server you have private-key authentication setup on) with Transmit.  Simply use the shortcut name that you entered after &#8220;host&#8221; in the server field in the transmit connection screen and leave the password and user fields blank.  MAKE SURE that you are using sftp and that you have poked a hole in the firewall on port 22 with the ec2 tools (ec2-authorize -p 22).</p></blockquote>
<p>I did want to mention that there is one gotcha laying in wait, Coda will force the host to lower case, so you will need to enter the host in the .ssh/config file as lower case or the it will not find the entry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EC2: mounting EBS in CentOS</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=33</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=33#comments</comments>
		<pubDate>Sat, 18 Apr 2009 19:58:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ec2]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/isnt_is/?p=33</guid>
		<description><![CDATA[I&#8217;m writing this more as a future reference for myself and anyone that starts searching for specific howto stuff for ec2. The setup process is pretty well documented elsewhere, so I&#8217;m going to start into the post setup setup.
Today&#8217;s episode: Mounting your EBS in Cent:
Create your EBS (elasticfox is great for this) and link it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this more as a future reference for myself and anyone that starts searching for specific howto stuff for ec2. The setup process is pretty well documented elsewhere, so I&#8217;m going to start into the post setup setup.</p>
<p>Today&#8217;s episode: Mounting your EBS in Cent:</p>
<p>Create your EBS (elasticfox is great for this) and link it to your instance.</p>
<p>Next  run-&gt; mkfs.ext3 /dev/sdb (or whatever sd* you want to use, you have to use the one you set in elasticfox)</p>
<p>then -&gt; echo &#8220;/dev/sdb /vol ext3 noatime 0 0&#8243; &gt;&gt; /etc/fstab</p>
<p>then -&gt; create the directory for vol  (mkdir /vol)</p>
<p>then -&gt; mount vol (mount/vol)</p>
<p>Check to see that all has worked with df &#8211;si</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Facebook, codeigniter and errors</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=18</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=18#comments</comments>
		<pubDate>Mon, 26 Jan 2009 23:54:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web-Dev]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/isnt_is/?p=18</guid>
		<description><![CDATA[When you throw an error in codeigniter, it gives you helpful little error pages.  Helpful, that is, if you are building for a domain rather than building a facebook app.  Those error pages will generate a decidedly un-helpful facebook errors because they have body tags (and probably other stuff that&#8217;s not going to make it [...]]]></description>
			<content:encoded><![CDATA[<p>When you throw an error in codeigniter, it gives you helpful little error pages.  Helpful, that is, if you are building for a domain rather than building a facebook app.  Those error pages will generate a decidedly un-helpful facebook errors because they have body tags (and probably other stuff that&#8217;s not going to make it through fb&#8217;s re-interpreting).  The solution, though, is sweetly simple:</p>
<p>(fbml apps only, iframe you&#8217;re likely not having this problem)</p>
<p>In your errors directory change the markup for error_404, error_db, error_general and error_php to something like this</p>
<p>&lt;fb:error&gt;</p>
<p>&lt;fb:message&gt;&lt;?=$heading?&gt;&lt;/fb:message&gt;</p>
<p>&lt;?=$message?&gt;</p>
<p>&lt;/fb:error&gt;</p>
<p>Nothing else, just that line, and when you see that error on the facebook side it will be styled just like an error from fb itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EC2: Transmit Public-Key Authentication</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=17</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=17#comments</comments>
		<pubDate>Sun, 18 Jan 2009 02:08:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ec2]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/isnt_is/?p=17</guid>
		<description><![CDATA[** Post Transmit 4 Update **

Transmit 4 offers this out of the box without the workaround below, simply click on the key next to the password field under the sftp tab and show Transmit where your key file resides.  All done.  Thanks Panic.

Original Post (Still valid for users of Transmit 3 and earlier)
Looking through the [...]]]></description>
			<content:encoded><![CDATA[<h3><span style="color: #800000;">** Post Transmit 4 Update **<br />
</span></h3>
<p>Transmit 4 offers this out of the box without the workaround below, simply click on the key next to the password field under the sftp tab and show Transmit where your key file resides.  All done.  Thanks Panic.</p>
<hr />
<h3>Original Post (Still valid for users of Transmit 3 and earlier)</h3>
<p>Looking through the Google results it doesn&#8217;t seem that there is an entry that simply spells out how to connect to an ec2 instance with Transmit, so here it is:</p>
<p>Edit your ~/.ssh/config file (or create one if you don&#8217;t already have it) and add an entry that looks like this (variable areas are marked like this {variable})</p>
<blockquote><p>Host {the shortcut name that you want to use to connect to the instance}</p>
<p>User {the user you will connect with, for instance root}</p>
<p>Port 22<br />
Hostname {host name or ip address}<br />
IdentityFile {location of your private key file, for example ~/.ssh/id_rsa-gsg-keypair}<br />
TCPKeepAlive yes<br />
IdentitiesOnly yes</p></blockquote>
<p>And thats it, you should be able to connect to your instance (or any server you have private-key authentication setup on) with Transmit.  Simply use the shortcut name that you entered after &#8220;host&#8221; in the server field in the transmit connection screen and leave the password and user fields blank.  MAKE SURE that you are using sftp and that you have poked a hole in the firewall on port 22 with the ec2 tools (ec2-authorize -p 22).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PDPworks 2.1</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=14</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=14#comments</comments>
		<pubDate>Tue, 02 Dec 2008 23:21:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PDPworks]]></category>
		<category><![CDATA[Web-Dev]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/isnt_is/?p=14</guid>
		<description><![CDATA[A big update for PDPworks is live. PDPworks 2.1 has search enhancements, improved reports and much more.

It&#8217;s live at PDPworks.com 
]]></description>
			<content:encoded><![CDATA[<p>A big update for PDPworks is live. PDPworks 2.1 has search enhancements, improved reports and much more.</p>
<p><img src="http://www.simpleisnt.com/isnt_is/wp-content/uploads/2008/12/21.png" alt="21.png" /></p>
<p>It&#8217;s live at <a href="http://www.pdpworks.com" target="_blank">PDPworks.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New PDPworks Site</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=8</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=8#comments</comments>
		<pubDate>Thu, 12 Jun 2008 22:16:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PDPworks]]></category>
		<category><![CDATA[Web-Dev]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/blog/?p=8</guid>
		<description><![CDATA[Today we updated the PDPworks public facing sites, pretty&#8217;d up some things. Check it out at http://www.pdpworks.com

]]></description>
			<content:encoded><![CDATA[<p>Today we updated the PDPworks public facing sites, pretty&#8217;d up some things. Check it out at <a href="http://www.pdpworks.com">http://www.pdpworks.com</a></p>
<p align="center"><img src="http://www.simpleisnt.com/isnt_is/wp-content/uploads/2008/07/picture-5.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDPworks 2.0 Released</title>
		<link>http://www.simpleisnt.com/isnt_is/?p=5</link>
		<comments>http://www.simpleisnt.com/isnt_is/?p=5#comments</comments>
		<pubDate>Mon, 30 Jul 2007 18:42:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PDPworks]]></category>
		<category><![CDATA[Web-Dev]]></category>

		<guid isPermaLink="false">http://www.simpleisnt.com/blog/?p=5</guid>
		<description><![CDATA[Version 2 of PDPworks has been released.  2.0 features a new user interface, many new features and improvements.
  			
You can get more information on PDPworks and Current users can login here.
]]></description>
			<content:encoded><![CDATA[<p>Version 2 of PDPworks has been released.  2.0 features a new user interface, many new features and improvements.</p>
<blockquote><p><a href="http://www.simpleisnt.com/blog/wp-admin/upload.php?style=inline&amp;tab=browse&amp;post_id=5&amp;_wpnonce=2f7c252906&amp;ID=6&amp;action=view&amp;paged" id="file-link-6" title="PDPworks 2.0 Released" class="file-link image">  			<img src="http://www.simpleisnt.com/isnt_is/wp-content/uploads/2007/11/picture-1.png" alt="PDPworks 2.0 Released" /></a></p>
<p>You can get more information on PDPworks and Current users can login <a href="http://new.pdpworks.com">here</a>.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleisnt.com/isnt_is/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
