<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Pikasoft</title>
    <link>http://weblog.pikasoft.com</link>
    <language>en</language>
    <webMaster>john.repko@pikasoft.com (John Repko)</webMaster>
    <copyright>Copyright 2006-2008</copyright>
    <ttl>60</ttl>
    <pubDate>Sat, 10 Feb 2007 03:42:55 GMT</pubDate>
    <description>Lean web writing and thinking</description>
    <item>
      <title>This is not a Pipe</title>
      <link>http://weblog.pikasoft.com/past/2007/2/10/this_is_not_a_pipe/</link>
      <pubDate>Sat, 10 Feb 2007 02:51:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/2/10/this_is_not_a_pipe/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/magritte.jpg" alt="Pipes" title="A sort-of pipe"/&gt;&lt;/p&gt;

&lt;p&gt;Every once in a while, something happens that makes me completely reassess my take on "what's next" in the technology sector.  The original Macintosh was one such epiphany, Apple's Hypercard was another (Hypercard is a much-unappreciated program - had Apple added network links to it we'd have had a writeable, scriptable WWW in 1989).  Netscape's first browser was a third.  On Thursday, the release of &lt;a href="pipes.yahoo.com/"&gt;Yahoo! Pipes&lt;/a&gt; shook my world.&lt;/p&gt;

&lt;p&gt;The Pipes slogan is "Rewire the web", and that's what it purports to do - as a visual editor for RSS feeds that dramatically lowers the time and expertise needed to create a &lt;a href="http://en.wikipedia.org/wiki/Mashup_%28web_application_hybrid%29"&gt;"mashup"&lt;/a&gt;.  Pipes lets you create your own personal web channels, and &lt;a href="http://lifehacker.com/software/feeds/make-your-own-mashup-with-yahoo-pipes-235263.php"&gt;Gina Trapani at Lifehacker has a great example of how to do this&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;And so, if your interest is, say, the NFL draft, it's pretty easy to wire up all the draft-tracking sites so that if a potential 7th round pick out in East Treestump gets a hangnail, you'll know about it.   But the implications go so much further...&lt;/p&gt;

&lt;p&gt;In a REST-ian world, it's pretty easy, once you've modeled your world as a set of resources, to create RSS feeds that track the changes in those resources.  With an application like Pipes, it's really easy to tie those feeds together into new applications.  This is the future of "SOA" and "Web Services."&lt;/p&gt;

&lt;p&gt;Forget SOAP, and the growing pile of WS-* standards as a means of wiring up disparate applications.  REST-ify the applications, use RSS to publish the changes, and a tool like Pipes (or one of the imitators that should be quick to follow) to wire the whole thing up.  SOAPians - put that in your pipe and smoke it!&lt;/p&gt;

&lt;p&gt;Seriously, though, while the Pipes idea is great, there are still some issues to work through.  The intuitive purity of the Pipes concept was proven when everyone from the merest script-kiddy to the deepest hacker jumped on Yahoo! and bought the Pipes site Down! all day on launch day.  Yahoo! knows a bit about keeping large sites up under volume, so we are surely talking about a big human wave here.&lt;/p&gt;

&lt;p&gt;But that's not all, either.  XML is wordy, and XML transformation is slow and computationally intensive.  I'm curious to see if the sheer processing load leads to more restricted (e.g. JSON) or more efficient/binary formats as a wire protocol for Pipe-y services.&lt;/p&gt;

&lt;p&gt;I'm convinced these things will be worked out, and Tim O'Reilly's comments about Pipes as a &lt;a href="http://radar.oreilly.com/archives/2007/02/pipes_and_filte.html"&gt;"milestone in the history of the internet"&lt;/a&gt; will prove to be true.  &lt;/p&gt;

&lt;p&gt;As such, let this be my 14th prediction for 2007: February 7, the Pipes release date, will be looked back on as the day SOAP died. Not that it's bad, but the future has been shown to lie elsewhere.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/Pipes">Pipes</category>
      <category domain="http://weblog.pikasoft.com/past/tags/REST">REST</category>
      <category domain="http://weblog.pikasoft.com/past/tags/SOAP">SOAP</category>
      <category domain="http://weblog.pikasoft.com/past/tags/XML">XML</category>
    </item>
    <item>
      <title>RESTful Goodness - I declare!</title>
      <link>http://weblog.pikasoft.com/past/2007/1/24/restful_goodness_i_declare/</link>
      <pubDate>Wed, 24 Jan 2007 07:10:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/24/restful_goodness_i_declare/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/rest2.jpg" alt="Rest" title="REST"/&gt; &lt;/p&gt;

&lt;p&gt;Rails 1.2 was recently released, and I've been updating and upgrading Pikaplanner to take advantage of some of the new features in 1.2.&lt;/p&gt;

