<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>RockstarDeveloper.com</title>
    <link>http://rockstardeveloper.com/</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Striving to get there...</description>
    <item>
      <title>Flash Upload Update for &amp;quot;A script in this movie is causing Flash Player to run slowly&amp;quot; Problem</title>
      <description>&lt;p&gt;The last version of my flash multiple upload script would spawn an alert box containing the message &amp;#8220;A script in this movie is causing Flash Player to run slowly&amp;#8221; after the script had been open for 15 seconds.  Even if the user chooses to let the script run, the window will pop up again every 15 seconds.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.adobe.com/support/flash/ts/documents/script_loop/script_loop_r2_c1.gif" alt="Flash Alert"/&gt;&lt;/p&gt;

&lt;p&gt;This obviously is a huge problem, as many users will unknowingly abort the script.  You can &lt;a href="http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15512"&gt;Read More&lt;/a&gt;  about the issue through Adobe&amp;#8217;s Technotes.&lt;/p&gt;

&lt;p&gt;The fix was to add a dummy onEnterFrame event which refreshes the timer.  I have updated my code &lt;a href="http://www.yourbarguide.com/flashupload.zip"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The only update was to change how I initialized the movie in multipleUpload.fla, and to attach the onEnterFrame event handler.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;import com.vixiom.utils.MultipleUpload

System.security.allowDomain (&amp;quot;*.localhost.com&amp;quot;);
var uploadMovie = null; 

_root.onEnterFrame = function() {
    if (this.getBytesLoaded() / this.getBytesTotal() &amp;gt; 0.99) {
        uploadMovie = new MultipleUpload (this.files_dg, this.browse_btn, this.upload_btn, this.cancel_btn, _root.object_type, _root.object_id, _root.token);

        _root.onEnterFrame = function() {
            trace (&amp;quot;onEnterFrame called&amp;quot;);
        };
    }
};&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 22 Apr 2007 19:44:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:8eda27ca-fbee-46b2-b9b8-ed61bbc42a2e</guid>
      <author>mkull</author>
      <link>http://rockstardeveloper.com/articles/2007/04/22/flash-script-running-too-slowly</link>
      <category>Ruby / Rails</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/13261</trackback:ping>
    </item>
    <item>
      <title>Rails Multiple File Upload</title>
      <description>&lt;p&gt;For the photos feature on YourBarGuide I needed a way for users to easily upload multiple files at once.  &lt;/p&gt;

&lt;p&gt;Read on about the different options I looked at, and how I finally settled on a Flash upload widget &lt;/p&gt;&lt;h2&gt;Plain HTML&lt;/h2&gt;

&lt;p&gt;The simplest method is to use a HTML form with multiple file upload boxes.  This is simple, yet crude and cumbersome to use for the user.     &lt;/p&gt;

&lt;p&gt;&lt;img src="http://yourbarguide.com/images/htmlupload.png" alt="HTML Upload"/&gt; &lt;/p&gt;

&lt;h2&gt;Java Applet&lt;/h2&gt;

&lt;p&gt;Another option is to use an embedded Java Applet. This is a nice solution which sites like &lt;a href="http://www.facebook.com"&gt;Facebook&lt;/a&gt; use.  This option provides clean, cross-browser file selection dialogue which lets the user upload files as a batch, and displays the a status monitor of the upload progress.  There are several prepackaged libraries providing this functionality such as &lt;a href="http://www.jupload.biz/"&gt;JUpload&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;img src="http://yourbarguide.com/images/javaupload.png" alt="JavaUpload"/&gt;  &lt;/p&gt;

&lt;p&gt;While providing some very slick functionality, all of the Java-based solutions would have required a bit Java programming in order to to get them doing what I needed them to do, and everything I found was a bit pricey (JUpload is ~$800 for a developer license)  &lt;/p&gt;

&lt;h2&gt;Flash Upload&lt;/h2&gt;

