<?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>Cory O&#039;Daniel - These are just words &#187; Random</title>
	<atom:link href="http://coryodaniel.com/index.php/category/random/feed/" rel="self" type="application/rss+xml" />
	<link>http://coryodaniel.com</link>
	<description>Software development, thoughts, and randomness</description>
	<lastBuildDate>Thu, 17 Nov 2011 21:18:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using devise&#8217;s scoped url helpers in Cucumber; new_registration_path, new_session_path</title>
		<link>http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/</link>
		<comments>http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 20:40:36 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[BDD]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[RubyDevelopment]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[devise]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=642</guid>
		<description><![CDATA[You can use devise's scoped url helpers from cucumber, but you have to use them by their real Url Helper method names:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module NavigationHelpers
  def path_to&#40;page_name&#41;
    case page_name
    when /the sign up page/
      # dont use the helper's helper
      [...]]]></description>
			<content:encoded><![CDATA[<p>You can use devise's scoped url helpers from cucumber, but you have to use them by their real Url Helper method names:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">module</span> NavigationHelpers
  <span style="color:#9966CC; font-weight:bold;">def</span> path_to<span style="color:#006600; font-weight:bold;">&#40;</span>page_name<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">case</span> page_name
    <span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>the sign up page<span style="color:#006600; font-weight:bold;">/</span>
      <span style="color:#008000; font-style:italic;"># dont use the helper's helper</span>
      <span style="color:#008000; font-style:italic;"># new_registration_path(:user)      </span>
&nbsp;
      <span style="color:#008000; font-style:italic;"># use the underlying url helper</span>
      new_user_registration_path
    <span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>the sign <span style="color:#9966CC; font-weight:bold;">in</span> page<span style="color:#006600; font-weight:bold;">/</span>
      <span style="color:#008000; font-style:italic;"># dont use the helper's helper</span>
      <span style="color:#008000; font-style:italic;"># new_session_path(:user)      </span>
&nbsp;
      <span style="color:#008000; font-style:italic;"># use the underlying url helper</span>
      new_user_session_path
    <span style="color:#9966CC; font-weight:bold;">else</span>
      <span style="color:#008000; font-style:italic;">#...yada, yada</span></pre></td></tr></table></div>

<p align="left"><a class="tt" href="http://twitter.com/home/?status=Using+devise%E2%80%99s+scoped+url+helpers+in+Cucumber%3B+new_registration_path%2C+new_session_path+http://coryodaniel.com/?p=642" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/&amp;title=Using+devise%E2%80%99s+scoped+url+helpers+in+Cucumber%3B+new_registration_path%2C+new_session_path" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/&amp;t=Using+devise%E2%80%99s+scoped+url+helpers+in+Cucumber%3B+new_registration_path%2C+new_session_path" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/&amp;title=Using+devise%E2%80%99s+scoped+url+helpers+in+Cucumber%3B+new_registration_path%2C+new_session_path" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/&amp;title=Using+devise%E2%80%99s+scoped+url+helpers+in+Cucumber%3B+new_registration_path%2C+new_session_path" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/10/07/using-devises-scoped-url-helpers-in-cucumber-new_registration_path-new_session_path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen shots of Steve Jobs Homage Pages, and Smarmy comments.</title>
		<link>http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/</link>
		<comments>http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 18:54:04 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[homage]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[randomness]]></category>
		<category><![CDATA[steve jobs]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=637</guid>
		<description><![CDATA[This is just a few screen shots of some big software companies with homages on their home pages to Steve Jobs. These are listed from Classy to Least Classy.
Apple

Well of course they have one.
Google

Despite the phone war, classy Google - Very classy.
Adobe

Bastard wouldn't let your crappy software on his iOS, but a little reminiscent photo. [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a few screen shots of some big software companies with homages on their home pages to Steve Jobs. These are listed from Classy to Least Classy.</p>
<p><strong>Apple</strong><br />
<img width="540px" src="http://static.coryodaniel.com/stuff/steve/apple.PNG" alt="Apple - Steve Jobs Homage" /><br />
<i>Well of course they have one.</i></p>
<p><strong>Google</strong><br />
<img width="540px" src="http://static.coryodaniel.com/stuff/steve/google.PNG" alt="Google - Steve Jobs Homage" /><br />
<i>Despite the phone war, classy Google - Very classy.</i></p>
<p><strong>Adobe</strong><br />
<img width="540px" src="http://static.coryodaniel.com/stuff/steve/adobe.PNG" alt="Adobe - Steve Jobs Homage" /><br />
<i>Bastard wouldn't let your crappy software on his iOS, but a little reminiscent photo. *Respect*</i></p>
<p><strong>Microsoft</strong><br />
<img width="540px" src="http://static.coryodaniel.com/stuff/steve/microsoft.PNG" alt="Microsoft - Steve Jobs Homage" /><br />
<i>"Steve Jobs is dead, btw do you have an XBox 360 yet? Apple never made a console - Just sayin'"</i></p>
<p><strong>Dell</strong><br />
<img width="540px" src="http://static.coryodaniel.com/stuff/steve/dell.PNG" alt="Dell - Steve Jobs Homage" /><br />
<i>"Who the fuck is Steve Jobs?" Michael Dell! *Tsk, tsk* That's just rude.</i></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Screen+shots+of+Steve+Jobs+Homage+Pages%2C+and+Smarmy+comments.+http://coryodaniel.com/?p=637" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/&amp;title=Screen+shots+of+Steve+Jobs+Homage+Pages%2C+and+Smarmy+comments." title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/&amp;t=Screen+shots+of+Steve+Jobs+Homage+Pages%2C+and+Smarmy+comments." title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/&amp;title=Screen+shots+of+Steve+Jobs+Homage+Pages%2C+and+Smarmy+comments." title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/&amp;title=Screen+shots+of+Steve+Jobs+Homage+Pages%2C+and+Smarmy+comments." title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/10/06/screen-shots-of-steve-jobs-homage-pages-and-smarmy-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soft launch of Rebody (rebodyhq.com)</title>
		<link>http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/</link>
		<comments>http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:50:38 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=617</guid>
		<description><![CDATA[Ian Serlin and I have been working on kolaboratory's first official project for the past few months called Rebody.
Rebody is a fitness and health analytics and tracking platform. The goal is to help people lose weight like I did through setting short goals and focusing on your body's metrics so you can see what really [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ianserlin.com">Ian Serlin</a> and I have been working on kolaboratory's first official project for the past few months called <a href="http://rebodyhq.com/coryblog">Rebody</a>.</p>
<p><a href="http://rebodyhq.com/coryblog">Rebody</a> is a fitness and health analytics and tracking platform. The goal is to help people lose weight <a href="http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/">like I did</a> through setting short goals and focusing on your body's metrics so you can see what really works for you. </p>
<p>Beyond that <a href="http://rebodyhq.com/coryblog">Rebody</a> will soon have a network of trusted and qualified personal trainers to look into your metrics and questions to help you determine how to "rebuild yourself", as well as a community of people sharing their results that you can browse for inspiration or to apply their methods to yourself.</p>
<p>We are in our soft launch right now accepting Alpha sign ups. For pre-registering you'll get the first three months for free and lock in at $9 a month for life (our competitors software starts around $25/mo).</p>
<p>I started my experiment today. 10% body fat here I come. Can I do it? You'll need to follow me on rebody to find out.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Soft+launch+of+Rebody+%28rebodyhq.com%29+http://coryodaniel.com/?p=617" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/&amp;title=Soft+launch+of+Rebody+%28rebodyhq.com%29" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/&amp;t=Soft+launch+of+Rebody+%28rebodyhq.com%29" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/&amp;title=Soft+launch+of+Rebody+%28rebodyhq.com%29" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/&amp;title=Soft+launch+of+Rebody+%28rebodyhq.com%29" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/04/11/soft-launch-of-rebody-rebodyhq-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hulu&#8217;s April Fool&#8217;s Prank</title>
		<link>http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/</link>
		<comments>http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 09:50:22 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=610</guid>
		<description><![CDATA[If you haven't seen Hulu's April fool's prank, you are missing out.

I have to say, they had me at first, but if they really wanted to trick me they would have pretended to add some good content.
PWNED.
    ]]></description>
			<content:encoded><![CDATA[<p>If you haven't seen <a href="http://hulu.com">Hulu's April fool's prank</a>, you are missing out.</p>
<p><img src="http://static.coryodaniel.com/stuff/hulu.jpg" alt="hulu" width="400"></p>
<p>I have to say, they had me at first, but if they really wanted to trick me they would have pretended to add some good content.</p>
<p>PWNED.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Hulu%E2%80%99s+April+Fool%E2%80%99s+Prank+http://coryodaniel.com/?p=610" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/&amp;title=Hulu%E2%80%99s+April+Fool%E2%80%99s+Prank" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/&amp;t=Hulu%E2%80%99s+April+Fool%E2%80%99s+Prank" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/&amp;title=Hulu%E2%80%99s+April+Fool%E2%80%99s+Prank" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/&amp;title=Hulu%E2%80%99s+April+Fool%E2%80%99s+Prank" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/04/01/hulus-april-fools-prank/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Four Hour Body PAGG Stack, Cheap &amp; Reliable Vendor</title>
		<link>http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/</link>
		<comments>http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 17:33:29 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=598</guid>
		<description><![CDATA[There have been a lot of over-night PAGG Stack suppliers since the Four Hour Body came out. You can get all the components way cheaper if you buy them individually and you can also get them from a reputable supplier.
Here are the links to picking up all the components on BodyBuilding.com. Stop wasting extra money [...]]]></description>
			<content:encoded><![CDATA[<p>There have been a lot of over-night PAGG Stack suppliers since the <a href="http://www.fourhourbody.com/">Four Hour Body</a> came out. You can get all the components way cheaper if you buy them individually and you can also get them from a reputable supplier.</p>
<p>Here are the links to picking up all the components on BodyBuilding.com. Stop wasting extra money on the companies that "bundle" them for you.</p>
<ul>
<li><a href="http://bit.ly/gVR86e">Policosanol: 20-25mg</a></li>
<li><a href="http://bit.ly/g6aJH2">Alpha-lipoic acid: 100-300mg</a></li>
<li><a href="http://bit.ly/e0r3Dr">Green tea flavanols: 325mg (decaffeinated)</a></li>
<li><a href="http://bit.ly/g0LpRd">Garlic extract</a></li>
</ul>
<p>If you really want to spend the extra money and get them bundled <a href="http://www.paggreview.com/">PAGGReview</a> suggests <a href="http://zfer.us/UsgQd">Pareto Nutrition</a>.</p>
<p>Get skinny my fatties, muah ha ha ha.</p>
<p><STRONG>UPDATE:</STRONG><br />
I was out of town for a week. During that week I went off the Slow Carb diet and began eating 'normally'. For one week I ate carbs, and cheese, and milk. I also stuck to the PAGG protocol for that week. Note, I did not binge, I at normally. I'm home, just weighed in, and I'm the same weight as when I left. I know a week isn't a long experiment time, but it is still pretty interesting results.</p>
<p>Also, I've been doing the poor man's build your own PAGG for a month now. I'm officially going to try the <a href="http://zfer.us/UsgQd">Pareto Nutrition</a> supplements. I've found that dealing with all the pills and my giant pill box is kind of a pain in the ass.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Four+Hour+Body+PAGG+Stack%2C+Cheap+%26+Reliable+Vendor+http://coryodaniel.com/?p=598" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/&amp;title=Four+Hour+Body+PAGG+Stack%2C+Cheap+%26+Reliable+Vendor" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/&amp;t=Four+Hour+Body+PAGG+Stack%2C+Cheap+%26+Reliable+Vendor" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/&amp;title=Four+Hour+Body+PAGG+Stack%2C+Cheap+%26+Reliable+Vendor" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/&amp;title=Four+Hour+Body+PAGG+Stack%2C+Cheap+%26+Reliable+Vendor" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/02/28/four-hour-body-pagg-stack-cheap-reliable-vendor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HamlburgerHelper sets the Table &#8211; Easily create and display standard tables in Rails</title>
		<link>http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/</link>
		<comments>http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 02:04:02 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[RubyDevelopment]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[haml]]></category>
		<category><![CDATA[helpers]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=580</guid>
		<description><![CDATA[I create tables a lot in my back end for display information. 
I posted a table display/create helper method on dzone that easy to use but has a ton of options.
This is the helper I currently use on my admin backend pages to create the simplest table to a pretty complex table.
Here are all of [...]]]></description>
			<content:encoded><![CDATA[<p>I create tables a lot in my back end for display information. </p>
<p>I posted a <a href="http://snippets.dzone.com/posts/show/12951">table display/create helper method</a> on dzone that easy to use but has a ton of options.</p>
<p>This is the helper I currently use on my admin backend pages to create the simplest table to a pretty complex table.</p>
<p>Here are all of the available options and their defaults:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;">      <span style="color:#ff3333; font-weight:bold;">:table_class</span>        <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'display_grid'</span>, <span style="color:#008000; font-style:italic;"># CSS class name of the table</span>
      <span style="color:#ff3333; font-weight:bold;">:table_id</span>           <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;display_grid_#{objects.first.class.to_s.underscore.pluralize}&quot;</span>, <span style="color:#008000; font-style:italic;"># CSS ID of the table</span>
      <span style="color:#ff3333; font-weight:bold;">:heading_class</span>      <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'display_grid_heading'</span>, <span style="color:#008000; font-style:italic;"># CSS class name of the first TR (one containing TH)</span>
      <span style="color:#ff3333; font-weight:bold;">:heading_id</span>         <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;display_grid_heading_#{objects.first.class.to_s.underscore.pluralize}&quot;</span>, <span style="color:#008000; font-style:italic;"># CSS ID of the first TR</span>
      <span style="color:#ff3333; font-weight:bold;">:th_class</span>           <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'display_grid_th'</span>, <span style="color:#008000; font-style:italic;"># CSS class for all TH elements</span>
      <span style="color:#ff3333; font-weight:bold;">:tr_class</span>           <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'display_grid_tr'</span>, <span style="color:#008000; font-style:italic;"># CSS class for all TR elements</span>
      <span style="color:#ff3333; font-weight:bold;">:td_class</span>           <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'display_grid_td'</span>,  <span style="color:#008000; font-style:italic;"># CSS class for all TD elements</span>
      <span style="color:#ff3333; font-weight:bold;">:even_odd</span>           <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">true</span>, <span style="color:#008000; font-style:italic;"># Should even/odd classes be added</span>
      <span style="color:#ff3333; font-weight:bold;">:format_date</span>        <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span>, <span style="color:#008000; font-style:italic;">#nil | lambda{|datetime|} # Time formatter (receives date object, expects string)</span>
      <span style="color:#ff3333; font-weight:bold;">:numeric_td_class</span>   <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'numeric'</span>, <span style="color:#008000; font-style:italic;"># CSS class for any TDs containing a number</span>
      <span style="color:#ff3333; font-weight:bold;">:date_td_class</span>      <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'date'</span>, <span style="color:#008000; font-style:italic;"># CSS class for any TDs containing something date-like</span>
      <span style="color:#ff3333; font-weight:bold;">:string_td_class</span>    <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'string'</span>, <span style="color:#008000; font-style:italic;"># CSS class for any TDs containing a string</span>
&nbsp;
      <span style="color:#008000; font-style:italic;"># Any of this will create an 'Actions' heading, the lambdas receive the object, and expect a string</span>
      <span style="color:#ff3333; font-weight:bold;">:show_action</span>        <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span>, <span style="color:#008000; font-style:italic;"># lambda{|object| link_to '', my_path(object)}</span>
      <span style="color:#ff3333; font-weight:bold;">:edit_action</span>        <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span>, <span style="color:#008000; font-style:italic;"># lambda{|object|} </span>
      <span style="color:#ff3333; font-weight:bold;">:destroy_action</span>     <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span>, <span style="color:#008000; font-style:italic;"># lambda{|object|}</span></pre></td></tr></table></div>

<p>Using it is pretty easy, just drop it in your app/helpers folder and...</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;">display_grid<span style="color:#006600; font-weight:bold;">&#40;</span>User.<span style="color:#9900CC;">all</span>, <span style="color:#006600; font-weight:bold;">&#123;</span>
  <span style="color:#ff3333; font-weight:bold;">:show_action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#CC0066; font-weight:bold;">lambda</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>user<span style="color:#006600; font-weight:bold;">|</span> link_to user.<span style="color:#9900CC;">display_name</span>, public_user_path<span style="color:#006600; font-weight:bold;">&#40;</span>user<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
  <span style="color:#ff3333; font-weight:bold;">:table_id</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'cool_users'</span>
<span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#006600; font-weight:bold;">&#41;</span></pre></td></tr></table></div>

<p>Its pretty simple. It'll dump out a table, and then you can go and style it using the CSS classes/ids above.</p>
<p>Woot, back end DRY.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=HamlburgerHelper+sets+the+Table+%E2%80%93+Easily+create+and+display+standard+tables+in+Rails+http://coryodaniel.com/?p=580" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/&amp;title=HamlburgerHelper+sets+the+Table+%E2%80%93+Easily+create+and+display+standard+tables+in+Rails" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/&amp;t=HamlburgerHelper+sets+the+Table+%E2%80%93+Easily+create+and+display+standard+tables+in+Rails" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/&amp;title=HamlburgerHelper+sets+the+Table+%E2%80%93+Easily+create+and+display+standard+tables+in+Rails" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/&amp;title=HamlburgerHelper+sets+the+Table+%E2%80%93+Easily+create+and+display+standard+tables+in+Rails" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/02/16/hamlburgerhelper-sets-the-table-easily-create-and-display-standard-tables-in-rails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hey fatty!; or my preliminary Slow Carb diet results</title>
		<link>http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/</link>
		<comments>http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 16:00:51 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[4hb]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[p90x]]></category>
		<category><![CDATA[slow carb]]></category>
		<category><![CDATA[tim ferris]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=555</guid>
		<description><![CDATA[In the past 35 days I have gone from 211 pounds down to 194.6 pounds. And I did it without doing grueling workouts and honestly without sacrificing too much on a diet.
Around Christmas I had just gotten a copy of The Four Hour Body by Tim Ferriss. I was really interested in losing a lot [...]]]></description>
			<content:encoded><![CDATA[<p>In the past 35 days I have gone from 211 pounds down to 194.6 pounds. And I did it without doing grueling workouts and honestly without sacrificing too much on a diet.</p>
<p>Around Christmas I had just gotten a copy of <a href="http://www.fourhourbody.com/">The Four Hour Body</a> by <a href="TFERRISS">Tim Ferriss</a>. I was really interested in losing a lot of weight easily. Something I hadn't been able to do in almost 9 years of trying very hard.</p>
<p>There are a lot of doctors, experts and speculators that criticize the book saying that the plans couldn't/didn't work. There are a lot of <i>people</i> out there that have changed their lives that beg to differ, and I am one of those people.</p>
<p><strong>My backstory</strong><br />
I'm 30 years old. When I was 22 I started to get a little chubby, not giant, but I rocked a serious beer gut. By the time I was 26 I had started to get kinda fat. Up around 220lbs on a 5'10" frame. Started to get that second chin too, not cute.</p>
<p><strong>My harajuku moment</strong><br />
Around the end of 2009 was the first time I had ever accurately had my body fat measured. I had 20.2% body fat and weighed just about 215lbs. I have a sweet tooth and love burgers, so I had difficulty losing weight even while I was working out. The treadmill wasn't cutting it, and with 1/5 of my body being fat, I was really disappointed in myself.</p>
<p><strong>My exercise plan</strong><br />
March 2010 I began P90X. I didn't want to get muscular so I did P90X Lean, I busted my ass for three months, but I'd go on and off the diet. I'd do really well for a week, not see my weight change, then I'd snack because I figured, "hey, carrots and juice aren't making me skinny anyway."</p>
<p>After my 90 days of P90X I didn't have the awesome abs and body that you see in the infomercial, but I did the work out <b>every-single-day</b>. Nothing really changed, I had significantly more endurance and lost about 4 lbs, but that was it.</p>
<p>So what to do? </p>
<p><strong>I tried again.</strong><br />
I did P90X for another 90 days doing the regular program and I started cycling to work every day I could. I thought that my problem with P90X was going with the Lean program rather than the more intense standard program - I didn't blame it on my snacking which only happened once or twice a week and I sure as hell didn't blame it on my lattes.</p>
<p>After my second 90 days of P90X I can drop and do 100 push-ups easily. My arms and shoulders are pretty well defined, and I have some pretty creepy muscular legs. If the rest of my body looked like my legs, you'd be banging me right now (all cycling and plyo).</p>
<p>I still had a fatty core. I had gotten my weight down to 211 and my body fat down to 18.8%. All-in-all I had some neat results, but I was still disappointed.</p>
<p><strong>My new plan</strong><br />
After reading the Four Hour Body and hearing about people losing all the weight I wanted to lose in 30 days and <i>not</i> working out 7 days a week. I figured it was way easier than P90X so why not? It's only 30 days!</p>
<p>For me, numbers are inspiration and if I see something changing, I get happy. Nothing changes, disappointment.</p>
<p>My first step was to buy a high quality scale that could "accurately" measure weight and body fat. I wanted to see it every day, and I need the mental/emotional reward of seeing my numbers go down.</p>
<p>I decided to move into the diet one meal at a time. I was going to replace my breakfast that normally consisted of either a bagel or a donut and a medium latte with the very standard eggs, beans and spinach. During the initial phase I also stopped working out completely because I wanted to ensure the results were coming from the diet.</p>
<p>The results were amazing. For two weeks I replaced just my breakfast with a slow carb meal. I ate just as bad as I normally do for lunch and dinner. Milk and carbs are a trigger food for me. I dropped my weight to 197.8 from 211, that's just about 13 pounds.</p>
<p>Unfortunately after those two weeks I got bronchitis and didn't 'feel' like being on the diet while I was sick, I wanted comfort food. I slowly teetered back to the over 200 mark by adding milk and carbs back into my diet in the AM.</p>
<p><strong>Where I am today</strong><br />
This morning I weighed in 194.6 pounds and 15.1% body fat. </p>
<p>I've been back on the diet now for only two weeks. Last week only doing slow carb meals twice a day and having a 'normal' dinner. This week I've been doing slow carb meals for every meal.</p>
<p>The most important thing about the book is that it's about experimenting. If it doesn't work, figure out why or don't do it. </p>
<p>I succeeded by setting little goals for myself and being persistent with knowing what was happening to my body quantitatively. </p>
<p>Now for the first time in almost 10 years I weigh less than I did in college and I'm on my way to having a torso like these super sexy legs I'm rocking.</p>
<p>I have shifted my focus from my weight to body fat percentage. I'm tweaking things to maintain my 3% monthly drop in body fat and the new target is a cool 12%.</p>
<p>I've also started working out again, but I'm doing the kettle bell and slow cadence workouts described in the four hour body rather than intense time wasting workouts like P90X as I'm going for definition, not endurance. If the exercise plans have the same effect as the diet I'll see you bedside mid-March.</p>
<p><strong>Update</strong><br />
As of February 17th, I dropped below 190. I'm losing on average 1/2 to 1 lb a day.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Hey+fatty%21%3B+or+my+preliminary+Slow+Carb+diet+results+http://coryodaniel.com/?p=555" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/&amp;title=Hey+fatty%21%3B+or+my+preliminary+Slow+Carb+diet+results" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/&amp;t=Hey+fatty%21%3B+or+my+preliminary+Slow+Carb+diet+results" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/&amp;title=Hey+fatty%21%3B+or+my+preliminary+Slow+Carb+diet+results" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/&amp;title=Hey+fatty%21%3B+or+my+preliminary+Slow+Carb+diet+results" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2011/02/11/hey-fatty-or-my-preliminary-slow-carb-diet-results/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Keeping a Software Development Journal or Diary</title>
		<link>http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/</link>
		<comments>http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 19:53:33 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[git log]]></category>
		<category><![CDATA[software development diary]]></category>
		<category><![CDATA[software development journal]]></category>
		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=537</guid>
		<description><![CDATA[I'm the kind of person that keeps tons of notes on my thoughts as I am developing on a new project. I generally abuse the README file in my project. It was a mixture of my notes and other information for the project organized by topic - where applicable.
Recently I started keeping a JOURNAL file [...]]]></description>
			<content:encoded><![CDATA[<p>I'm the kind of person that keeps tons of notes on my thoughts as I am developing on a new project. I generally abuse the README file in my project. It was a mixture of my notes and other information for the project organized by topic - where applicable.</p>
<p>Recently I started keeping a JOURNAL file in my projects that was a day-by-day dump of what I was thinking and why I chose certain choices. It is a really nice way of organizing your thoughts and providing a way to look back through "what you were thinking." It also provides other developers working on the project a way to look at how you came to a certain conclusion. </p>
<p>I was originally doing this in markdown, but recently went searching for TextMate plugin. I found a really great one called <a href="http://github.com/ats/JournalTasks.tmbundle">JournalTasks</a>.</p>
<p>I've been making two entries a day on my project. One I keep 'open' all day dumping my thoughts on implementation and any interesting choices as well as good references I find while doing research. I have a second one I make when I'm wrapping up as a checklist of what was accomplished (pretty much a git commit log and some additional notes) and what I need to work on next. The plugin also outputs using markdown, supports tagging/searching your posts and simple tasks support.</p>
<p>If you aren't keeping a journal of your thoughts during development, I'd suggest it. A well organized record of your brain; its a good thing.</p>
<p>Thanks to <a href="http://www.schussman.com/">Alan Schussman</a> for a great bundle (and saving me the time of writing one).</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Keeping+a+Software+Development+Journal+or+Diary+http://bit.ly/9RFVsA" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/&amp;title=Keeping+a+Software+Development+Journal+or+Diary" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/&amp;t=Keeping+a+Software+Development+Journal+or+Diary" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/&amp;title=Keeping+a+Software+Development+Journal+or+Diary" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/&amp;title=Keeping+a+Software+Development+Journal+or+Diary" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2010/11/02/keeping-a-software-development-journal-or-diary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music180 and Vokle: How to get a development deal. With Lucas Kelller of The Collective and Music180</title>
		<link>http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/</link>
		<comments>http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:49:14 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=534</guid>
		<description><![CDATA[
Aww, my little web sites are working together, cute.
    ]]></description>
			<content:encoded><![CDATA[<div id='vokle_embed_lineup_6220_container'><script type='text/javascript' src='http://api.vokle.com/embed/lineup/6220?'></script></div>
<p>Aww, my little web sites are working together, cute.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Music180+and+Vokle%3A+How+to+get+a+development+deal.+With+Lucas+Kelller+of+The+Collective+and+Music180+http://bit.ly/duM0WS" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/&amp;title=Music180+and+Vokle%3A+How+to+get+a+development+deal.+With+Lucas+Kelller+of+The+Collective+and+Music180" title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/&amp;t=Music180+and+Vokle%3A+How+to+get+a+development+deal.+With+Lucas+Kelller+of+The+Collective+and+Music180" title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/&amp;title=Music180+and+Vokle%3A+How+to+get+a+development+deal.+With+Lucas+Kelller+of+The+Collective+and+Music180" title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/&amp;title=Music180+and+Vokle%3A+How+to+get+a+development+deal.+With+Lucas+Kelller+of+The+Collective+and+Music180" title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2010/09/01/music180-and-vokle-how-to-get-a-development-deal-with-lucas-kelller-of-the-collective-and-music180/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;m working on: Music180 an artist development platform where you can meet real top producers, songwriters and more.</title>
		<link>http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/</link>
		<comments>http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 21:39:09 +0000</pubDate>
		<dc:creator>Cory O'Daniel</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://coryodaniel.com/?p=531</guid>
		<description><![CDATA[I've been working on Music180 now for a few months. The site is getting pretty cool. I figured I would share it here in case anyone was interested.
Music180 is an artist development platform where you can meet and work with the world's top producers, songwriters, managers and more.
There is also of course my profile where [...]]]></description>
			<content:encoded><![CDATA[<p>I've been working on Music180 now for a few months. The site is getting pretty cool. I figured I would share it here in case anyone was interested.</p>
<p><a href="http://music180.com">Music180 is an artist development platform where you can meet and work with the world's top producers, songwriters, managers and more.</a></p>
<p>There is also of course my profile where you can contact me for designing band web pages, if you are so inclined. <a href="http://music180.com/coryodaniel">Cory ODaniel on Music180</a></p>
<p>You are in the know.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=What+I%E2%80%99m+working+on%3A+Music180+an+artist+development+platform+where+you+can+meet+real+top+producers%2C+songwriters+and...+http://bit.ly/9wOaul" title="Post to Twitter"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/&amp;title=What+I%E2%80%99m+working+on%3A+Music180+an+artist+development+platform+where+you+can+meet+real+top+producers%2C+songwriters+and..." title="Post to Digg"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-digg-big2.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/&amp;t=What+I%E2%80%99m+working+on%3A+Music180+an+artist+development+platform+where+you+can+meet+real+top+producers%2C+songwriters+and..." title="Post to Facebook"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-facebook-big2.png" alt="Post to Facebook" /></a> <a class="tt" href="http://reddit.com/submit?url=http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/&amp;title=What+I%E2%80%99m+working+on%3A+Music180+an+artist+development+platform+where+you+can+meet+real+top+producers%2C+songwriters+and..." title="Post to Reddit"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-reddit-big2.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/&amp;title=What+I%E2%80%99m+working+on%3A+Music180+an+artist+development+platform+where+you+can+meet+real+top+producers%2C+songwriters+and..." title="Post to StumbleUpon"><img class="nothumb" src="http://coryodaniel.com/wp-content/plugins/tweet-this/icons/tt-su-big2.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://coryodaniel.com/index.php/2010/08/26/what-im-working-on-music180-an-artist-development-platform-where-you-can-meet-real-top-producers-songwriters-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

