<?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>McKinney Station &#187; Projects</title>
	<atom:link href="http://www.mckinneystation.com/categories/projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mckinneystation.com</link>
	<description>Ruby on Rails web application development for Dallas/Fort Worth and all of North Texas.</description>
	<lastBuildDate>Wed, 02 Sep 2009 14:29:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rails respond_to Made It Too Easy</title>
		<link>http://www.mckinneystation.com/2009/07/13/rails-respond_to-made-it-too-easy/</link>
		<comments>http://www.mckinneystation.com/2009/07/13/rails-respond_to-made-it-too-easy/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 16:49:35 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/?p=111</guid>
		<description><![CDATA[I recently had a spike in traffic (1-2 visits/day to 30-40 visits/day) over at CatechizeMe.com.  Someone out on the internet came across it, found it useful, and linked to it.  Yay!
With this new traffic, came some new requests for features.  The first was a request for a Google Gadget.  I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a spike in traffic (1-2 visits/day to 30-40 visits/day) over at <a href="http://www.catechizeme.com">CatechizeMe.com</a>.  Someone out on the internet came across it, found it useful, and linked to it.  Yay!</p>
<p>With this new traffic, came some new requests for features.  The first was a request for a <a href="http://www.google.com/ig/directory">Google Gadget</a>.  I didn&#8217;t know much about what I needed to create a Gadget, but after <a href="http://code.google.com/apis/gadgets/index.html">looking it up</a> I realized I could use the <a href="http://www.catechizeme.com/resources/catechizeme-api">CatechizeMe API</a> that came automatically when I built the app.  With just a few lines of code, the Daily Question service was created and returning JSON data.  You gotta love it when things are this easy.</p>
<p>BEFORE:</p>
<pre>
<code>  def daily_question
    @question = @catechism.daily_question
    render :template =&gt; '/questions/show'
  end</code>
</pre>
<p>AFTER:</p>
<pre>
<code>  def daily_question
    @question = @catechism.daily_question
    respond_to do |wants|
      wants.html { render :template =&gt; '/questions/show' }
      wants.js { render_json @question.to_json }
    end
  end</code>
</pre>
<p>So now I get a <a href="http://www.catechizeme.com/catechisms/westminster_shorter_catechism/daily_question">daily catechism question from the CatechizeMe website</a> or via the Google Gadget using JSON:</p>
<p><script src="http://www.gmodules.com/ig/ifr?url=http://www.catechizeme.com/static/google_gadget.xml&amp;up_catechism=westminster_shorter_catechism&amp;synd=open&amp;w=320&amp;h=150&amp;title=CatechizeMe+%3A+Daily+Catechism&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2009/07/13/rails-respond_to-made-it-too-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Google Charts with Rails</title>
		<link>http://www.mckinneystation.com/2008/08/22/using-google-charts-with-rails/</link>
		<comments>http://www.mckinneystation.com/2008/08/22/using-google-charts-with-rails/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 18:10:11 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[googlecharts]]></category>
		<category><![CDATA[microapps]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/?p=85</guid>
		<description><![CDATA[With one of my recent microapps, UnscientificPolls.com, I wanted to show the polling data in more interesting ways than just the vote counts.  Charting was the logical conclusion, but how do it was a more difficult decision.
Some of the criteria I had for choosing the charting solution included: ease of use (it is  [...]]]></description>
			<content:encoded><![CDATA[<p>With one of my recent <a href="/2008/06/03/microapps-encourage-hacking/">microapps</a>, <a href="http://www.unscientificpolls.com">UnscientificPolls.com</a>, I wanted to show the polling data in more interesting ways than just the vote counts.  Charting was the logical conclusion, but how do it was a more difficult decision.</p>
<p>Some of the criteria I had for choosing the charting solution included: ease of use (it is  microapp, of course), compatible with shared hosting environment, fast, easy to customize.</p>
<p>Some of the libraries I looked at included: <a href="http://code.google.com/p/flot/">flot with jquery</a>, <a href="http://nubyonrails.com/pages/gruff">gruff</a>, <a href="http://scruffy.rubyforge.org/">scruffy</a>, <a href="http://nubyonrails.com/pages/sparklines">sparklines</a>, and <a href="http://googlecharts.rubyforge.org/">googlecharts</a>.  I settled on the googlecharts library because I didn&#8217;t need the interactive features of <code>flot</code> and I didn&#8217;t want to worry about RMagick needed for <code>gruff</code>, <code>scruffy</code>, or <code>sparklines</code>. </p>
<h2>Google Charts API</h2>
<p>The <a href="http://code.google.com/apis/chart">Google Charts API</a> is an interesting tool that lets you dynamically generate charts using a &#8220;simple&#8221; URL scheme.   The usage policy is very generous too: &#8220;There&#8217;s no limit to the number of calls per day you can make to the Google Chart API.&#8221;</p>
<p>This would allow me to offload the image generation to Google (who supposedly has quite a bit of computing power) and let my application, in a shared hosting environment, focus on collecting votes.</p>
<h2>Enter <em>googlecharts</em></h2>
<p>The challenge with the Google Charts API &#8220;simple&#8221; url scheme is that it would very tedious to have generate it by concatenating the strings together.  Fortunately, Matt Aimonetti built the <code>googlecharts</code> gem for Ruby.  You can get it from <a href="http://www.rubyforge.org">Rubyforge</a> (<code>gem install googlecharts</code>) or <a href="http://www.github.com">Github</a> (<code>gem install mattetti-googlecharts</code>).  </p>
<h2>Installing <em>googlecharts</em> in my Rails App</h2>
<p>With <code>googlecharts</code> installed on my machine I could start using it, by adding it to my <code>config/environment.rb</code> file.</p>
<pre><code>Rails::Initializer.run do |config|
  config.gem "googlecharts", :lib =&gt; "gchart"
end</code></pre>
<p>Since the file we need to include is named &#8220;gchart&#8221;, not &#8220;googlecharts&#8221;, we have to specify the <code>:lib =&gt; "gchart"</code> option.</p>
<p>I also didn&#8217;t want to worry about installing in on the deployment machine, so I unpacked it to the <code>vendor/gems</code> folder using <code>rake gems:unpack</code>.</p>
<h2>Now to the Charts</h2>
<p>Once all that was in place the challenge was getting the data into a format that would be easy to pass to the library.  It turns out, that wasn&#8217;t too challenging either.</p>
<h3>The Helper</h3>
<p>In my view helper module I created a method that would collect the data needed for the chart.</p>
<pre><code>  def pie_chart poll
    @pie_chart ||= {
      :data =&gt; poll.choices.collect(&amp;:votes_count),
      :colors =&gt; poll.choices.collect {|c| c.winner? ? "264409" : "8A1F11" }
    }
  end</code></pre>
<p>This just loops over the choices and collects the needed data and puts it in an easy to use Hash.</p>
<h3>The View</h3>
<pre><code>    &lt;%= Gchart.pie :size =&gt; '240x160',
                   :title =&gt; 'Vote split',
                   :data =&gt; pie_chart(@poll)[:data],
                   :bar_colors =&gt; pie_chart(@poll)[:colors],
                   :format =&gt; 'image_tag' %&gt;</code></pre>
<p>Using googlecharts Gchart made it easy to build the &#8220;simple&#8221; url needed for a pie chart using the Google Charts API (also supports line, scatter, venn, sparklines, and meter charts)  I didn&#8217;t even have to add the <img /> tag because I could pass the <code>:format =&gt; 'image_tag'</code> and one was generated for me.</p>
<h2>Conclusion</h2>
<p>I was extremely happy with how quick and easy it was to get some simple charts into my application (check them out at <a href="http://www.unscientificpolls.com">UnscientificPolls.com</a>).  The response time from Google seems to be as fast as if the images were stored locally. It also saved me the headache of installing with RMagick.  This is definitely a good fit for simple graphs and charts in a Rails application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2008/08/22/using-google-charts-with-rails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Mockups for Ads</title>
		<link>http://www.mckinneystation.com/2008/08/15/css-mockups-for-ads/</link>
		<comments>http://www.mckinneystation.com/2008/08/15/css-mockups-for-ads/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:43:10 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[microapps]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/?p=84</guid>
		<description><![CDATA[Occasionally I need to mockup where the ads are going to go in an application (it has to pay for itself somehow, right?).  Rather than putting the ads into the application while I am still doing development, I use some simple CSS to put a placeholder where the ads will go.  In Rails, [...]]]></description>
			<content:encoded><![CDATA[<p>Occasionally I need to mockup where the ads are going to go in an application (it has to pay for itself somehow, right?).  Rather than putting the ads into the application while I am still doing development, I use some simple CSS to put a placeholder where the ads will go.  In Rails, it looks like this:</p>
<pre><code>&lt;div class="ads vertical_tower"&gt;
  &lt;% if RAILS_ENV == 'production' -%&gt;
    &lt;script&gt;... Live Ad Code Goes Here &lt;/script&gt;
  &lt;% else -%&gt;
    Ads Go Here
  &lt;% end -%&gt;
&lt;/div&gt;</code></pre>
<p>Then I can use my simple <a href="http://www.mckinneystation.com/ad_templates/index.html">ad template CSS</a> to make it standout.  Check out <a href="http://github.com/gdagley/ad_templates">the css source on Github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2008/08/15/css-mockups-for-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things I Really Like</title>
		<link>http://www.mckinneystation.com/2008/08/15/things-i-really-like/</link>
		<comments>http://www.mckinneystation.com/2008/08/15/things-i-really-like/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:12:05 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WorkingWithRails]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/?p=83</guid>
		<description><![CDATA[After a few years of a very boring layout for the McKinney Station website, I have added a few items in the sidebar to show that I actually do things around here.  It&#8217;s not much, but it is a start.  You can follow me on Twitter, check out my projects on Github and [...]]]></description>
			<content:encoded><![CDATA[<p>After a few years of a very boring layout for the McKinney Station website, I have added a few items in the sidebar to show that I actually do things around here.  It&#8217;s not much, but it is a start.  You can follow me on <a href="http://twitter.com/gdagley">Twitter</a>, check out my projects on <a href="http://github.com/gdagley">Github</a> and <a href="http://rubyforge.org/users/gdagley/">RubyForge</a>, and see what I am reading on <a href="http://delicious.com/gdagley">del.icio.us</a>. </p>
<p>Hopefully this gives a little insight into what I do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2008/08/15/things-i-really-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is That Really What It Looks Like?</title>
		<link>http://www.mckinneystation.com/2007/05/14/is-that-really-what-it-looks-like/</link>
		<comments>http://www.mckinneystation.com/2007/05/14/is-that-really-what-it-looks-like/#comments</comments>
		<pubDate>Mon, 14 May 2007 13:41:28 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/2007/05/14/is-that-really-what-it-looks-like/</guid>
		<description><![CDATA[
photo by texas_mustang

One of the things I like about taking a project from start to finish is the first few rounds of development where we hammer out what the application is supposed to do.  After reading Kathy Sierra&#8217;s article &#8220;Don&#8217;t Make the Demo Look Done&#8220;, I wanted to see if I could come up [...]]]></description>
			<content:encoded><![CDATA[<div class="shadow left"><img src='http://www.mckinneystation.com/wp-content/uploads/2007/05/marhall_deputies_engineer.jpg' alt='Marshall, Deputies, and Engineer' /><br />
<br/><span class="credit">photo by <a href="http://www.flickr.com/photos/astros/">texas_mustang</a></span>
</div>
<p>One of the things I like about taking a project from start to finish is the first few rounds of development where we hammer out what the application is supposed to do.  After reading Kathy Sierra&#8217;s article &#8220;<em><a href="http://headrush.typepad.com/creating_passionate_users/2006/12/dont_make_the_d.html">Don&#8217;t Make the Demo Look Done</a>&#8220;</em>, I wanted to see if I could come up with something similar to the <em><a href="http://napkinlaf.sourceforge.net/">Napkin Look and Feel</a></em> for my web applications.</p>
<p>Why is it important?  I have found out the hard way, what Joel Spolsky points out in <em><a href="http://www.joelonsoftware.com/articles/fog0000000356.html">The Iceberg Secret, Revealed</a></em>.  As soon I start putting the colors, graphics, and drop shadows in place for the finished product, the attention is no longer on the functionality of the application and now turns to &#8220;could you move that button over 5 pixels?&#8221;  And this is still while half the application remains unfinished!</p>
<p>So this is my interpretation of making the demo look like a demo.  It is completely driven with a separate CSS stylesheet that can be removed and replaced with the finished stylesheet.  <a href="http://www.mckinneystation.com/2007/04/25/save-yourself-hours-of-css-frustration/">I make use of the Yahoo CSS</a> and <a href="http://webserve.govst.edu/users/gas52r0/Jay/backgrounds/webpaper/index.html">some paper background images</a>.  I have even contemplated making use of <a href="http://blog.caboo.se/articles/2007/3/29/tongue-in-cheek-goes-to-1-1">the Tongue In Cheek icons</a> to make it even more authentic.  I would have used a handwriting font, but there is not a good cross browser way to deliver fonts, so Comic Sans will have to satisfy the prototype font requirement.</p>
<p>Here are what the initial screens look like for a new application:</p>
<ul>
<li>Home Page <a href='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-1.png' title='Prototype Home Page'><img src='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-1.thumbnail.png' alt='Prototype Home Page' /></a></li>
<li>Sample Page <a href='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-2.png' title='Prototype Sample Page'><img src='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-2.thumbnail.png' alt='Prototype Sample Page' /></a></li>
<li>Sample Page <a href='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-3.png' title='Another Sample Page'><img src='http://www.mckinneystation.com/wp-content/uploads/2007/05/prototype-3.thumbnail.png' alt='Another Sample Page' /></a></li>
</ul>
<h2>Does it work?</h2>
<p>So far it has worked great.  And as soon as we switch stylesheets, we lose focus on the functionality.  Every time.  So I will keep using this and keep pushing this as far as a project will let me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2007/05/14/is-that-really-what-it-looks-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Development Environment in Ubuntu</title>
		<link>http://www.mckinneystation.com/2007/05/08/rails-development-environment-in-ubuntu/</link>
		<comments>http://www.mckinneystation.com/2007/05/08/rails-development-environment-in-ubuntu/#comments</comments>
		<pubDate>Tue, 08 May 2007 14:59:20 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[Averatec]]></category>
		<category><![CDATA[Development Environment]]></category>
		<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[RSpec]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[fastercsv]]></category>
		<category><![CDATA[hpricot]]></category>
		<category><![CDATA[mongrel]]></category>
		<category><![CDATA[starfish]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/2007/05/08/rails-development-environment-in-ubuntu/</guid>
		<description><![CDATA[photo by zruvalcaba
After my last post, I thought I would share what I use for developing on Ubuntu.
Editor
I have always been a hands-on kinda guy, so I don&#8217;t use any of the fancy IDEs.  Right now, I am using SciTE for two reasons.  It feels lightweight and it is available for Linux and [...]]]></description>
			<content:encoded><![CDATA[<div class="shadow right"><img src='http://www.mckinneystation.com/wp-content/uploads/2007/05/goat_canyon_trestle.jpg' alt='Goat Canyon Trestle' /><br/><span class="credit">photo by <a href="http://www.sxc.hu/profile/zruvalcaba">zruvalcaba</a></span></div>
<p>After <a href="http://www.mckinneystation.com/2007/05/08/and-that-is-why-you-have-backups/">my last post</a>, I thought I would share what I use for developing on <a href="http://www.ubuntu.com">Ubuntu</a>.</p>
<h2>Editor</h2>
<p>I have always been a hands-on kinda guy, so I don&#8217;t use any of the <a href="http://www.aptana.com/">fancy</a> <a href="http://www.jetbrains.com/idea/index.html">IDEs</a>.  Right now, I am using <a href="http://www.scintilla.org/SciTE.html">SciTE</a> for two reasons.  It feels lightweight and it is available for Linux and Windows.  Since <a href="http://www.averatec.com/products/portable/thinlight/3200Series.asp">my laptop</a> does not have a lot of memory, a lightweight editor is a must.  I tried <a href="http://www.eclipse.org/">Eclipse</a>, but it chewed up all my memory and slowed things to a crawl.  So SciTE with <a href="http://caladbolg.net/scite.php">some additional plugins</a> (and <a href="http://mondaybynoon.com/2007/03/12/using-scite-with-textmate-style-snippets/">information on getting them going</a>) powers <a href="http://www.mckinneystation.com/projects">the development at McKinney Station</a>.</p>
<h2>Ruby and Rails</h2>
<p>I am using the latest <a href="http://www.ruby-lang.org/en/">Ruby</a> and <a href="http://www.rubyonrails.com">Rails</a> for all new development.  For testing I am using <a href="http://rspec.rubyforge.org">RSpec</a>, which seems <a href="http://www.mckinneystation.com/2007/04/25/specify-first-test-last-if-ever/">a lot more intuitive to me</a>.  Other <a href="http://rubygems.org/">gems</a> I  have installed include:</p>
<ul>
<li><a href="http://fastercsv.rubyforge.org/">FasterCSV</a> &#8211; parsing CSV files</li>
<li><a href="http://tech.rufy.com/2006/08/mapreduce-for-ruby-ridiculously-easy.html">starfish</a> &#8211; simple Ruby Map/Reduce</li>
<li><a href="http://mongrel.rubyforge.org/">mongrel</a> &#8211; lightweight Ruby web server</li>
<li><a href="http://code.whytheluckystiff.net/hpricot/">hpricot</a> &#8211; Ruby HTML parser</li>
</ul>
<h2>Database</h2>
<p>I love starting all of my development projects with SQLite.  It is <a href="http://wiki.rubyonrails.org/rails/pages/HowtoUseSQLite">so easy to get up and running</a>.   As the project matures, I am able to quickly switch development over to a MySQL database with a change in the application&#8217;s database configuration and a quick <code>rake db:migrate</code>.</p>
<h2>Version Control</h2>
<p>All source code versioning is done with Subversion.  With <a href="http://www.railsonwave.com/railsonwave/2006/12/19/smart-subversion-script-for-rails-projects">this quick little script</a>, I can get a Rails project committed and started in minutes.</p>
<h2>Conclusion</h2>
<p>I am always looking for ways to speed up my development process, but so far this is working for me.  And it is very enjoyable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2007/05/08/rails-development-environment-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dallas/Fort Worth Tech Scene</title>
		<link>http://www.mckinneystation.com/2007/04/25/dallasfort-worth-tech-scene/</link>
		<comments>http://www.mckinneystation.com/2007/04/25/dallasfort-worth-tech-scene/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 12:21:39 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[Dallas]]></category>
		<category><![CDATA[DemoCamp]]></category>
		<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[Fort Worth]]></category>
		<category><![CDATA[North Texas]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/2007/04/25/dallasfort-worth-tech-scene/</guid>
		<description><![CDATA[I went to the Dallas DemoCamp2 on Monday night to check out some of the latest offerings from North Texas entrepreneurs.  And there was quite a showing with 6 presentations and at least 25 people in attendance.  



What I love about DemoCamp is the format.   You get 15 minutes for the [...]]]></description>
			<content:encoded><![CDATA[<p>I went to the <a href="http://barcamp.org/DemoCampDallas2">Dallas DemoCamp2</a> on Monday night to check out some of the latest offerings from North Texas entrepreneurs.  And there was quite a showing with 6 presentations and at least 25 people in attendance.  </p>
<div class="shadow right">
<a href='http://www.mckinneystation.com/wp-content/uploads/2007/04/636865_rail-screw.jpg' title='Rail Screw'><img src='http://www.mckinneystation.com/wp-content/uploads/2007/04/636865_rail-screw.jpg' alt='Rail Screw' /></a>
</div>
<p>What I love about DemoCamp is the format.   You get 15 minutes for the entire presentation.   And that is broken down into 10 minutes for for the demonstration and 5 minutes for questions and answers.  With this format you aren&#8217;t intimidated by amount of time to fill.  Almost anyone can talk for 10 minutes about their project that is the &#8220;next big thing.&#8221;</p>
<p><a href="http://flickr.com/search/?q=democampdallas2&#038;m=tags&#038;s=int">Check out the photos</a> and be sure to make it out for <a href="http://barcamp.org/DemoCampDallas3">Dallas DemoCamp3</a>.  Who knows, I might even have <a href="/projects">a project or two</a> to show off.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2007/04/25/dallasfort-worth-tech-scene/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