&lt;p&gt;The highlight of Rails 1.2 is built-in REST support, and I've been updating my controllers to provide what amounts to a standard, easy-to use, web-services API.  &lt;/p&gt;

&lt;p&gt;My first step in the process was to work through some of the examples in Rob Orsini's terrific developer volume &lt;a href="http://www.oreilly.com/catalog/railsckbk/"&gt;Rails Cookbook&lt;/a&gt;.  Diego Scataglini's examples in Rob's book provide a simple and quick intro to REST support in Rails 1.2.&lt;/p&gt;

&lt;p&gt;REST is a great example of Clayton Christensen's concept of a disruptive technology.  I've worked with SOAP and RPC in the past, and at first blush REST is less powerful than either.   Still, with Rails, REST is easy and cheap to adopt at the service-provider end, and easy to experiment with at the receiver end.&lt;/p&gt;

&lt;p&gt;For example, one of the first code areas I worked through was a simple product listing.  The goal here is to provide both a web (HTML) and web services (XML) interface to our (sample) product information.&lt;/p&gt;

&lt;p&gt;The REST support in Rails makes it easy, and all we need to do to turn our web pages into a web-services interface is tell (though the URL) our application that we want XML (instead of HTML) back.&lt;/p&gt;

&lt;p&gt;So:  to see the web page listing our products, we'd use "/products", as shown below:&lt;/p&gt;

&lt;p&gt;&lt;img src="/images/blog_images/products.jpg" alt="Products" title="Products listing in HTML"/&gt; &lt;/p&gt;

&lt;p&gt;So far, so good, so common&amp;mdash;in Rails we've called up pages like this in the ":controller/:action/:id" form (that defaults to a GET on index.html here) zillions of times.   What's &lt;em&gt;new&lt;/em&gt;, with REST and Rails 1.2, is that all we have to do to have a web services interface is &lt;em&gt;tell the application we want XML back, instead of HTML&lt;/em&gt;.   So our URL is of the form ":controller/:action/:id.xml", as shown below:&lt;/p&gt;

&lt;p&gt;&lt;img src="/images/blog_images/products_xml.jpg" alt="Products.xml" title="Products returned in XML"/&gt;&lt;/p&gt;

&lt;p&gt;and as you can see we get XML back - a web services interface practically for free (developer time-wise).&lt;/p&gt;

&lt;p&gt;There is a lot of magic underlying this simple example, but a handful of key points stand out:&lt;/p&gt;

&lt;p&gt;1) All we need for our "web services" interface is to tell our controller we want XML back.  &lt;/p&gt;

&lt;p&gt;2) We could have gotten JavaScript back (where that is appropriate) in the same manner&lt;/p&gt;

&lt;p&gt;3) The key shift in development mindset is that the interface is not &lt;em&gt;imperative&lt;/em&gt; (as SOAP and most web services are) but &lt;em&gt;declarative&lt;/em&gt;&amp;mdash;everything important in the system a) has its own URL for CRUD access, b) exists as a stateless resource, in which complex actions can be created by changes in state of one resource triggering actions to change the state of other, related resources, and 3) is capable of varying the format of responses, depending on what is requested.&lt;/p&gt;

&lt;p&gt;That third point is a mouthful, and the core of &lt;a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm"&gt;stuff on which theses&lt;/a&gt; have been written.&lt;/p&gt;

&lt;p&gt;Declarative programming is a significant mind-shift, one I'll be writing more about in the future.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/12">12</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Cookbook">Cookbook</category>
      <category domain="http://weblog.pikasoft.com/past/tags/REST">REST</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Rails">Rails</category>
      <category domain="http://weblog.pikasoft.com/past/tags/XML">XML</category>
      <category domain="http://weblog.pikasoft.com/past/tags/declarative">declarative</category>
      <category domain="http://weblog.pikasoft.com/past/tags/imperative">imperative</category>
      <category domain="http://weblog.pikasoft.com/past/tags/services">services</category>
      <category domain="http://weblog.pikasoft.com/past/tags/web">web</category>
    </item>
    <item>
      <title>Behind the Headlines</title>
      <link>http://weblog.pikasoft.com/past/2007/1/24/behind_the_headlines/</link>
      <pubDate>Wed, 24 Jan 2007 06:23:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/24/behind_the_headlines/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;One of the unsung facets of working reasonably up in the org structure of a large, successful tech company is that you get a unique view of how the tech media machine works.&lt;/p&gt;

