<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>i must be an acrobat &#187; Web 2.0</title>
	<atom:link href="http://joshuahoover.com/category/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshuahoover.com</link>
	<description>a blog by joshua hoover</description>
	<lastBuildDate>Sun, 20 May 2012 02:11:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><cloud domain='joshuahoover.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Apache Shindig PHP Setup Problem Solved</title>
		<link>http://joshuahoover.com/2008/09/14/apache-shindig-php-setup-problem-solved/</link>
		<comments>http://joshuahoover.com/2008/09/14/apache-shindig-php-setup-problem-solved/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 04:16:36 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/?p=301</guid>
		<description><![CDATA[First things first. Shindig is an Apache incubator project that serves as an OpenSocial Container and&#8230;I&#8217;m already falling asleep. Too boring. I&#8217;m way behind the curve on all things &#8220;social networking&#8221; but I have an idea for an app that may scratch an itch I have, and it just happens that some of this social [...]]]></description>
			<content:encoded><![CDATA[<p>First things first. <a title="Shindig project site" href="http://incubator.apache.org/shindig/">Shindig</a> is an Apache incubator project that serves as an <a title="OpenSocial Google site" href="http://code.google.com/apis/opensocial/">OpenSocial</a> Container and&#8230;I&#8217;m already falling asleep. Too boring. I&#8217;m way behind the curve on all things &#8220;social networking&#8221; but I have an idea for an app that may scratch an itch I have, and it just happens that some of this social networking stuff might be a good way to jump start the idea. So that means catching up on a couple of years (or more) of stuff that&#8217;s been going in the world of web 2.0, which includes OpenSocial. I wanted a local OpenSocial test sandbox and found Shindig to fit that bill.</p>
<p>Now, onto the problem I was running into and the solution. <strong>Unless you want the long boring details, I can save you the trouble and tell you to make sure you have mod_rewrite enabled in Apache.</strong></p>
<p>If you haven&#8217;t dozed off by now then it probably means you&#8217;re running into issues with the Shindig PHP setup and would like some more details. I followed the directions on <a title="Building and running PHP Shindig Server" href="http://incubator.apache.org/shindig/#php">setting up the PHP Shindig server</a> on my laptop running Kubuntu 08.04 here at home and kept getting a 404 error. I thought that was strange since I could hit other files with my browser that I put in that directory manually for testing but not the Shindig index.php page. Turns out the Shindig index.php page tries to be more &#8220;controller/servlet&#8221; like by sniffing the URI and passing it along to the appropriate handler. If it can&#8217;t find a match, then it gives a custom 404 error. I noticed the test URI (http://shindig/gadgets/ifr?url=http://www.labpixies.com/campaigns/todo/todo.xml) didn&#8217;t have any reference to index.php. Ah yes, the wonders of Apache mod_rewrite! And guess what I didn&#8217;t have enabled? Yep, Apache mod_rewrite. So, below is what I did to get things running on an Ubuntu setup from scratch (meaning no Apache 2, PHP 5 was installed or configured):</p>
<pre>sudo apt-get install apache2 apache2-common apache2-mpm-prefork apache2-utils ssl-cert libapache2-mod-php5 php5-cli php5-common php5-curl php5-mcrypt

svn co http://svn.apache.org/repos/asf/incubator/shindig/trunk/ /home/jhoover/dev/shindig

sudo mv /etc/apache2/mods-available/rewrite.load  /etc/apache2/mods-enabled/

sudo cp /etc/apache2/sites-enabled/000-default /etc/apache2/sites-enabled/shindig

sudo pico /etc/apache2/sites-enabled/shindig</pre>
<p>Stop laughing, I use the Pico text editor. I&#8217;m, as <a href="/category/ec-quotes/">my son</a> would say, &#8220;weak sauce&#8221;. I know. Anyway, here&#8217;s what I have in that virtual host file:</p>
<pre>NameVirtualHost *
&lt;VirtualHost 127.0.0.1:80&gt;
  ServerAdmin webmaster@localhost
  ServerName shindig

  DocumentRoot /home/jhoover/dev/shindig/php
  DirectoryIndex index.html index.php
  &lt;Directory /&gt;
    Options FollowSymLinks
    AllowOverride All
  &lt;/Directory&gt;

  ErrorLog /var/log/apache2/error.log
  LogLevel warn

  CustomLog /var/log/apache2/access.log combined
  ServerSignature On
&lt;/VirtualHost&gt;</pre>
<p>Once we have that in place, we need to edit our host file:</p>
<pre>sudo pico /etc/hosts</pre>
<p>Append the following to the hosts file and save:</p>
<pre>127.0.0.1       shindig</pre>
<p>Time to restart Apache:</p>
<pre>sudo /etc/init.d/apache2 restart</pre>
<p>Now you should be able to go to your web browser of choice and run the demo/test app:</p>
<pre>http://shindig/gadgets/ifr?url=http://www.labpixies.com/campaigns/todo/todo.xml</pre>
<p>If all went well you should see something a little like this:</p>
<p><img class="alignnone size-full wp-image-303" title="shindig_demo_app_screenshot" src="http://joshuahoover.com/wp-content/uploads/2008/09/shindig_demo_app_screenshot.png" alt="" width="354" height="403" /></p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2008/09/14/apache-shindig-php-setup-problem-solved/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MSSU Follow Up</title>
		<link>http://joshuahoover.com/2007/10/28/mssu-follow-up/</link>
		<comments>http://joshuahoover.com/2007/10/28/mssu-follow-up/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 03:07:11 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/2007/10/28/mssu-follow-up/</guid>
		<description><![CDATA[On Thursday, October 25th, I spoke to the CIS club at Missouri Southern State University. The presentation won&#8217;t win any awards (no presentation of mine ever will.) I put the Powerpoint up on SlideShare. I promised the students and professors in attendance that I would follow up with a post on my blog with links [...]]]></description>
			<content:encoded><![CDATA[<p>On Thursday, October 25th, I spoke to the CIS club at <a href="http://www.mssu.edu/" title="Missouri Southern State University">Missouri Southern State University</a>.  The presentation won&#8217;t win any awards (no presentation of mine ever will.)  I put <a href="http://www.slideshare.net/jhoover667/mssu-gestalt-presentation-20071025/" title="My Powerpoint from my MSSU CIS 10-25-07 presentation ">the Powerpoint up on SlideShare</a>. I promised the students and professors in attendance that I would follow up with a post on my blog with links and other info that might be helpful.</p>
<p><strong>Internships</strong><br />
If you&#8217;re interested in an internship with Gestalt&#8217;s Joplin office, please send your resume to my email address: <strong>jhoover at gestalt-llc.com</strong>.  I&#8217;ll make sure your resume gets to the right people within Gestalt.</p>
<p><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FPragmatic-Unit-Testing-NUnit-2nd%2Fdp%2F0977616673%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193624368%26sr%3D8-3&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" title="Pragmatic Unit Testing in C# with NUnit on Amazon.com"><img src="http://joshuahoover.com/wp-content/uploads/2007/10/pragmatic_unit_testing_in_c_sharp_with_nunit.jpg" alt="Pragmatic Unit Testing in C# with NUnit on Amazon.com" style="padding-left: 10px; padding-top: 10px" align="right" border="0" height="163" width="138" /></a></p>
<p><strong>Agile Software Engineering<br />
</strong>Some of the agile software engineering best practices I mentioned during the presentation were <a href="http://c2.com/cgi/wiki?TestDrivenDevelopment" title="More info on TDD">Test Driven Development (TDD)</a> and <a href="http://martinfowler.com/articles/continuousIntegration.html" title="Martin Fowler's article on CI">Continuous Integration (CI)</a>.  Since MSSU is focused on .NET, here are some links that might be helpful related to TDD and CI:</p>
<ul>
<li><a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.nunit.org%2F&amp;ei=QEIlR9uNM4LUerWL-JYO&amp;usg=AFQjCNEEzsRo6CKnpvmFJVtAHLSMYBZV5Q&amp;sig2=KvauJuqcW_VzKY4AuGuhpQ">NUnit &#8211; .NET unit testing framework</a></li>
<li><a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fccnet.thoughtworks.com%2F&amp;ei=8EElR8m7NILUeraL-JYO&amp;usg=AFQjCNFpRF_nI9T_orjzZSS0rBvq9-K2wQ&amp;sig2=6Ku9ueqyqqY1Qky-i9OKzA">CruiseControl.NET &#8211; .NET continuous integration server</a></li>
<li><a href="http://weblogs.asp.net/jdanforth/pages/How-to-Hook-Up-a-VS.NET-2005-Solution-With-CruiseControl.NET-in-a-Few-Minutes.aspx">CruiseControl.NET with Visual Studio 2005 project tutorial</a></li>
</ul>
<p><strong>YouTube Videos<br />
</strong>Coco had asked how Gestalt was using YouTube.  I mentioned that we used it as part of a recruiting effort.  We had a contest open to the employees to see who could make the coolest recruiting video on YouTube.  The results of that contest can be found <strong><a href="http://youtube.com/results?search_query=gestalt-llc&amp;search=tag" title="Gestalt, LLC YouTube recruiting videos">here</a></strong>.  The winner (as voted on by Gestalt employees) was <strong><a href="http://youtube.com/watch?v=bfDgRkHthfE" title="PatrolNet Woes on YouTube">John Moffet&#8217;s PatrolNet Woes</a></strong>.  In an act of shameless self-promotion, I&#8217;m embedding my video below.</p>
<p><a href="http://joshuahoover.com/2007/10/28/mssu-follow-up/"><em>Click here to view the embedded video.</em></a></p>
<p>&nbsp;&nbsp;</p>
<p><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FJob-Went-India-Pragmatic-Programmers%2Fdp%2F0976694018%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193621927%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325"><img src="http://joshuahoover.com/wp-content/uploads/2007/10/my_job_went_to_india.jpg" alt="My Job Went To India" style="padding-right: 10px" align="right" border="0" /></a><strong>Recommended Read<br />
</strong>A book I&#8217;m in the process of reading that I think would be extremely beneficial for college students to read is <strong><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FJob-Went-India-Pragmatic-Programmers%2Fdp%2F0976694018%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193621927%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">My Job Went To India</a></strong>. I&#8217;m about a third of the way through and the advice is practical and especially relevant for those entering the IT workforce these days.</p>
<p><strong>RSS<br />
</strong><img src="http://joshuahoover.com/wp-content/uploads/2007/10/rss.png" alt="RSS Logo" style="padding-right: 10px; padding-top: 10px" align="left" height="51" width="51" />There were some questions about <a href="http://en.wikipedia.org/wiki/RSS_(file_format)" title="Wikipedia entry on RSS">RSS</a> during the presentation.  May I suggest checking out the <strong><a href="http://pipes.yahoo.com/pipes/pipe.run?_id=lHbPURFn3BGvrQrfouNLYQ&amp;_render=rss">Gestalt Blogs RSS feed</a></strong>? This feed has all the posts from Gestalt bloggers, with quite a few being out of the Joplin office. My personal favorite combo for subscribing to and reading RSS feeds is <a href="http://getfirefox.com/" title="Get Firefox">Firefox</a> and <a href="http://google.com/reader">Google Reader</a>.</p>
<p><strong>Open Source<br />
</strong>Below are the links to all our current Open Source projects:</p>
<ul>
<li><strong>JBI Binding Components</strong>
<ul>
<li><a href="http://rss-bc.dev.java.net/" title="RSS JBI Binding Component">RSS BC</a></li>
<li><a href="http://sip-bc.dev.java.net" title="SIP JBI Binding Component">SIP BC</a></li>
<li><a href="http://uddi-bc.dev.java.net" title="UDDI JBI Binding Component">UDDI BC</a></li>
<li><a href="http://xmpp-bc.dev.java.net" title="XMPP JBI Binding Component">XMPP BC</a></li>
</ul>
</li>
<li><strong> Other Gestalt Open Source Projects</strong>
<ul>
<li><a href="http://www.glassfishwiki.org/jbiwiki/Wiki.jsp?page=EncodingSE" title="JBI Encoding Service Engine">Encoding Service Engine</a></li>
<li><a href="http://www.glassfishwiki.org/jbiwiki/Wiki.jsp?page=JBIMockFramework" title="JBI Mock Framework">JBI Mock Framework</a></li>
<li><a href="https://openfire-packet-listener.dev.java.net/" title="Openfire Packet Listener">Openfire Packet Listener</a></li>
</ul>
</li>
</ul>
<p><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FProducing-Open-Source-Software-Successful%2Fdp%2F0596007590%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193626726%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" redirect.html?ie="UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FProducing-Open-Source-Software-Successful%2Fdp%2F0596007590%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193626726%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" title="Producing Open Source Software on Amazon.com"><img src="http://joshuahoover.com/wp-content/uploads/2007/10/producing_open_source_software.jpg" alt="Producing Open Source Software" align="left" border="0" /></a>Remember to look into joining an Open Source project.  While I don&#8217;t have any specific recommendations on projects to join (other than our own!), I can definitely recommend reading the book <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FProducing-Open-Source-Software-Successful%2Fdp%2F0596007590%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193626726%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" redirect.html?ie="UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FProducing-Open-Source-Software-Successful%2Fdp%2F0596007590%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1193626726%26sr%3D8-1&amp;tag=imustbeanacro-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" title="Producing Open Source Software on Amazon.com">Producing Open Source Software</a>.  You can get<a href="http://producingoss.com/" title="Producing Open Source Software pdf and html versions"> a free PDF and HTML version of the book</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2007/10/28/mssu-follow-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Finds Search</title>
		<link>http://joshuahoover.com/2007/09/17/google-finds-search/</link>
		<comments>http://joshuahoover.com/2007/09/17/google-finds-search/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 03:56:23 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/2007/09/17/google-finds-search/</guid>
		<description><![CDATA[It always seemed odd to me that Google Reader never had search functionality. I mean, what is the one feature you&#8217;d expect a Google app to have built-in from the start? Apparently not search. I&#8217;m a little slow, haven&#8217;t been in Google Reader much lately and completely missed the new search bar at the top [...]]]></description>
			<content:encoded><![CDATA[<p>It always seemed odd to me that <a href="http://google.com/reader">Google Reader</a> never had search functionality.  I mean, what is the one feature you&#8217;d expect a Google app to have built-in from the start?  Apparently not search.   I&#8217;m a little slow, haven&#8217;t been in Google Reader much lately and completely missed the <a href="http://googlereader.blogspot.com/2007/09/we-found-it.html" title="Official Google Reader Blog: We Found It">new search bar</a> at the top of the Google Reader app.  Very cool.  Now I can actually find nuggets of pure gold in old posts that I tag and star in Reader.</p>
<p><a href="http://googlereader.blogspot.com/2007/09/we-found-it.html" title="Official Google Reader Blog: We Found It"><img src="http://joshuahoover.com/wp-content/uploads/2007/09/google_reader_search.gif" title="Google Reader Search" alt="Google Reader Search" border="0" height="72" width="399" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2007/09/17/google-finds-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 is Agile&#8230;Sort of</title>
		<link>http://joshuahoover.com/2007/09/02/web-20-is-agilesort-of/</link>
		<comments>http://joshuahoover.com/2007/09/02/web-20-is-agilesort-of/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 02:14:34 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/2007/09/02/web-20-is-agilesort-of/</guid>
		<description><![CDATA[Scott Rosenberg makes an interesting observation about Web 2.0 software. Scott wrote the book Dreaming in Code, which gives a look into the making of the open source software project Chandler. One of the key points Scott makes in his book is that software is hard. One of the most common arguments against this point [...]]]></description>
			<content:encoded><![CDATA[<p>Scott Rosenberg makes <a href="http://www.wordyard.com/2007/08/27/five-years-2/" title="Web 2.0's Five Year Development Cycle">an interesting observation</a> about Web 2.0 software.  Scott wrote the book <a href="http://www.amazon.com/Dreaming-Code-Programmers-Transcendent-Software/dp/1400082463/ref=pd_bbs_sr_1/103-5845420-0451869?ie=UTF8&amp;s=books&amp;qid=1188780275&amp;sr=8-1" title="Buy Dreaming in Code on Amazon.com"><em>Dreaming in Code</em></a>, which gives a look into the making of the open source software project <a href="http://chandlerproject.org/" title="Chandler Project">Chandler</a>.  One of the key points Scott makes in his book is that software is hard.  One of the most common arguments against this point is that web applications solve this problem.  Web applications are agile in their nature.  They can be rapidly developed, deployed and continually updated with new features and fixes.<img src="http://joshuahoover.com/wp-content/uploads/2007/09/bloglines_yahoo_equal_vista.jpg" title="Bloglines and Yahoo equal MS Vista" alt="Bloglines and Yahoo equal MS Vista" style="padding-top: 10px" align="left" border="0" /></p>
<p>Web 2.0 makes software almost easy in comparison to past software revolutions.  Not quite.  As Scott points out in his blog post, both Yahoo! and Bloglines have taken nearly five years to release new versions of their web (2.0) applications &#8212; Yahoo! Mail and Bloglines&#8217; namesake app.  Five years is what it took Microsoft to get Vista out the door. While it&#8217;s easy to build web applications and services in a rapid manner, it&#8217;s not necessarily easier to make them scale.  <a href="/2007/09/01/twitter-tools-wordpress-plugin-fix/" title="Twitter Problems Post">I pointed out yesterday</a> that Twitter is having issues with scaling their service as it grows ever more popular.  Facebook, MySpace, and many other Web 2.0 companies have faced the same challenge.</p>
<p>I don&#8217;t think many people touting Web 2.0&#8242;s software development superiority often understand what is involved in making a scalable web app/service.  There are so many pieces involved and just addressing some of them (say the database layer or client optimizations) is not an option.  Once one piece is made more scalable you find the other pieces are hindering the performance and stability of the application/service.</p>
<p><a href="http://h-master.net/web2.0/index.php" title="Web 2.0 Logo Creator by Alex P"><img src="http://joshuahoover.com/wp-content/uploads/2007/09/web_two_point_one.png" title="Web 2.1 Logo" alt="Web 2.1 Logo" style="padding-left: 10px" align="right" border="0" /></a>I believe that the next revolution for Web 2.0 (I think I&#8217;ll call this Web 2.1) is allowing developers to build on top of an infrastructure that handles the core scaling gotchas from the start transparently, without large up-front capital investment.  <a href="http://www.amazon.com/exec/obidos/tg/browse/-/3435361/sr=53-1/sr=53-1/qid=1188781341/ref=tr_105791/103-5845420-0451869" title="Amazon.com Web Services">Amazon.com&#8217;s AWS offerings</a> appear to be headed in this direction.  They&#8217;re still missing some key pieces (a reliable/persistent data store &amp; load balancing for example), but it&#8217;s promising.  The ideal would be for developers to not have to worry so much about the underlying hardware, network, operating systems, etc.  For example, if you&#8217;re building the next great web app/service with Ruby on Rails, you would love to be able to deploy in an environment that allows you to grow without any worries.  You&#8217;d want to know that you have things like:</p>
<ul>
<li>Nearly endless data storage that is reliable and responsive</li>
<li>As much bandwidth as necessary (throttle on demand)</li>
<li>A data store that grows without concerns of having to purchase additional hardware and software</li>
<li>An authentication &amp; authorization service</li>
<li>A standards based reliable messaging service</li>
<li>The ability to seamlessly add more instances in the web and app tiers (on demand)</li>
<li>A caching service for all levels of caching (client, database, external data sources, etc.)</li>
</ul>
<p>If you can have those types of items covered in your deployment environment up-front without the typical capital investments (a big gotcha for today&#8217;s Web 2.0 companies, by the way), then I think the five year development cycle Scott Rosenberg references with the latest Yahoo! Mail and Bloglines&#8217; releases can be lessened drastically.  The problem today is that you can build your web app/service with scaling in mind but it takes substantial amounts of time to ramp up and test for each increment in the underlying infrastructure.  If Twitter (for example) started out running on an infrastructure that had the items I listed above, I think they&#8217;d be able to better handle the exponential growth they&#8217;ve been experiencing.  They didn&#8217;t start out on an infrastructure like that because the capital costs are too much initially.</p>
<p>Bottom line, Web 2.0 software development is not a panacea. (Ditto for SOA, as <a href="http://limnthis.typepad.com/limn_this/2007/08/soa-as-panacea.html" title="SOA as Panacea">Jim Stogdill (Gestalt&#8217;s CTO) pointed out previously</a>.)  There are still many challenges faced by Web 2.0 software that makes it far from ideal in terms of solving the age old problems inherent in software.  The good news is that there are opportunities to help solve these problems.  The question I have now is: Who will step up to the challenge?</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2007/09/02/web-20-is-agilesort-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter API Not Exactly Working Right Now</title>
		<link>http://joshuahoover.com/2007/09/01/twitter-api-not-exactly-working-right-now/</link>
		<comments>http://joshuahoover.com/2007/09/01/twitter-api-not-exactly-working-right-now/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 12:29:26 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/2007/09/01/twitter-api-not-exactly-working-right-now/</guid>
		<description><![CDATA[I installed the Twitter Tools plugin for WordPress on my blog here earlier in the week. I noticed on Thursday night that it stopped working. I did a little troubleshooting on it and found that the call to the authenticated Twitter API URLs were giving back a 301 response instead of a 200. Previously, when [...]]]></description>
			<content:encoded><![CDATA[<p>I installed the <a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Falexking.org%2Fprojects%2Fwordpress&amp;ei=S1nZRsXRCpbIiAGO-bzNCQ&amp;usg=AFQjCNHa1XBb3eNxu4B2QwHWnt_GiFDllA&amp;sig2=T4qm63761ySiupGLUorKEw" title="Twitter Tools home page">Twitter Tools plugin</a> for WordPress on my blog here earlier in the week.  I noticed on Thursday night that it stopped working.  I did <a href="http://wordpress.org/support/topic/130940?replies=12" title="Twitter Tools forum topic on login no longer working">a little troubleshooting</a> on it and found that the call to the authenticated Twitter API URLs were giving back a <a href="http://www.somacon.com/p145.php" title="Article on HTTP 301 Responses">301 response</a> instead of a 200.  Previously, when I wrote a new post, my Twitter status would update with the title and link to the post.  It was a great way to shamelessly self-promote my blog to those following the <a href="http://twitter.com/SumOfParts/with_friends" title="Friends of SumOfParts Twitter">Gestalt Twitter friends of status</a>.  Some call it spam, I prefer to think of it as &#8220;direct marketing&#8221;.</p>
<p>It appears <a href="http://groups.google.com/group/twitter-development-talk/browse_thread/thread/65e0a0990b120abf" title="Twitter API email list thread on API issues">Twitter made some changes to their load balancing setup</a> and that is not playing nice with previously working consumers of the API like the Twitter Tools plugin for WordPress.  I think I have a way around the problem but that means I need to add some code to Twitter Tools.  If I write code then the guys back at <a href="http://gestalt-llc.com/" title="Gestalt">the office</a> might start to freak out.  You see, my specialty is running GoTo meetings, a projector (questionable there), and ScrumWorks.  This was first pointed out by <a href="http://jlorenzen.blogspot.com/" title="James' blog">James Lorenzen</a>.  Never ones to disappoint when it comes to boosting their Scrum Master&#8217;s self-esteem, James&#8217; team members jumped in on the fun.  I&#8217;d hate to ruin my reputation with those guys but I may have to.  My spam operation&#8230;errrr&#8230;direct marketing efforts demand it.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2007/09/01/twitter-api-not-exactly-working-right-now/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Don&#8217;t Get Facebook</title>
		<link>http://joshuahoover.com/2007/08/22/i-dont-get-facebook/</link>
		<comments>http://joshuahoover.com/2007/08/22/i-dont-get-facebook/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 03:11:24 +0000</pubDate>
		<dc:creator>Joshua Hoover</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://joshuahoover.com/2007/08/22/i-dont-get-facebook/</guid>
		<description><![CDATA[I&#8217;m not hip. I don&#8217;t get Facebook. I understand the concept but I don&#8217;t get the hype around it. OK, it&#8217;s a platform. But, maybe I&#8217;m missing something. The whole point of the Facebook platform seems to be about locking you into Facebook. Another well hyped web app is Twitter. While I don&#8217;t use Twitter [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not hip. I don&#8217;t get <a href="http://www.facebook.com/">Facebook</a>. I understand the concept but I don&#8217;t get <a href="http://www.google.com/search?q=site%3Atechmeme.com+facebook&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=com.ubuntu:en-US:official&amp;client=firefox-a" title="Techmeme.com Facebook threads">the hype</a> around it. OK, <a href="http://developers.facebook.com/" title="Facebook Platform">it&#8217;s a platform</a>. But, maybe I&#8217;m missing something. The whole point of the Facebook platform seems to be about locking you into Facebook. Another well hyped web app is Twitter. While I don&#8217;t use <a href="http://www.twitter.com/">Twitter</a> (nor the <a href="http://www.pownce.com/" title="Pownce">numerous</a> <a href="http://jaiku.com/" title="Jaiku">competitors</a>), I think I get it. <a href="http://groups.google.com/group/twitter-development-talk/web/api-documentation">Twitter&#8217;s API</a> makes more sense to me. Twitter isn&#8217;t locking you into a platform like Facebook is. Am I over simplifying things?</p>
<p>You&#8217;d think Amazon would try to build out a platform of sorts with their <a href="http://aws.amazon.com/" title="Amazon Web Services">AWS</a> offerings. Who knows, maybe they are. But, I think Amazon is taking more of the approach I see in services like Twitter &#8212; providing well focused services like the <span class="small"></span><a href="http://www.amazon.com/b/ref=sc_fe_l_2/105-1714057-7895655?ie=UTF8&amp;node=342430011&amp;no=342430011&amp;me=A36L942TSJ2AJA">Flexible Payments Service (FPS)</a> and <a href="http://www.amazon.com/Simple-Queue-Service-home-page/b/ref=sc_fe_l_2/105-1714057-7895655?ie=UTF8&amp;node=13584001&amp;no=342430011&amp;me=A36L942TSJ2AJA">Simple Queue Service (SQS)</a> rather than an all encompassing platform that makes the seemingly limitless Internet and web rather limited.</p>
<p>So, what is it that I don&#8217;t get about Facebook that many others do?</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuahoover.com/2007/08/22/i-dont-get-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

