<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>The Codebelay Blog</title>
	<link>http://www.codebelay.com/blog</link>
	<description>A Journal of Software That Makes Coding Safer and Easier to Manage</description>
	<lastBuildDate>Mon, 08 Mar 2010 20:54:50 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>WPTouch Makes WordPress iPhone Friendly</title>
		<description><![CDATA[If you&#8217;re on WordPress 2.7+ and have lots of iPhone hits to your blog then get WPTouch, the plug-in that turns your website into an iPhone friendly site.
Trust me. It&#8217;s awesome!

]]></description>
		<link>http://www.codebelay.com/blog/2010/03/08/wptouch-makes-wordpress-iphone-friendly/</link>
			</item>
	<item>
		<title>How Secure Are iPhone Apps?</title>
		<description><![CDATA[I looked at the Linkedin, Flickr, and Facebook iPhone apps to see how secure they were.
When you log-in your password is safe and protected with SSL:

No.     Time        Source                Destination [...]]]></description>
		<link>http://www.codebelay.com/blog/2010/02/24/how-secure-are-iphone-apps/</link>
			</item>
	<item>
		<title>Tweets You&#8217;ll Most Likely Read at SxSW 2010</title>
		<description><![CDATA[Here&#8217;s a list of tweets you&#8217;ll most likely read at SxSW 2010:

OMFG, landed! (Ya, you and 12,000 other people.)
OMFG, I&#8217;m @crowdedplace hanging out with my new BFFs @socialmediadouche1 and @socialmediadouche2.
I&#8217;m sick of folks tweeting who they&#8217;ll be hanging out with. I don&#8217;t care. Turning the twitter fire hose off.
OMFG, I&#8217;m just telling people who I&#8217;m [...]]]></description>
		<link>http://www.codebelay.com/blog/2010/02/22/tweets-youll-most-likely-read-at-sxsw-2010/</link>
			</item>
	<item>
		<title>Install Script For Rails on Debian</title>
		<description><![CDATA[The following works great on Rackspace&#8217;s Debian Virtual Servers and within 5 minutes you got a running rails instance.

#!/bin/bash
apt-get update -y
apt-get upgrade -y
apt-get install dlocate -y
apt-get install build-essential libssl-dev libreadline5-dev zlib1g-dev -y
apt-get install sqlite3 -y
cd /usr/local/src
wget ftp://ftp.ruby-lang.org/pub/ruby/stable-snapshot.tar.gz
tar zxvf stable-snapshot.tar.gz
cd ruby
./configure &#038;&#038; make &#038;&#038; make install
ruby -v
ruby -ropenssl -rzlib -rreadline -e &#8220;puts :Hello&#8221;
cd /usr/local/src
wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
tar zxvf [...]]]></description>
		<link>http://www.codebelay.com/blog/2010/02/20/install-script-for-rails-on-debian/</link>
			</item>
	<item>
		<title>Tweets I Liked</title>
		<description><![CDATA[Wow, I&#8217;ve just finished some work for a creative technology agency I work for, and am taking a break.
Today was a pretty awesome day in tweeting.
Here are tweets I liked:

@andrew_chen put up notes from his customer acquisition talk at the First Round Capital CEO summit. This is great stuff that you can use now.
@Rsqaured tweeted [...]]]></description>
		<link>http://www.codebelay.com/blog/2010/02/01/tweets-i-liked/</link>
			</item>
	<item>
		<title>Survival Books for 2010</title>
		<description><![CDATA[At a San Francisco ad agency, I&#8217;ve seen an office of well over 600 people in December of 2008 shrink to an office of less than 140.
I got to visit the office on Thursday and it felt like a beehive where the queen bee has left and only hangers on are busy milling about.
How did [...]]]></description>
		<link>http://www.codebelay.com/blog/2010/01/30/survival-books-for-2010/</link>
			</item>
	<item>
		<title>Market Prediction means AI</title>
		<description><![CDATA[A brilliant insight just came to me:
Achieving true market prediction means having the capacity to create and predict the behavior of an artificial intelligence.
Here are the reasons why:
1. The description of AI from Caprica suggests consciousness can be built given a sufficient amount of recorded on-line activity.
2. If you know how the parts of a [...]]]></description>
		<link>http://www.codebelay.com/blog/2009/12/26/market-prediction-means-ai/</link>
			</item>
	<item>
		<title>Where are the people that hack together in meatspace?</title>
		<description><![CDATA[I&#8217;ve got a flu and am hopped up on ibuprofen and Nyquil.
This year I&#8217;ve been telecommuting and co-working. I&#8217;ve made a few friends, but we don&#8217;t hang out much. I&#8217;ve actually been blown off by a few people to, but you know what? You&#8217;re hardly worth the thought.
This rant is addressed to those of you [...]]]></description>
		<link>http://www.codebelay.com/blog/2009/12/13/where-are-the-people-that-hack-together-in-meatspace/</link>
			</item>
	<item>
		<title>WP Geo Plugin</title>
		<description><![CDATA[The print_GeoCache_Url function came across my email today from a self-described local designer and geek, but after a little research, I found out it only works up to WordPress 1.2 . Thank goodness for the WordPress WP-Geo Plug-in which I&#8217;m using right now.
More info here: WPGeo.com
]]></description>
		<link>http://www.codebelay.com/blog/2009/11/27/wp-geo-plugin/</link>
		<georss:point>37.7783409 -122.4339839</georss:point><geo:lat>37.7783409</geo:lat><geo:long>-122.4339839</geo:long>	</item>
	<item>
		<title>EC2 Backup Script</title>
		<description><![CDATA[This is a quick and dirty EC2 backup script for virtual unix servers that works just fine when crontabbed:
#!/bin/bash
DATE=`date +%m%d%Y-%H%m%M`
BUCKET=&#8221;codebelay-$DATE&#8221;
PRIVATE_KEY=&#8217;pk-codebelay.pem&#8217;
PRIVATE_CERT=&#8217;cert-codebelay.pem&#8217;
USERID=&#8217;555555555555&#8242;
AWS_ACCESS_ID=&#8217;AKIA0000000000000&#8242;
AWS_SECRET=&#8217;asdf+asdf+asdf+asdf&#8217;
s3cmd mb s3://$BUCKET
cd /mnt
mkdir img
ec2-bundle-vol -d /mnt/img -k /mnt/$PRIVATE_KEY -c /mnt/$PRIVATE_CERT -u $USERID -s 9999 &#8211;arch i386
cd /dev
mkdir loop
cd loop
mknod 0 b 7 0
ec2-upload-bundle -b $BUCKET -m /mnt/img/image.manifest.xml -a $AWS_ACCESS_ID -s $AWS_SECRET
# rm -rf /mnt/img
echo &#8220;please [...]]]></description>
		<link>http://www.codebelay.com/blog/2009/11/14/ec2-backup-script/</link>
			</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.399 seconds -->