&lt;p&gt;I decided to go with a Flash based solution.  There is an excellent tutorial, with source code posted on &lt;a href="http://blog.vixiom.com/2006/09/08/multiple-file-upload-with-flash-and-ruby-on-rails/"&gt;Vixiom Axioms&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://yourbarguide.com/images/flashupload.png" alt="Flash Upload"/&gt; &lt;/p&gt;

&lt;p&gt;I did add some extra features to the code to meet my requirements:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The ability to cancel a file upload while it is in progress&lt;/li&gt;
&lt;li&gt;File size check / warning  &lt;/li&gt;
&lt;li&gt;Javascript callback so that an &amp;#8220;uploadComplete()&amp;#8221; function is called when all file uploads are completed.  (This lets you update the page display with the uploaded files without a full page reload)&lt;/li&gt;
&lt;li&gt;Security check: I require users to be logged in when they upload a file so I can map uploaded files to the account which uploaded them.  I pass a token with each uploaded file which includes account credentials so I can validate them on each file upload.    (this is necessary since the Flash upload request exists in a different session then the current user&amp;#8217;s session)  &lt;/li&gt;
&lt;li&gt;The ability to work with the file_column plugin&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can find my updated .as and .fla files &lt;a href="http://www.yourbarguide.com/flashupload.zip"&gt;here&lt;/a&gt; I also included a README with some instructions on how to work with file_column and  provide user validation as well as a paste from my view file so you can see an example of refreshing the page via AJAX once the uploads are complete.&lt;/p&gt;</description>
      <pubDate>Sun, 18 Mar 2007 20:02:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:07af3266-fc9f-4b13-a6e2-93805d1886cb</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2007/03/18/rails-multiple-file-upload</link>
      <category>Ruby / Rails</category>
      <category>yourbarguide.com</category>
      <category>flash</category>
      <category>fileupload</category>
      <category>rails</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/8485</trackback:ping>
    </item>
    <item>
      <title>Rails: How to regenerate file_column images</title>
      <description>&lt;p&gt;The rails plugin &lt;a href="http://www.kanthak.net/opensource/file_column/"&gt;file_column&lt;/a&gt; provides a simple method of handling uploading files.  I am using it to store location &amp;#8220;avatar&amp;#8221; images.  The image needs to be resized into several different versions, and file_column handles this nicely with one method call in my model.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;file_column :image, :magick =&amp;gt; { 
         :versions =&amp;gt; { :square =&amp;gt; &amp;quot;75x75!&amp;quot;, 
                        :profile =&amp;gt; &amp;quot;275x260&amp;quot; 
                      }
        }
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;However, recently requirements changed.  I now needed an additional version of the image and change the sizes of the old versions. &lt;/p&gt;

&lt;p&gt;Since file_column does not provide an out of the box method of regenerating the images, and I had several thousand records with images associated already I had a problem.&lt;/p&gt;&lt;p&gt;After quite a bit of searching the best(only) solution I found was from &lt;a href="http://blog.caboo.se/articles/2006/01/09/file_column-magick-and-versions"&gt;caboose&lt;/a&gt;
however I was not able to get his method to work quite as he posted, several modifications to file_column.rb were needed.  Its definitely hackery, but it works (at least for everything I have tested it with).  I have posted the updated &lt;a href="http://www.yourbarguide.com/file_column.rb"&gt;file_column.rb&lt;/a&gt; file (back up your old version first)&lt;/p&gt;

&lt;p&gt;Once that is in place, I&amp;#8217;d suggest creating a rake task which will run the update.  Here is a sample scriplet which will do the trick. &lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;#Note: &amp;quot;Location&amp;quot; is my model name, and &amp;quot;image&amp;quot; is the name of my file_column field
task :regenerate_images =&amp;gt; :environment do
  Location.find(:all, :conditions =&amp;gt; &amp;quot;image IS NOT null&amp;quot;).each { |loc| 
    loc.image = File.open(loc.image)
    loc.save
  }
end&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt; 