&lt;p&gt;Tech writing (like Tech Marketing) is hard, because 1) &lt;a href="http://en.wikipedia.org/wiki/Clarke's_three_law"&gt;Any sufficiently advanced technology is indistinguishable from magic&lt;/a&gt;, 2) Only magicians really understand the magic, and 3) Magic skill != writing skill.  So, back in those ol' days, I wasn't that surprised to find that media pieces often originated in the Marketing departments of big companies, but I am always surprised when media outlets appear to run the Marketing feed &lt;em&gt;unedited&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;As a sign that some of the old ways still prevail, today we have the following two, loosely-coupled headlines:  &lt;a href="http://news.com.com/2100-1016_3-6152718.html?part=rss&amp;amp;tag=2547-1_3-0-5&amp;amp;subj=news"&gt;Vista success hinges on developers&lt;/a&gt; and &lt;a href="http://news.com.com/2300-1016_3-6152711-1.html?part=rss&amp;amp;tag=6152711&amp;amp;subj=news"&gt;Developers take advantage of Vista&lt;/a&gt;.  A nice two-headline tautology.&lt;/p&gt;

&lt;p&gt;I'm sure both headlines are valid, but looking at things that shallowly completely misses what's going on in software right now.   &lt;em&gt;OEM Agreements&lt;/em&gt; guarantee Vista's success - things might be better if developers come aboard, but Vista should do just fine (on every new machine shipped) even if they don't.&lt;/p&gt;

&lt;p&gt;This was probably true even back in 2001, when Microsoft CEO Steve Ballmer famously cried &lt;a href="http://video.google.com/videoplay?docid=6304687408656696643"&gt;"Developers! Developers! Developers!"&lt;/a&gt;, but it really doesn't bear up to scrutiny today.   In 20-odd years of mass-market windowed software development, &lt;a href="http://en.wikipedia.org/wiki/Zawinski's_law_of_software_envelopment"&gt;Zawinski's Law&lt;/a&gt; (&lt;em&gt;"Every program attempts to expand until it can read mail. Those programs which cannot so expand are replaced by ones which can."&lt;/em&gt;) - has basically held, and now even the simplest "mainstream" apps offer a staggering amount of functionality.&lt;/p&gt;

&lt;p&gt;In the desktop software world, probably 95% of all usage is performed using about a half-dozen applications (Word, Excel, PowerPoint, Outlook, &lt;em&gt;Browser&lt;/em&gt;, Itunes, &lt;em&gt;IM Client&lt;/em&gt;).   Even if all the developers stay home, that still means that Vista will lose functionality &lt;em&gt;only&lt;/em&gt; at the remaining 5% margin.&lt;/p&gt;

&lt;p&gt;There are two things worth drawing from the articles:  1) We'll see &lt;em&gt;better&lt;/em&gt; software on the Vista platform if developers flock to Vista, but Vista's success does not depend on that flocking, and 2) if you are writing software today you have to be mindful that most (95%, if you accept the guesstimated figure above) of the "horizontal software space" is already filled.&lt;/p&gt;

&lt;p&gt;That's not to say that there's not room for great new software, only that great new software &lt;em&gt;isn't&lt;/em&gt; going to take a piece of the current pie&amp;mdash;the only way to create great new software is to make the pie bigger.&lt;/p&gt;

&lt;p&gt;In a later post, I'll talk about models for doing just that.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/Microsoft">Microsoft</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Vista">Vista</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Zawinski">Zawinski</category>
      <category domain="http://weblog.pikasoft.com/past/tags/magic">magic</category>
    </item>
    <item>
      <title>Great Management Books: The Innovator's Dilemma, and The Godfather</title>
      <link>http://weblog.pikasoft.com/past/2007/1/18/great_management_books_the_innovators/</link>
      <pubDate>Thu, 18 Jan 2007 04:42:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/18/great_management_books_the_innovators/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;em&gt;Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.&lt;/em&gt; &amp;mdash; Antoine de Saint-Exupery&lt;/p&gt;

&lt;p&gt;I've always liked &lt;a href="http://www.amazon.com/Innovators-Dilemma-Technologies-Management-Innovation/dp/0875845851/sr=8-2/qid=1169146898/ref=pd_bbs_2/105-2392289-2875667?ie=UTF8&amp;amp;s=books"&gt;Clayton Christensen's book "The Innovator's Dilemma"&lt;/a&gt; as a metaphor to explain product innovation and succession.  To vastly oversimplify the main idea, companies get so good at "hammering" that everything: screws, rivets, staples, welds, etc. is either treated as a "nail" or crushed in favor of "nails."&lt;/p&gt;

&lt;p&gt;Software is an industry that produces natural monopolies, and so for software The Innovator's Dilemma applies, not just to individual companies, but &lt;em&gt;to the entire industry&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;This makes things really hard for software developers today.  Microsoft, with Windows started out as a system for non-networked individual devices, and has tried to expand all the way up to clustered 'mainframe' solutions.   Enterprise Java started out trying to boil the ocean, boiled it, only to find that ocean-boiling solutions aren't of much use when all you want is a cup of hot water for soup.   In trying to solve the same universe of problems, both the Microsoft and Java camps have adopted the same set of ills.  One size doesn't fit all.&lt;/p&gt;

