<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Construction of an Explorer</title>
	<atom:link href="http://ttatou.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ttatou.wordpress.com</link>
	<description>Different Facets of Phanousit.</description>
	<lastBuildDate>Wed, 22 Sep 2010 17:16:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ttatou.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/30f6629d12cf4d1180793eda7a6da64a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>The Construction of an Explorer</title>
		<link>http://ttatou.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ttatou.wordpress.com/osd.xml" title="The Construction of an Explorer" />
	<atom:link rel='hub' href='http://ttatou.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adding rspec to your rails app</title>
		<link>http://ttatou.wordpress.com/2010/09/22/adding-rspec-to-your-rails-app/</link>
		<comments>http://ttatou.wordpress.com/2010/09/22/adding-rspec-to-your-rails-app/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 17:16:09 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=153</guid>
		<description><![CDATA[group :development do gem &#8216;rspec-rails&#8217;, &#8217;2.0.0.beta.18&#8242; end group :test do gem &#8216;rspec&#8217;, &#8217;2.0.0.beta.18&#8242; end save gemfile do &#8220;bundle install&#8221; in terminal or command line to use rspec instead of rails default test::unit you have to: rails generate rspec:install if you are using git you can remove the tests for views and helpers git rm -r [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=153&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">group :development do</div>
<div id="_mcePaste">gem &#8216;rspec-rails&#8217;, &#8217;2.0.0.beta.18&#8242;</div>
<div id="_mcePaste">end</div>
<div id="_mcePaste">group :test do</div>
<div id="_mcePaste">gem &#8216;rspec&#8217;, &#8217;2.0.0.beta.18&#8242;</div>
<div id="_mcePaste">end</div>
<div>save gemfile</div>
<div>do &#8220;bundle install&#8221; in terminal or command line</div>
<div>to use rspec instead of rails default test::unit you have to:</div>
<div>rails generate rspec:install</div>
<div>if you are using git you can remove the tests for views and helpers</div>
<div>git rm -r spec/helpers</div>
<div>git rm -r spec/views</div>
<div>rspec spec/:</div>
<div>rspec runs the program and spec/ runs the particular directory.</div>
<div>rspec results come green and red.  green means the test passes while red means it fails.</div>
<div>TTD writes a failing test first to make sure we are testing for the right thing.</div>
<div>describe &#8220;GET &#8216;about&#8217;&#8221; do</div>
<div>it &#8220;should be successful&#8221; do</div>
<div>get &#8216;about&#8217;</div>
<div>response.should be_success</div>
<div>end</div>
<div>end</div>
<div>the first line will be the REST function for the about page.  the 2nd line will be what is spit back out.  the third line will get that page, and the 4th line is the method performed in the test.</div>
<div>&#8220;render_views&#8221; must be added to test the views along with the controller.</div>
<div>this test should fail because there is no about page.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=153&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/09/22/adding-rspec-to-your-rails-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Deploy app through Heroku</title>
		<link>http://ttatou.wordpress.com/2010/09/12/deply-app-through-heroku/</link>
		<comments>http://ttatou.wordpress.com/2010/09/12/deply-app-through-heroku/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 21:47:43 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=150</guid>
		<description><![CDATA[Once again, this is more for my benefit than anything else since I keep forgetting how to upload the app through the command line. *Make sure you have the heroku gem.  If not, I suggest you do that through the command line. $ heroku create $ git push heroku master   (this is assuming you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=150&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Once again, this is more for my benefit than anything else since I keep forgetting how to upload the app through the command line.</p>
<p>*Make sure you have the heroku gem.  If not, I suggest you do that through the command line.</p>
<p>$ heroku create</p>
<p>$ git push heroku master   (this is assuming you have already pushed your project up to github.com</p>
<p>$ heroku rake db:migrate  (if you already have models created in for your database, then this will merge whatever&#8217;s in it)</p>
<p>if you have data that would also like to upload then:</p>
<p>(sudo) install gem taps</p>
<p>$  heroku db:push</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=150&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/09/12/deply-app-through-heroku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Pushing project to github (Ruby on Rails)</title>
		<link>http://ttatou.wordpress.com/2010/09/10/pushing-project-to-github-ruby-on-rails/</link>
		<comments>http://ttatou.wordpress.com/2010/09/10/pushing-project-to-github-ruby-on-rails/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 18:16:25 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=146</guid>
		<description><![CDATA[This is mainly for me, since I cant seem to memorize this process. After creating the gemfile, go ahead do the bundle install in the command line, or terminal.  Then: git init git add . git commit -m &#8220;message&#8221; git remote add origin git@github.com:git_username/app_name.git git push origin master<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=146&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is mainly for me, since I cant seem to memorize this process.</p>
<p>After creating the gemfile, go ahead do the bundle install in the command line, or terminal.  Then:</p>
<p>git init</p>
<p>git add .</p>
<p>git commit -m &#8220;message&#8221;</p>
<p>git remote add origin git@github.com:git_username/app_name.git</p>
<p>git push origin master</p>
<pre>
<pre></pre>
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=146&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/09/10/pushing-project-to-github-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Assignment 8 Viral Marketing</title>
		<link>http://ttatou.wordpress.com/2010/06/28/assignment-8-viral-marketing/</link>
		<comments>http://ttatou.wordpress.com/2010/06/28/assignment-8-viral-marketing/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 23:22:00 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[SEO and Web Design]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=135</guid>
		<description><![CDATA[What we have here is the landing page for Laptops For All.  It contains the potentially viral video along with calls to action from the top to bottom.  The main call to action is the &#8220;design your own lap top&#8221; button.  This button links directly to the main site, where the potential customers can play [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=135&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What we have here is the landing page for Laptops For All.  It contains the potentially viral video along with calls to action from the top to bottom.  The main call to action is the &#8220;design your own lap top&#8221; button.  This button links directly to the main site, where the potential customers can play with the create-a-laptop feature.  This landing page is created to entice and pique the curiosity of male customers who are looking for a &#8220;unique&#8221; gift  to give to the special women in their lives.  Because the laptops cost a considerable amount of money, we are not expecting a sale right away, but only to present potential customers with an alternate option for their gifts.</p>
<p>The video is designed to show the visitor what may happen if they do present the right person a unique gift of a laptop such as ours.</p>
<p>This landing page will continue to be tested and the clicks will be recorded to keep an accurate number of new visitors from this landing page.</p>
<p><a href="http://ttatou.files.wordpress.com/2010/06/mockup2.png"><img class="aligncenter size-full wp-image-138" title="mockup" src="http://ttatou.files.wordpress.com/2010/06/mockup2.png?w=370&#038;h=214" alt="" width="370" height="214" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=135&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/06/28/assignment-8-viral-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>

		<media:content url="http://ttatou.files.wordpress.com/2010/06/mockup2.png" medium="image">
			<media:title type="html">mockup</media:title>
		</media:content>
	</item>
		<item>
		<title>Ruby Syntax</title>
		<link>http://ttatou.wordpress.com/2010/06/24/ruby-syntax/</link>
		<comments>http://ttatou.wordpress.com/2010/06/24/ruby-syntax/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 03:32:45 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=132</guid>
		<description><![CDATA[In ruby I can do this. first_name = Phanousit last_name = Syhakhom full_name = first_name+ &#8216; &#8216;+lastname     #or full_name = first_name + &#8216; &#8216; + lastname  # notice the spaces between the variable and +? Both will produce the same result. Ruby itself is a dynamically type language.  Which means the variable does [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=132&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">In ruby I can do this.</div>
<div id="_mcePaste">first_name = Phanousit</div>
<div id="_mcePaste">last_name = Syhakhom</div>
<div></div>
<div id="_mcePaste">full_name = first_name+ &#8216; &#8216;+lastname     #or</div>
<div id="_mcePaste">full_name = first_name + &#8216; &#8216; + lastname  # notice the spaces between the variable and +?</div>
<div></div>
<div>Both will produce the same result.</div>
<div></div>
<div id="_mcePaste">Ruby itself is a dynamically type language.  Which means the variable does not need to be set anywhere.  You can call it whenever you like and it will be that variable.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=132&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/06/24/ruby-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Assignment 5 &#8211; 6 for Viral Marketing</title>
		<link>http://ttatou.wordpress.com/2010/06/21/assignment-5-6-for-viral-marketing/</link>
		<comments>http://ttatou.wordpress.com/2010/06/21/assignment-5-6-for-viral-marketing/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 02:37:22 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=129</guid>
		<description><![CDATA[This is my viral video for Viral Marketing.  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=129&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my viral video for Viral Marketing.  <span style="text-align:center; display: block;"><a href="http://ttatou.wordpress.com/2010/06/21/assignment-5-6-for-viral-marketing/"><img src="http://img.youtube.com/vi/FhLEyXGcmes/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=129&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/06/21/assignment-5-6-for-viral-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Viral Marketing Assignment 3</title>
		<link>http://ttatou.wordpress.com/2010/06/14/viral-marketing-assignment-3/</link>
		<comments>http://ttatou.wordpress.com/2010/06/14/viral-marketing-assignment-3/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 16:04:14 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=126</guid>
		<description><![CDATA[This is the official song for Fifa&#8217;s World Cup 2010.  It is no doubt inspired by the country in which it is being hosted.  I am not quite sure if any other major tournaments have even been held on African soil, but for sure, this is the first Wold Cup held on this continent.  It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=126&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://ttatou.wordpress.com/2010/06/14/viral-marketing-assignment-3/"><img src="http://img.youtube.com/vi/xhM-cpSwrmM/2.jpg" alt="" /></a></span>
<p>This is the official song for Fifa&#8217;s World Cup 2010.  It is no doubt inspired by the country in which it is being hosted.  I am not quite sure if any other major tournaments have even been held on African soil, but for sure, this is the first Wold Cup held on this continent.  It is being host by South Africa, which has had quite a tumultuous history during its formation.  The song itself is made to uplift the spirits, and bring together the world for this major sporting event.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=126&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/06/14/viral-marketing-assignment-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Using PHP for forms</title>
		<link>http://ttatou.wordpress.com/2010/02/26/using-php-for-forms/</link>
		<comments>http://ttatou.wordpress.com/2010/02/26/using-php-for-forms/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 20:23:54 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=119</guid>
		<description><![CDATA[One of the first and I dare say, most simple things I&#8217;ve learned so far is to use PHP for grabbing information from basic forms. You can start with a simple form built in HTML. From there you would need to change the form action to the PHP document you are using to grab the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=119&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the first and I dare say, most simple things I&#8217;ve learned so far is to use PHP for grabbing information from basic forms.</p>
<p>You can start with a simple form built in HTML.</p>
<p>From there you would need to change the <strong>form action</strong> to the PHP document you are using to grab the user information.  For example &#8220;process.php&#8221;.  Make sure you remember the name in which you give the form boxes, for example &#8220;name=&#8221;name&#8221;".</p>
<div id="_mcePaste">&lt;html&gt;</div>
<div id="_mcePaste">&lt;head&gt;</div>
<div id="_mcePaste">&lt;title&gt; Forms &lt;/title&gt;</div>
<div id="_mcePaste">&lt;/head&gt;</div>
<div id="_mcePaste">&lt;body&gt;</div>
<div id="_mcePaste">&lt;form action=&#8221;process.php&#8221; method=&#8221;post&#8221;&gt;</div>
<div id="_mcePaste">Username: &lt;input type=&#8221;text&#8221; name=&#8221;username&#8221; value=&#8221;" /&gt;</div>
<div id="_mcePaste">&lt;br /&gt;</div>
<div id="_mcePaste">Password: &lt;input type=&#8221;password&#8221; name=&#8221;password&#8221; value=&#8221;" /&gt;</div>
<div id="_mcePaste">&lt;br /&gt;</div>
<div id="_mcePaste">&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;</div>
<div id="_mcePaste">&lt;/form&gt;</div>
<div id="_mcePaste">&lt;/body&gt;</div>
<div id="_mcePaste">&lt;/html&gt;</div>
<p>In the process.php page, you will need to to use the super global $_POST to grab the info from the form.  Your variables should look something like this:</p>
<p>$name = $_POST['name'];<br />
&#8230;</p>
<p><span style="white-space:pre;"> </span>&lt;?php</p>
<p><span style="white-space:pre;"> </span></p>
<p><span style="white-space:pre;"> </span>$username = $_POST['username'];</p>
<p><span style="white-space:pre;"> </span>$password = $_POST['password'];</p>
<p><span style="white-space:pre;"> </span></p>
<p><span style="white-space:pre;"> </span>echo &#8220;{$username}: {$password}&#8221;;</p>
<p><span style="white-space:pre;"> </span>?&gt;</p>
<p>When you try it out, it should return the inputs that you put in the field.  Thats basically it.  I hope it helps!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=119&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/02/26/using-php-for-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Journey Into PHP&#8230;</title>
		<link>http://ttatou.wordpress.com/2010/01/27/journey-into-php/</link>
		<comments>http://ttatou.wordpress.com/2010/01/27/journey-into-php/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 01:23:04 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/?p=117</guid>
		<description><![CDATA[My journey into PHP has been anything but easy. I was amazed by what what the language could do, and when the clients started asking for more dynamic pages, I had to take it upon myself to learn it. My intro into PHP has been anything but easy. Unlike HTML and CSS, it took more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=117&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My journey into PHP has been anything but easy.  I was amazed by what what the language could do, and when the clients started asking for more dynamic pages, I had to take it upon myself to learn it.  My intro into PHP has been anything but easy.  Unlike HTML and CSS, it took more than a text editor to get the job done.  Before you even start, you need to download the latest version of PHP (which right now is 5.3, I believe <a href="http://www.php.net">www.php.net</a>), the Apache server, and the MYSQL data base.  Fortunately I have a Macbook with OS 10.5, so PHP and Apache come built into the operating system.  After reading countless articles on the Internet and reading books, I stumbled upon <a href="http://www.lynda.com">lynda.com</a>, and it has helped me so much.  I do not have a problem reading through books and learning, but for some reason setting my computer to code in PHP was so confusing.  Lynda.com had a video tutorial and after an evening of installing everything I needed, I was coding in basic PHP by the end of the night.  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=117&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2010/01/27/journey-into-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
		<item>
		<title>First post from phone!</title>
		<link>http://ttatou.wordpress.com/2009/12/23/first-post-from-phone/</link>
		<comments>http://ttatou.wordpress.com/2009/12/23/first-post-from-phone/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 20:30:22 +0000</pubDate>
		<dc:creator>uzemaki</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[smart phone]]></category>

		<guid isPermaLink="false">http://ttatou.wordpress.com/2009/12/23/first-post-from-phone/</guid>
		<description><![CDATA[Isn&#8217;t technology wonderful? I know I haven&#8217;t been updating regularly, and its a shame on me, but more to for sure.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=116&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Isn&#8217;t technology wonderful?  I know I haven&#8217;t been updating regularly, and its a shame on me, but more to for sure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttatou.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttatou.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttatou.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttatou.wordpress.com&amp;blog=9598357&amp;post=116&amp;subd=ttatou&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttatou.wordpress.com/2009/12/23/first-post-from-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f5e916ee3cdb1c707f0118cd9c8c355?s=96&#38;d=monsterid&#38;r=R" medium="image">
			<media:title type="html">uzemaki</media:title>
		</media:content>
	</item>
	</channel>
</rss>