&lt;p&gt;If you are unfamiliar with rake &lt;a href="http://www.slashdotdash.net/articles/2007/01/18/using-activerecord-outside-rails-part-ii"&gt;go read up on it&lt;/a&gt; .  Create a file called &amp;#8220;regenerate_images.rake&amp;#8221;, include the code above and place the file in your lib/tasks folder.  To execute the script from the command line, type &amp;#8220;rake regenerate_images&amp;#8221;&lt;/p&gt;</description>
      <pubDate>Tue, 13 Mar 2007 03:49:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:86cb1a12-6a6f-42ce-8dae-c92691f4f478</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2007/03/13/rails-how-to-regenerate-file_column-images</link>
      <category>Ruby / Rails</category>
      <category>yourbarguide.com</category>
      <category>rails</category>
      <category>file_column</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/7140</trackback:ping>
    </item>
    <item>
      <title>State of the Project Address</title>
      <description>&lt;p&gt;And now for this year&amp;#8217;s blog post&amp;#8230;&lt;/p&gt;

&lt;p&gt;YourBarGuide is coming along.  Charlie has been working on a redesign, which is really coming out awesome.  So many nightlife sites really do not put much effort into their design, and end up &lt;a href="http://www.heyphilly.com"&gt;super cheesey&lt;/a&gt;, &lt;a href="http://www.2night.com"&gt;unusable&lt;/a&gt;, and &lt;a href="http://www.clubplanet.com"&gt;graphically overloaded&lt;/a&gt;.  The only &amp;#8220;night life&amp;#8221; site I have found which really has a clean design is the latest incarnation of &lt;a href="http://www.philly2night.com"&gt;philly2night&lt;/a&gt; their designers did a great job.&lt;/p&gt;

&lt;p&gt;We are focusing on a something that is light weight with usability as main emphasis with a minimization of gaudiness.  Here is a sneak preview of a portion of the new header&amp;#8230;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://yourbarguide.com/images/header_preview.jpg" alt="YBG Header Preview"/&gt; &lt;/p&gt;

&lt;p&gt;Two items are present in that header are indicators of what is new.  An Events management system is in place, as is user-submitted photos.  These features are currently available for testing.  An Evite style Guest List system is still being being worked on for events and once that is complete all of the major features needed for launch will have been implemented.  (they may be a little rough around the edges, but the core is there)&lt;/p&gt;

&lt;p&gt;In other news the yourbarguide.com site is no longer public.  Previously created accounts will get you access, if you would like access use the form on the beta splash page.  The site will remain closed until the new design is in place and testing is completed.&lt;/p&gt;

&lt;p&gt;Code-wise things have been going well, I have really enjoyed working with Rails.  There is no way I could be close to this far along with the site using any other framework I am familiar with.  The test will come when it comes time to make it perform.&lt;/p&gt;

&lt;p&gt;In the course of development to date I have created several     plugins which I hope to at some point clean up enough to release.  Acts_as_picturable, acts_as_mappable, and acts_as_searchable.  I don&amp;#8217;t foresee that happening in the near future however, as the current priority is to get the site finished.&lt;/p&gt;</description>
      <pubDate>Tue, 30 Jan 2007 05:00:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:f376624b-0d88-4c04-999f-11602f965a94</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2007/01/30/state-of-the-project-address</link>
      <category>Ruby / Rails</category>
      <category>General BS</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/2739</trackback:ping>
    </item>
    <item>
      <title>Summer</title>
      <description>&lt;p&gt;Summer is halfway over, unbelievable.&lt;/p&gt;

&lt;p&gt;Time has been flying by.  Between the nice weather, shore house, and work being extemely busy I haven&amp;#8217;t spent much time on here or on ybg.  At work we are wrapping up footballfanatics.com, the big asp.net/c# ecommerce site mentioned before.  It has been a lot of work, but I have learned a ton and theres some cool stuff done which I will blog about soon.&lt;/p&gt;

&lt;p&gt;Lately I have been burnt out on ybg and other side projects, after a long day of coding at work its tough to come home and get back at it.  I&amp;#8217;m trying to get over that though.&lt;/p&gt;