&lt;p&gt;In this case of two increasingly over-engineered systems, I prefer openness, not because of what you can add, but because of &lt;a href="http://en.wikipedia.org/wiki/Damn_Small_Linux"&gt;&lt;em&gt;what you can take away&lt;/em&gt;&lt;/a&gt;.  The key ratio for software managers to watch I call the "overhead ratio" which is (Time spent on the solution the customer will pay for) / (Total time spent).  The ideal solution would have a quick installation, rapid configuration, and rapid user iterations to a state of solution-ness that is "just right."   The ideal development effort will spend all its time on "value-add" components, and none on "configuration."&lt;/p&gt;

&lt;p&gt;Both Microsoft and Java development have a pretty onerous overhead ratio - getting &lt;a href="http://citebite.com/t8j2k5p1aege"&gt;all the components right takes an increasingly long time&lt;/a&gt;.   As I've previously noted, I like &lt;a href="http://en.wikipedia.org/wiki/Virtual_appliance"&gt;"virtual appliances"&lt;/a&gt;, and the "Convention, not Configuration" mantra of Rails/Grails for just this reason.  &lt;/p&gt;

&lt;p&gt;But there's more to it that that, a notion that I'll posit as &lt;a href="http://www.amazon.com/gp/reader/0399103422/ref=sib_dp_pt/105-2392289-2875667#reader-link"&gt;The Godfather's Law&lt;/a&gt;:  "Technology components that reach a sufficient level of irritation are made to SIMPLY DISAPPEAR."   Credit Mario Puzo with this: &lt;em&gt;"As soon as the Corleone Family set up their usual business liaison with the local police force they were informed of all such complaints and all crimes by professional criminals.   In less than a year Long Beach became the most crime-free town of its size in the United States.  Professional stickup artists and strong-arms received one warning not to ply their trade in the town.  They were allowed one offense.  When they committed a second they simply disappeared.&lt;/em&gt;"&lt;/p&gt;

&lt;p&gt;Software licensing is a headache?  BING - SaaS.
MS Shop that doesn't run Linux?   BANG - Virtual appliances.
No (MS) or overcomplicated (EJB) ORM? - BOOM - Hibernate.&lt;/p&gt;

&lt;p&gt;...and so on.  As the best software people are &lt;a href="http://c2.com/cgi/wiki?LazinessImpatienceHubris"&gt;"Lazy, Impatient, and Hubristic"&lt;/a&gt; (a description that also fit Sonny Corleone), no system of excessive overhead ratio will last long.  One key to software success is to figure out when a paradigm is about to get "bumped off", and to move in on all the action when it happens.&lt;/p&gt;

&lt;p&gt;There is a great opportunity for software development organizations who can surf the transition.  The key is not in choosing the "next Java" or hot development environment, but in identifying &lt;em&gt;all&lt;/em&gt; of the barriers to adoption and making them "simply disappear."  Even if they might agree on nothing else, the two "C's" (Christensen and Corleone) would agree here.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/SAAS">SAAS</category>
      <category domain="http://weblog.pikasoft.com/past/tags/dilemma">dilemma</category>
      <category domain="http://weblog.pikasoft.com/past/tags/godfather">godfather</category>
      <category domain="http://weblog.pikasoft.com/past/tags/innovator">innovator</category>
      <category domain="http://weblog.pikasoft.com/past/tags/virtual">virtual</category>
    </item>
    <item>
      <title>Feelin' Groovy</title>
      <link>http://weblog.pikasoft.com/past/2007/1/8/feelin_groovy/</link>
      <pubDate>Mon, 08 Jan 2007 08:49:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/8/feelin_groovy/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/claesz.jpg" alt="Banquet" title="Banquet"/&gt; 
Programming platforms are like holiday dinners - to succeed they have to offer something for everyone, and if they/you sample a bit of everything then they (like you) are likely to end up bloated.&lt;/p&gt;

&lt;p&gt;Such is the case with Java, a pretty language with clean syntax that, in its full Enterprise-banquet form, has &lt;a href="http://today.java.net/pub/a/today/2004/06/15/ejb3.html"&gt;been compared with eating an elephant.&lt;/a&gt;  Enterprise Java offers &lt;em&gt;everything&lt;/em&gt;, and development teams have to make a lot of technical calls before the first line of code is ever written:  &lt;a href="http://my.execpc.com/~gopalan/java/jdo/jdo_vs_ejb.html"&gt;EJB or JDO?&lt;/a&gt;  bean-managed, container-managed, or framework-provided persistence?  &lt;a href="http://www.theserverside.com/news/thread.tss?thread_id=25804"&gt;EJB 3.0 or JDO 2.0?&lt;/a&gt;    &lt;a href="http://forum.java.sun.com/thread.jspa?threadID=577642&amp;amp;messageID=2899465"&gt;Struts or JSF or Spring?&lt;/a&gt;  The wrong call, of merely the passage of time can make for pretty hard-to-manage code.&lt;/p&gt;