&lt;p&gt;I have made some progress on the Flickr integration, not going to make any promises when that will be up though.  In other areas I have been messing with Pl/SQL and finally got my distance calculations going.   &lt;/p&gt;

&lt;p&gt;I ended up using the &amp;#8220;Haversine&amp;#8221; forumula and created simple Pl/SQL function that calculates the distance between two sets of longitude and latitude.  Could probably be tidied up a bit but heres my first go at it that works.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;CREATE OR REPLACE FUNCTION distance
(
    lat1 decimal,
    long1 decimal,
    lat2 decimal, 
    long2 decimal
) 
RETURNS decimal AS $$
DECLARE
    r decimal := 6371; -- earth’s radius (mean radius = 6,371km)
    rLat1 decimal := degreesToRadians(lat1);
    rLat2 decimal := degreesToRadians(lat2);
    rLong1 decimal := degreesToRadians(long1);
    rLong2 decimal := degreesToRadians(long2);
    dLat decimal := rLat2 - rLat1;
    dLong decimal := rLong2 - rLong1;
    a decimal; 
    distance decimal;
BEGIN
    -- &amp;quot;Haversine&amp;quot; Formula
    a := sin(dLat/2)^2 + cos(rLat1)*cos(rLat2)*sin(dLong / 2)^2;
    distance := r * 2 * atan(sqrt(a) / sqrt(1-a));

    -- Spherical Law of Cosines
    -- distance := acos(sin(rLat1)*sin(rLat2)+cos(rLat1)*cos(rLat2)*cos(rLong2 - rLong1)) * r;  
    RETURN distance * .62; -- convert to miles
END;
$$ LANGUAGE plpgsql;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;That code uses a simple degree to radian conversion function&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;CREATE OR REPLACE FUNCTION degreesToRadians
(
    degrees decimal
) 
RETURNS decimal AS $$
BEGIN
    RETURN degrees * (pi() / 180);
END;
$$ LANGUAGE plpgsql;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;First use of this will be to show &amp;#8220;Other bars in the neighborhood&amp;#8221; when looking at a bar detail page. &lt;/p&gt;</description>
      <pubDate>Thu, 13 Jul 2006 04:07:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:8f083dc7-2168-42ca-ba69-39d7ea88f2f7</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/07/13/summer</link>
      <category>Web Dev</category>
      <category>.NET</category>
      <category>General BS</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/1191</trackback:ping>
    </item>
    <item>
      <title>SQL Server 2005 DTS (Integration Services) Woes...</title>
      <description>&lt;p&gt;So apparently embedded text qualifiers are not supported in SQL Server 2005 yet when attempting to import data from a flat file.  &lt;/p&gt;

&lt;p&gt;I really hope I am wrong, but myself and another developer spent the better of an afternoon debugging this.&lt;/p&gt;

&lt;p&gt;Heres the really simple test case which demonstrates the breakage:&lt;/p&gt;

&lt;p&gt;Create a dummy table to import into, lets pretend it&amp;#8217;s called &amp;#8220;test&amp;#8221; with two varchar(50) columns named test1 and test2.&lt;/p&gt;

&lt;p&gt;Now create a dummy data import file (just a .txt file) with the following contents&amp;#8230;.&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;&amp;#8220;this&amp;#8221;,&amp;#8221;is ok&amp;#8221;&lt;/p&gt;
    
    &lt;p&gt;&amp;#8220;even &amp;#8220;&amp;#8221;this&amp;#8221;&amp;#8221; works&amp;#8221;,&amp;#8221;12&amp;#8221;&amp;#8220;x18&amp;#8221;&amp;#8221; Print&amp;#8221;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now in MSQL Management Studio right click on your database name and hit import data.  Set your data source to flat file, and enter your text qualifier as  a double quote (&amp;#8220;).&lt;/p&gt;