&lt;p&gt;Still, Java's been used in enterprise development for years now; it has a large library of code and many trained developers and all of this makes for a pretty appealing banquet-table.  What is a development team to do?&lt;/p&gt;

&lt;p&gt;A common answer lies in the realm of "opinionated code," in which the development team chooses a set of beliefs, and architecture follows.   Ruby on Rails is a good example of opinionated code: everything, from default directory layouts to ORM framework (ActiveRecord) to dependency injection is baked in.&lt;/p&gt;

&lt;p&gt;RoR is great, but it doesn't address the great banquet of Java development and platform that's evolved over the past nine years.  Enter Ruby-on-Rails-for-the-Java-set:  &lt;a href="http://groovy.codehaus.org/"&gt;Groovy&lt;/a&gt; (the language) and &lt;a href="http://grails.org/"&gt;Grails&lt;/a&gt; (the platform).&lt;/p&gt;

&lt;p&gt;Groovy is a dynamic language based on Java and strongly influenced by Ruby, and Grails is a JEE-spiced framework modeled-on and very similar to Rails.    Groovy reached it &lt;a href="http://glaforge.free.fr/weblog/?itemid=200"&gt;1.0th birthday this week&lt;/a&gt;, and Grails is nearing it's 0.4 release, so the platform isn't particularly mature yet, but has solid financial backing and is already being explored in &lt;a href="http://www.nabble.com/Groovy-1.0-is-there!-t2910704.html"&gt;"mission-critical enterprise applications"&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;"So what?" you say&amp;mdash;is this instant relief for enterprise development, or a "wafer-thin mint."  My first experiences with GoG indicate the former.  Setup is fast, and the initial development environment provides ORM (from Hibernate), inversion of control and MVC (from Spring), logging (log4j), and layouts (from SiteMesh).  This is opinionated software, the decisions are made and many of the patterns that have made RoR popular (DRY, convention-over-configuration, etc.) are baked in to GoG as well.&lt;/p&gt;

&lt;p&gt;Groovy and Grails may not be ready for full enterprise deployment, but the platform is easy to grasp for both Java and Ruby developers, provides much of the development speed and elegance of RoR, and embraces the libraries, seamless integration-to and feel-of JEE.   It should be a great platform for prototypes and rapid JEE development, and 2007 should reveal whether it will mature to an enterprise-ready framework.&lt;/p&gt;

&lt;p&gt;Tastes great, less filling...&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/Grails">Grails</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Groovy">Groovy</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Java">Java</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Rails">Rails</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Ruby">Ruby</category>
    </item>
    <item>
      <title>Prediction #12:  Rise of the (virtual) machines</title>
      <link>http://weblog.pikasoft.com/past/2007/1/5/prediction_12_rise_of_the/</link>
      <pubDate>Fri, 05 Jan 2007 11:32:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/5/prediction_12_rise_of_the/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;Make it 12!   Predictions and Snowfall&lt;/p&gt;

&lt;p&gt;Might as well start with the snowfall first:  another twelve inches on the ground today.  We've fallen into a pattern - Thursday = storm starts, Friday = storm ends and some chunk of the day is spent digging out.  Only a foot today, so maybe the weekly effect is damping out.&lt;/p&gt;

&lt;p&gt;But on to my final prediction for 2007 - the Year of the Software Appliance.&lt;/p&gt;

&lt;p&gt;I'm working on Pikaplanner, a lean manufacturing application that's designed to be run in a hosted environment.  I have a great setup for it, with custom gems installed and a beta version of a hyper-fast Ruby virtual machine.   It works great for me, but moving it to a hosting provider has proved problematic.&lt;/p&gt;

&lt;p&gt;At this point in our malware-infested world, installing anything new anywhere is a risky proposition.  Installing enterprise software can also be time-consuming:  back in the day for a decent-size Oracle apps installation you would want to set aside a full week just to get the software installed.&lt;/p&gt;

&lt;p&gt;All of these problems (custom environments, malware, and difficult installs) are remedied by the concept of a software appliance.  Illustrative of the SA concept, Digium this week announced the &lt;a href="http://www.oreillynet.com/etel/blog/2007/01/asterisknow_open_source_softwa.html"&gt;release of it's Asterisk VOIP PBX as a software appliance&lt;/a&gt;.    Asterisk is a terrific product&amp;mdash;an open source (free as in beer) IP switching system.  This monumental breakthrough in cheap communications systems has seen rapid growth, limited only by the difficulty of getting linux and telephony setup and configured by mere mortals.&lt;/p&gt;