&lt;p&gt;Hit next and you should see a warning about embedded text qualifiers&amp;#8230; and then upon executing the procedur You will see the error:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;Error 0xc0047038: Data Flow Task: The PrimeOutput method on component &amp;#8220;Source - test3_txt&amp;#8221; (1) returned error code 0xC0202092.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing. (SQL Server Import and Export Wizard) &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Importing the exact same file on SQL Server 2000 runs without a hitch.&lt;/p&gt;

&lt;p&gt;Pretty lame Microsoft, you would think this would have been fixed by SP 1.&lt;/p&gt;</description>
      <pubDate>Wed, 10 May 2006 22:04:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4f2a71f9-62e4-4def-b25a-bc9503446189</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/05/10/sql-server-2005-dts-woes</link>
      <category>Web Dev</category>
      <category>.NET</category>
      <category>sql2005</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/47</trackback:ping>
    </item>
    <item>
      <title>&amp;quot;Im Going&amp;quot; v1 complete</title>
      <description>&lt;p&gt;Things have been going good, albeit slow.  The past weak has been spent doing minor tweaks and finishing up version 1 of the &amp;#8220;I&amp;#8217;m Going&amp;#8221; feature.&lt;/p&gt;

&lt;p&gt;You can currently schedule dates / times you are going to bars, through a slick but ugly lightbox / ajax interface.  You then get an itinerary on your profile which you can edit.  The highlight of this is, is that by copy pasting a small piece of javascript onto your blog or website you can get an events feed of all of the Events you have subscribed to.  See it in action on my sidebar.  Still haven&amp;#8217;t worked out the best way for users to customize it any way they want.  &lt;/p&gt;

&lt;p&gt;I started out using IFrames.  I hate frames.  Ended up switching to a method I stole off of flickr.  Basically I created an action on my server &amp;#8220;Badge&amp;#8221; which outputs plain javascript &amp;#8220;document.writes&amp;#8221;.  For example, here is the &amp;#8220;Badge URL&amp;#8221; for my account.  http://yourbarguide.com/im_going/badge/1&lt;/p&gt;

&lt;p&gt;The output of those document.writes will be displayed anywhere a user adds &amp;lt;script src=&amp;#8221;my&lt;em&gt;badge&lt;/em&gt;url&amp;#8221; type=&amp;#8221;text/javascript&amp;#8221;&amp;gt; to their document.  Simple, and it works.  See it in action on my sidebar.&lt;/p&gt;

&lt;p&gt;The next step for &amp;#8220;Im Going&amp;#8221; is to clean up the way you choose a date you are going, I am going to use a calendar display for this.  Also need to let users see who else is going to a particular event.&lt;/p&gt;</description>
      <pubDate>Tue, 25 Apr 2006 04:01:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:f6c50ee3-8dbd-4fe1-80ce-516db49bf8aa</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/04/25/im-going-v1-complete</link>
      <category>Web Dev</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/29</trackback:ping>
    </item>
    <item>
      <title>Ratings, Ratings, Ratings</title>
      <description>&lt;p&gt;I&amp;#8217;ve been trying to figure out how to handle &amp;#8220;rating&amp;#8221; different bars.&lt;/p&gt;

&lt;p&gt;The end goal is have a very drilled down rating system whereby a user could see all of the top-rated sports bars; the top-rated beer bars; the cheapest bar with a good singles scene; etc.&lt;/p&gt;

&lt;p&gt;My initial implementation was to have four fixed rating types using an AJAX &amp;#8220;Star Rater&amp;#8221;.  (an ajax star rater is what sites like Netflix and Ajaxian use)  I found a couple premade scripts, but ended up throwing them away and coming up with my own.  You can see it in action on any &lt;a href="http://yourbarguide.com/bar/finnigans_wake/"&gt;location detail page&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The problem is, different ratings only make sense for certain bars.  IE &lt;a href="http://yourbarguide.com/bar/monks/"&gt;Monk&amp;#8217;s&lt;/a&gt; Is a belgian beer bar&amp;#8230; it does really make sense to have a rating for &amp;#8220;Dancing&amp;#8221;.  (in a different sense it actually does, the rating should be &amp;#8220;n/a&amp;#8221;)&lt;/p&gt;

&lt;p&gt;My solution was to set it up such that bars have a many-to-many relationship with rating types.  For instance now Finnigans Wake can have a &amp;#8220;Dancing&amp;#8221; rating and Monks can have a &amp;#8220;Beer Bar&amp;#8221; rating.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;ll see how this pans out.  Currently I have 22 different rating types.  Putting all of these on one page would be way too cluttered.  But I still need to figure out a way to present to the user why certain ratings only apply to certain bars.&lt;/p&gt;

&lt;p&gt;Ok its 10:45, Thursday night, and I think I need to go do some &amp;#8220;research&amp;#8221; :D&lt;/p&gt;</description>
      <pubDate>Fri, 14 Apr 2006 02:36:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:1aaccb72-1792-4e6c-bdcf-d3822f5315c9</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/04/14/ratings-ratings-ratings</link>
      <category>Philadelphia</category>
      <category>Ruby / Rails</category>
      <category>General BS</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/28</trackback:ping>
    </item>
    <item>
      <title>Launch Redux</title>
      <description>&lt;p&gt;Its been 3 days since the http://www.yourbarguide.com has been up and thus far things are going great.&lt;/p&gt;

&lt;p&gt;Frankly I&amp;#8217;m pretty surprised I was able to get it up. I, like most developers suffer from &amp;#8220;just one more thing&amp;#8221;.  Theres a never ending list of features to add and things to polish, the important part is to realize what counts now, and what can be visited again later. &lt;/p&gt;

&lt;p&gt;I actually made a list, on paper of the features I wanted on the site.  I then scrubbed every feature that I felt wasnt &lt;em&gt;absolutely&lt;/em&gt; necessary to get the site launched, and stuck to it.  (well not really, if i did completely the site would have been up by christmas&amp;#8230;.)  &lt;/p&gt;

&lt;p&gt;Even though its still in pretty rough shape the feedback I have gotten has been invaluable.  As was expected, tons of bug fixes, tweaks, and feature ideas were generated.  But more importantly it has been a huge motivator.  &lt;/p&gt;

&lt;p&gt;It&amp;#8217;s been a lot fun too.  I have launched plenty of sites before, but never one that was completely developed by me and of this nature.  I feel like a little kid with his ant farm.   &lt;/p&gt;</description>
      <pubDate>Wed, 12 Apr 2006 04:18:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:8bb609fa-4ea9-43d3-ac76-42fb8f38d49e</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/04/12/launch-redux</link>
      <category>Web Dev</category>
      <category>General BS</category>
      <category>yourbarguide.com</category>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/26</trackback:ping>
    </item>
    <item>
      <title>YourBarGuide.com Soft Launch</title>
      <description>&lt;p&gt;&lt;a href="http://www.yourbarguide.com"&gt;http://www.yourbarguide.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Its up, finally :)&lt;/p&gt;

&lt;p&gt;Its pretty plain looking, but lots of functionality under the covers.  I need to find a designer.&lt;/p&gt;

&lt;p&gt;Tons of work yet to do, but its at least at a state where people can start playing around and can start generating content.&lt;/p&gt;

&lt;p&gt;The site is reaaally fast, for now at least.  What a difference lighttpd makes.  Its being hosted by &lt;a href="http://ocssolutions.com/"&gt;OCS Solutions&lt;/a&gt; &lt;/p&gt;</description>
      <pubDate>Mon, 10 Apr 2006 02:14:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:eef5df77-ff7c-48de-aba5-ee7c86a62ae2</guid>
      <author>Matt Kull</author>
      <link>http://rockstardeveloper.com/articles/2006/04/10/yourbarguide-com-soft-launch</link>
      <trackback:ping>http://rockstardeveloper.com/articles/trackback/25</trackback:ping>
    </item>
  </channel>
</rss>