&lt;p&gt;Enter the software appliance - a bundle that includes the operating system, all the extra packages needed, and the VOIP switch software all pre-configured and delivered to be run virtual player environment.  A tricky install becomes a simple, 30-minute exercise.&lt;/p&gt;

&lt;p&gt;This is revolutionary&amp;mdash;VMware (popular maker of virtualization products, recently acquired by EMC) products are generally already well-accepted in corporate IT departments, and encapsulated applications take a lot of the risk out of new software deloyments.   SO ... if you want my Pikaplanner (complete with customized environment), all I need to do is package it up, lock, stock and barrel, and deliver it as a software appliance.   The "tricky install" and "customer environment" problems are solved in one fell swoop.&lt;/p&gt;

&lt;p&gt;A software appliance is completely contained within its virtual environment, so if you're worried about security, just throw the appliance away and start again!&lt;/p&gt;

&lt;p&gt;That's really only the beginning.  If you write linux-based applications and need to deliver them in a Windows-only environment, just package up an appliance and run it in a virtual space on that Windows machine.&lt;/p&gt;

&lt;p&gt;I can barely scratch the surface here, but &lt;a href="http://www.vmware.com"&gt;VMWare&lt;/a&gt; turbocharged the software-appliance idea with their &lt;a href="http://www.vmware.com/products/player/"&gt;VMWare Player&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Xen"&gt;Xen is white-hot&lt;/a&gt; in pursuit of the same idea, and the force of it is so powerful &lt;a href="http://billyonopensource.blogspot.com/2006/04/microsoft-embraces-software-appliance.html"&gt;that even Microsoft has to conform to it.&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://billyonopensource.blogspot.com/"&gt;Billy on Open Source&lt;/a&gt; has some terrific writings on the software appliance idea.  There's a lot more to discuss here, so for now I'll leave my final prediction that &lt;em&gt;"2007 is the year of the software appliance."&lt;/em&gt;&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/Microsoft">Microsoft</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Pikaplanner">Pikaplanner</category>
      <category domain="http://weblog.pikasoft.com/past/tags/VMWare">VMWare</category>
      <category domain="http://weblog.pikasoft.com/past/tags/appliance">appliance</category>
      <category domain="http://weblog.pikasoft.com/past/tags/snow">snow</category>
      <category domain="http://weblog.pikasoft.com/past/tags/software">software</category>
    </item>
    <item>
      <title>Bonus Prediction:  REST ye Merry!</title>
      <link>http://weblog.pikasoft.com/past/2007/1/2/bonus_prediction_rest_ye_merry/</link>
      <pubDate>Tue, 02 Jan 2007 10:24:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2007/1/2/bonus_prediction_rest_ye_merry/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/rest.jpg" alt="Snow" title="REST"/&gt; &lt;/p&gt;

&lt;p&gt;Prediction: APIs rule, and REST will come to rule APIs in 2007.&lt;/p&gt;

&lt;p&gt;Google rules the Web 2.0 world.  They are the alpha and the omega, from Google Maps (which popularized Ajax and got the whole thing started back in 2005) to being the primary acquirer and exit strategy for many Web 2.0 companies.  Google is also the whole alphabet in between, and their publishing of APIs for their applications re-ignited the "mash-up" concept from Web 1.0, and changed the face of web apps we see today.&lt;/p&gt;

&lt;p&gt;Google is wise and omnipresent, but they aren't omniscient.  Back in 2002, when the current round of API design decisions were made, Google had the choice of creating an API in well-known media-darling SOAP, or the little known academic paper-protocol REST.  They chose SOAP.  Not that SOAP was such a bad choice, but with the benefit of hindsight &lt;a href="http://radar.oreilly.com/archives/2006/12/google_depreciates_SOAP_API.html"&gt;Google is now heading in another direction, and Yahoo has already reached the promised land&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;SOAP (originally &lt;a href="http://en.wikipedia.org/wiki/SOAP"&gt;Simple Object Access Protocol&lt;/a&gt;) was a neat idea&amp;mdash;to replace the bulk and complexity of integration schemes such as CORBA with a simple combination of XML and HTTP.  Great idea, but to provide fully-functional enterprise integration SOAP had to expand, eventually absorbing much of the complexity of the protocols it meant to replace. &lt;/p&gt;

&lt;p&gt;Enter REST. &lt;a href="http://en.wikipedia.org/wiki/REST"&gt;Representational State Transfer&lt;/a&gt; is the brainchild and &lt;a href="http://roy.gbiv.com/pubs/dissertation/rest_arch_style.htm"&gt;2000 PhD dissertation of Roy Fielding&lt;/a&gt;.  Fielding observed that one of the great advantages of the HTTP specification (of which he was also a contributor) was that the client-server, stateless, cacheable, and layered design made access and architecture for the specification straightforward.  REST extends these concepts to application-application communication.  Very broadly, REST maps the basic &lt;a href="http://en.wikipedia.org/wiki/CRUD_%28acronym%29"&gt;CRUD operations&lt;/a&gt; (create, retrieve, update and delete) to familiar HTTP operations (POST, GET, PUT, and DELETE).  As an additional conceptual benefit, these operations also map analogously to the database operations INSERT, SELECT, UPDATE, and DELETE.&lt;/p&gt;

&lt;p&gt;Boiled down, the idea is to have applications interact through conceptually simple HTTP access for exchange of resources&amp;mdash;remote resources, as opposed to remote procedure calls. API creation is then a breeze, because the access methods are already broadly familiar, and the receiving applications need only be ready to respond to requests based on the request information in the HTTP header - say for HTML (web pages), JavaScript (Ajax requests) or XML (application requests).  Ruby on Rails has good REST support now (through the &lt;a href="http://www.agilewebdevelopment.com/plugins/simplyrestful"&gt;SimplyRestful plugin&lt;/a&gt;) and will have REST as a part of the core going forward.&lt;/p&gt;

&lt;p&gt;In the Ruby/Rails world, URL's are beautiful and informational, and one of the downsides of REST are URLs that are more machine- than human-readable.  Still, as applications are increasingly designed with integration and mashup in mind, you can expect REST to rise in prominence in 2007.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/API">API</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Corba">Corba</category>
      <category domain="http://weblog.pikasoft.com/past/tags/REST">REST</category>
      <category domain="http://weblog.pikasoft.com/past/tags/RESTful">RESTful</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Rails">Rails</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Ruby">Ruby</category>
      <category domain="http://weblog.pikasoft.com/past/tags/SOAP">SOAP</category>
    </item>
    <item>
      <title>Predictions for 2007</title>
      <link>http://weblog.pikasoft.com/past/2006/12/31/predictions_for_2007/</link>
      <pubDate>Sun, 31 Dec 2006 12:17:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2006/12/31/predictions_for_2007/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;Since a new year beckons, and this is a blog, it follows that predictions for the new year must follow.  Hey, rules are rules.  And so, with no further adieu, here are my predictions for 2007:&lt;/p&gt;

&lt;p&gt;Easy Calls:&lt;/p&gt;

&lt;p&gt;1) Microsoft Vista comes, new machines get it, nobody on XP upgrades.  Microsoft will be content to turn over their installed base with new machines sold and old machines obsoleted.     Otherwise, upgrades will be slower than currently forecast.&lt;/p&gt;

&lt;p&gt;2) Apple delivers Leopard, new machines get it, but upgrades are slower than currently forecast.   Tiger is sufficiently good, and external packages (e.g VirtueDesktops) simulate a lot of the new functionality.  Apple has a big decision to make, between adding functionality for the IPod/digital home, and functionality for business and enterprise solutions.&lt;/p&gt;

&lt;p&gt;3) Linux will continue plodding progress in '07, and boom in '08.    Linux has a lot to recommend it - including good security, scalability, and cost.  Its openness makes it impervious to &lt;a href="http://www.thudfactor.com/wordpress/2006/12/26/the-vista-suicide-note/"&gt;horrible, enterprise-inappropriate additions (DRM)&lt;/a&gt;, and has a huge &lt;a href="http://www.catb.org/~esr/writings/world-domination/world-domination-201.html"&gt;leg up on 64-bit solutions&lt;/a&gt;.  If &lt;a href="http://www.ubuntu.com"&gt;Ubuntu&lt;/a&gt; can continue advancement of a plausible desktop system, Linux will start taking Mac users in '07 and MS users in '08.&lt;/p&gt;

&lt;p&gt;4) Dynamic languages will keep making inroads on "traditional" (.Net and J2EE) development.   Compared to compiled C++, Ruby is one &lt;em&gt;slow&lt;/em&gt; language in execution, but there are *so* many available processing cycles that development savings dominate.  It won't run Google or the would-be Googles, but it's fast enough for everybody else.   The second wave of RoR apps will appear.&lt;/p&gt;

&lt;p&gt;5) Ajax is here to stay, and full page refreshes will disappear in 2007.  Good packages (such as &lt;a href="http://www.prototype.com"&gt;Prototype&lt;/a&gt;), and the ease of integration in new environments (Ruby on Rails) make ajaxification easy for new applications.  Existing apps will ajaxify or be replaced by ajax'd apps.&lt;/p&gt;

&lt;p&gt;6) Google backlash begins.   Past a certain size, it gets really hard to not "be evil."  Google has passed that size, and &lt;a href="http://news.zdnet.co.uk/internet/0,1000000097,39285291,00.htm"&gt;the leading edge&lt;/a&gt; isn't willing to give them a pass anymore.  Look for one new search engine to break on top of the pack.&lt;/p&gt;

&lt;p&gt;Wild Swags:&lt;/p&gt;

&lt;p&gt;7) Oracle buys SAP.    Alexander the Great &lt;a href="http://www.pothos.org/alexander.asp?paraID=96"&gt;"wept, because he had no more worlds to conquer."&lt;/a&gt;  Larry Ellison does not weep, and SAP is all that is left.   The current permissive antitrust environment won't last forever, so Oracle goes Exxon-Mobil(e) in '07.&lt;/p&gt;

&lt;p&gt;8) Indian IT giants start buying second- and third-tier US software providers.   Outsourced development from the US to India is now commonplace; the next logical step is Indian vertical integration into the American market.   Wilder swag: Wipro buys Lotus assets from IBM.&lt;/p&gt;

&lt;p&gt;9) Google buys Ebay.  See 7) above.  &lt;a href="http://www.techcrunch.com/2006/08/11/froogle-dumped-for-hot-new-girlfriend/"&gt;"Froogle" has gone nowhere&lt;/a&gt;, &lt;a href="http://www.businessweek.com/the_thread/techbeat/archives/2006/12/ebays_china_cha.html"&gt;Ebay got spat out of China&lt;/a&gt;.   Google has innovative IT at scale, Ebay needs innovative IT at scale.  Match made in heaven, and these kinds of deals won't find a favorable approval environment forever.&lt;/p&gt;

&lt;p&gt;Final Swag:&lt;/p&gt;

&lt;p&gt;10) Innovators rule.  Vista is great looking, but is it a compelling upgrade if DRM restrictions give new users less control than they have now?  Apple is also wading into DRM waters that make sense for IPods but not for enterprise-anything.  Oracle has its hands full with Fusion, and if you like the JD Edwards, Peoplesoft or Siebel software you're running you might not want to Fuse in '07.   As Tony Curtis once said: "In confusion there is profit."  '07 looks like a great year for disruptive technologies and solutions.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/2007">2007</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Ajax">Ajax</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Apple">Apple</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Ebay">Ebay</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Google">Google</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Microsoft">Microsoft</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Oracle">Oracle</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Rails">Rails</category>
      <category domain="http://weblog.pikasoft.com/past/tags/Ruby">Ruby</category>
      <category domain="http://weblog.pikasoft.com/past/tags/predictions">predictions</category>
    </item>
    <item>
      <title>More pictures of buildings and snow</title>
      <link>http://weblog.pikasoft.com/past/2006/12/29/more_pictures_of_buildings_and/</link>
      <pubDate>Fri, 29 Dec 2006 05:19:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2006/12/29/more_pictures_of_buildings_and/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/Blizzard2.jpg" alt="Snow" title="Nanook's Driveway - 12/29/06"/&gt; &lt;/p&gt;

&lt;p&gt;I spoke too soon about the "snows of December" being over.   Eight days after the first blast, we have another 24", and an unshoveled depth of about four feet out back.  &lt;/p&gt;

&lt;p&gt;Again, good luck and best wishes to all holiday travelers, particularly the ones stuck in DIA or other airports around the country.  Get home safe, and Happy New Year!&lt;/p&gt;

&lt;p&gt;I'll be shoveling off now...&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/blizzard">blizzard</category>
      <category domain="http://weblog.pikasoft.com/past/tags/pain">pain</category>
      <category domain="http://weblog.pikasoft.com/past/tags/shoveling">shoveling</category>
      <category domain="http://weblog.pikasoft.com/past/tags/snow">snow</category>
    </item>
    <item>
      <title>Three Feet Plus</title>
      <link>http://weblog.pikasoft.com/past/2006/12/21/three_feet_plus/</link>
      <pubDate>Thu, 21 Dec 2006 10:52:00 GMT</pubDate>
      <guid>http://weblog.pikasoft.com/past/2006/12/21/three_feet_plus/</guid>
      <author>john.repko@pikasoft.com (John Repko)</author>
      <description>&lt;p&gt;&lt;img src="/images/blog_images/Blizzard_Day_2.jpg" alt="Snow" title="Lookin out my Back Door - 12/21/06"/&gt; &lt;/p&gt;

&lt;p&gt;Well, the snows of December finally seem to be over.  Five driveway shovelings and 39" later, the weather of our local world is finally at rest.&lt;/p&gt;

&lt;p&gt;Good luck and best wishes to all holiday travelers, particularly the ones stuck in DIA or other airports around the country.&lt;/p&gt;

&lt;p&gt;Get home safe, and Happy Holidays.&lt;/p&gt;</description>
      <category domain="http://weblog.pikasoft.com/past/tags/snow">snow</category>
    </item>
  </channel>
</rss>
