<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17638265-3']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();


Check out :  
myJibe.com</description><title>{ abrandoned.com }</title><generator>Tumblr (3.0; @abrandoned)</generator><link>http://abrandoned.com/</link><item><title>After leaving Verge on Wednesday; love rain and cars driving...</title><description>&lt;img src="http://26.media.tumblr.com/tumblr_lm507tQ1yT1qcmoyvo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;After leaving Verge on Wednesday; love rain and cars driving through standing water.&lt;/p&gt;</description><link>http://abrandoned.com/post/6089936666</link><guid>http://abrandoned.com/post/6089936666</guid><pubDate>Wed, 01 Jun 2011 20:33:17 -0400</pubDate></item><item><title>JRuby 1.6 + Rails 3 + Trinidad =&gt; Awesometown</title><description>&lt;p&gt;This week I started migrating an internal application for MyJibe to JRuby 1.6 and was pleasantly surprised with the results.  After seeing that others didn’t have the same positive experience as I did, I thought I would go into a little more detail about how we are using JRuby/Rails and the results we have seen.&lt;/p&gt;

&lt;hr&gt;&lt;h2&gt;1. Ruby doesn’t have great SOAP support&lt;/h2&gt;

&lt;p&gt;You can use SOAP4R and WSSE (for basic ws-security), but they are both light on the SOAP/WS stack as a whole.&lt;/p&gt;

&lt;h2&gt;2. Java has amazing support for SOAP&lt;/h2&gt;

&lt;p&gt;My life before MyJibe was almost all Web Services.  SOAP everywhere and lots of Java, C++, C# and Visual Basic (yep, VB).  The reality of the daily life of a technologist in large financial institutions is tons of Java/.Net/SOAP and software built with those tools (Oracle, Spring, Struts …..)  This is both good and bad, but this is not a post on the virtues of Java vs Ruby vs .Net vs Python vs C++ (my native language)&lt;/p&gt;

&lt;p&gt;Long story short, I know how to utilize Java’s support for SOAP and have found myself needing the same support for SOAP in Ruby and wanted to find a solution to link the two, so I chose JRuby (as it would be impossible to rewrite the volume of “Enterprisey” API’s for the financial industry on another “platform” …. for this context [impossible = improbable = unprofitable])&lt;/p&gt;

&lt;hr&gt;&lt;h1&gt;And the JRuby journey begins….&lt;/h1&gt;

&lt;p&gt;After recognizing that I could use jars with JRuby I decided to create a translation layer for any endpoint that we needed to integrate with that didn’t have native support for REST/JSON.  Pretty straight forward.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfeld1QkG71qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;A request comes in and is routed via Rails, the controller parses out the JSON request, the model performs any validation and uses Java’s extensive protocol support to call out to services that don’t speak a “native” JSON.  (Services have different levels of configuration/structure which is typically setup during startup through an initializer)&lt;/p&gt;

&lt;h2&gt;Dispatching and fulfilling requests&lt;/h2&gt;

&lt;p&gt;The primary focus of my testing was request parsing/dispatching and connection overhead. Since the primary function of the JRuby/Rails application is to route requests and do very little in the execution chain my tests were specialized.  When multiple endpoints are being accessed by multiple Rails servers simultaneously the dispatching and parsing routines are the primary controllable bottleneck because they are executed for every request.  (Validation is important, but some services never use validation as they are either unidirectional requests or fail proof requests that queue background work for delayed execution)&lt;/p&gt;

&lt;p&gt;(&lt;strong&gt;Note&lt;/strong&gt;: After reading &lt;a href="http://pivotallabs.com/users/jdean/blog/articles/1419-building-a-fast-lightweight-rest-service-with-rails-3-"&gt;Jeff Dean’s post&lt;/a&gt; on lightweight Rails services we removed some of the Rails overhead for the service translator, which resulted in ~10% increase in request-response performance.)&lt;/p&gt;

&lt;hr&gt;&lt;h1&gt;And Finally the Benchmarks …. and upgrades&lt;/h1&gt;

&lt;p&gt;(disclaimer **  we had no issues or perceived slowness with JRuby 1.5.6 before testing the upgrade and were happily surprised by the performance boost from JRuby 1.6 and Trinidad 1.0.5)&lt;/p&gt;

&lt;h2&gt;Benchmark&lt;/h2&gt;

&lt;p&gt;Since I was largely testing the “Time to Service-call” or “dispatching time” it was not necessary to call a web service for the test as the primary controllable overhead would be in dispatching/parsing requests.  Although I will continue to investigate parsing times and service responses.&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Each test was run with the client being JRuby 1.5.6 and all services were running Rails 3.0.3&lt;/li&gt;
&lt;li&gt;Each test server was “warmed” before running the benchmark with 2 requests (1 to Tester.time and 1 to Tester.test)&lt;/li&gt;
&lt;li&gt;The timing was meant to test the request-response cycle through the Rails dispatcher and parsing of arguments.  The test cases are very simple class methods called with JSON.&lt;/li&gt;
&lt;li&gt;The JRuby tests were run with the “—server” command line switch.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;&lt;em&gt;Tester.test&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfelxd5CwQ1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Tester.time&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfelzaou6O1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;Using the ruby “Benchmark” library I ran this snippet of code against each server listening on a local port. (Tester is a Ruby Object that communicates to the the JSON service endpoint)&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfeme3AouV1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;h1&gt;Results (JRuby 2 runs)&lt;/h1&gt;

&lt;p&gt;JRuby 1.5.6 with Trinidad 1.0.3&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemj1VOZ81qcvm2i.png" alt=""/&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemo21I5n1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;JRuby 1.6.0.RC1 with Trinidad 1.0.5&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemkyjaNh1qcvm2i.png" alt=""/&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemqhLxfa1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;JRuby 1.6.0.RC1 with Trinidad 1.0.3&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lferhmJ4Fc1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;After seeing the changes from JRuby and Trinidad versions I decided to also check the Ruby MRI interpreters on my machine (1.8.7-p302 and 1.9.2-p136)&lt;/p&gt;

&lt;p&gt;1.8.7-p302&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemvnsYN11qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;p&gt;1.9.2-p136&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lfemwbgCNX1qcvm2i.png" alt=""/&gt;&lt;/p&gt;

&lt;h1&gt;Thoughts&lt;/h1&gt;

&lt;p&gt;The difference between JRuby 1.5.6 and JRuby 1.6.0 is relatively small.  4-9 seconds over 3000 requests is not “significant” by my measure however, it does account for the 20-25% increase in performance across requests running through the JRuby 1.6.0 install in our testing environment.  It has also set a new record for fastest full request cycle of our most complex remote calls (multi-key, session based SOAP calls), beating our former record by ~25%.&lt;/p&gt;

&lt;p&gt;I was very surprised with the difference in speed between JRuby and Ruby 1.9.2.  I assumed that they would perform in the same ballpark when it came to routing requests and basic responses.  I still need to investigate further on why such an extreme difference, but it does show that if you are considering running a lightweight REST or Remote Invocation service you should entertain JRuby/Trinidad/Rails as the platform and framework of choice.&lt;/p&gt;</description><link>http://abrandoned.com/post/2867736684</link><guid>http://abrandoned.com/post/2867736684</guid><pubDate>Fri, 21 Jan 2011 23:15:00 -0500</pubDate></item><item><title>Starting a company ...</title><description>&lt;h2&gt;Starting a company is difficult&lt;/h2&gt;

&lt;p&gt;If you read my first blog post you know that recently I have been working on launching a new company &lt;a href="http://myjibe.com"&gt;&lt;a href="http://myjibe.com"&gt;http://myjibe.com&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;While this is probably one of the most rewarding periods in recent memory I have to say that actually bringing something from idea to production is more difficult than it seemed (3 months ago).  I used to have the luxury of “the machine” around me.  While working for large companies the process of product launch was largely formulaic:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Will we get paid back within 3 years?&lt;/strong&gt; 
  IF yes, we will put it in the product pipeline. IF no, we won’t do it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;How many of our 1000 customers will buy it?&lt;/strong&gt;
 IF more than 200, put it in the product pipeline. IF less, refer to ROI calculation.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;The pieces of the puzzle that needed solving were algebraic.  Write down the formula and solve.  Very straight forward, very “simple”.&lt;/p&gt;

&lt;h1&gt;Starting a company is completely different&lt;/h1&gt;

&lt;p&gt;You still need to do the above:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Identify a market&lt;/li&gt;
&lt;li&gt;Build the ROI&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;But starting a business means you also need to &lt;strong&gt;EXECUTE&lt;/strong&gt; the outcome of the above analysis, not identify who should do it&lt;/p&gt;

&lt;p&gt;The number of factors that can go into a market identification model are mind numbing in themselves.  The ROI of new company needs to be balanced against the ramp up time for the product and adoption rate of a new brand, new idea, new processes, and new people.&lt;/p&gt;

&lt;p&gt;Before starting MyJibe I was weighing the option of pursuing my MBA.  I believed that pursuing an MBA would help me find more formulas, more tricks for a balance sheet, or more people to network with.  While I readily admit that I am in need of an expanded toolset for building and managing businesses I think I made the right decision for me, start a business.&lt;/p&gt;

&lt;h1&gt;figure it out&lt;/h1&gt;

&lt;p&gt;The last 3 months have been an education.  That is what has made it so difficult and so rewarding.  I have a predisposition for only soaking up new knowledge through experience.  I really never understood physics and calculus until I programmed my first 3D world, I never really understood music until I played on stage and I know I didn’t really comprehend business when I was playing “find the right formula”.  Business is in the everyday monotony of life; what can I do or provide that creates value for you?  what concerns you?  what concerns me?&lt;/p&gt;

&lt;p&gt;Will I go get my MBA one day? maybe&lt;/p&gt;

&lt;p&gt;Will I regret not getting it today? &lt;strong&gt;definitely not&lt;/strong&gt;&lt;/p&gt;</description><link>http://abrandoned.com/post/1159433321</link><guid>http://abrandoned.com/post/1159433321</guid><pubDate>Mon, 20 Sep 2010 23:01:20 -0400</pubDate></item><item><title>The first post

What to write on the first post of a new blog:

A scathing indictment of the current...</title><description>&lt;h1&gt;&lt;em&gt;The first post&lt;/em&gt;&lt;/h1&gt;

&lt;hr&gt;&lt;h2&gt;What to write on the first post of a new blog:&lt;/h2&gt;

&lt;ol&gt;&lt;li&gt;A scathing indictment of the current political environment&lt;/li&gt;
&lt;li&gt;Detailed descriptions of silly things my cat did this weekend (I don’t have a cat)&lt;/li&gt;
&lt;li&gt;Lament on the effects [and causes] of the current economic crisis (with potential trackback to 1)&lt;/li&gt;
&lt;li&gt;Discuss my current relationship status and solicit advice&lt;/li&gt;
&lt;li&gt;Show a picture and go “freestyle”&lt;/li&gt;
&lt;/ol&gt;&lt;h1&gt;[ 5 please ]&lt;/h1&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_l691fueSlx1qcvm2i.jpg" alt=""/&gt;&lt;/p&gt;

&lt;h1&gt;The “trap”, the “snare”    (the “reality?”):&lt;/h1&gt;

&lt;p&gt;After recently quitting my job to become a full time “entrepreneur” I was sent a picture that was taken by former colleagues.  It came with a sub-title that read ” …. devised a plan to lure you back”.&lt;/p&gt;

&lt;p&gt;I know I was not supposed to get all philosophical about the meaning of the picture or conjure up any analogies, but I couldn’t help it.  I started thinking about the simplicity of the meaning: we can lure someone in with something they need and/or want.&lt;/p&gt;

&lt;p&gt;I started thinking “what do I personally put in that box to ‘lure’ service from companies?”  [Reframed] “What am I providing that gives incentive to businesses to provide their service to me?”  Time for transparency; this scared me.  I recently quit a great job in order to start a new company and had yet to really think through this fundamental exchange with customers: consumers provide X and companies find it valuable enough to return in kind with Y (in goods or services).&lt;/p&gt;

&lt;h1&gt;What is X?&lt;/h1&gt;

&lt;h2&gt;In many cases “X” is money&lt;/h2&gt;

&lt;p&gt;Common case.  A customer puts money out and businesses provide services in exchange for it.&lt;/p&gt;

&lt;h2&gt;In some cases “X” is time&lt;/h2&gt;

&lt;p&gt;[ Ex: Google, Pandora.com ]&lt;/p&gt;

&lt;p&gt;A customer looks at advertisements, or provides opinions, or simply exists in an area and thus the company can sell that advertising space, opinion or presence to other companies for ……. money.  In return the customer gets the advantage of the service .. (without direct cost)&lt;/p&gt;

&lt;h2&gt;In some cases “X” is data (even MY data)&lt;/h2&gt;

&lt;p&gt;[ Ex: PriceGrabber.com ]&lt;/p&gt;

&lt;p&gt;A customer uses a program and/or service that is offered as “free”, but the company has to “keep the lights on”.  Data is aggregated, at times anonymized and sold to other users/services for …… money.  In some businesses this is considered a viable model of sustainability.&lt;/p&gt;

&lt;hr&gt;&lt;p&gt;This may be a confusing analogy, but I believe that we (as consumers) have a significant amount of power in how we “vote” with our resources.  We choose to pay money or provide time or provide opinion or provide audience or provide data; and in turn we utilize the services of companies and organizations.  The key here is that we get to choose how we “pay” for our goods and services.  We are empowered and we have choices.&lt;/p&gt;

&lt;p&gt;So, here I stand on the precipice of launching a new company and a simple picture (sent as a joke) has me questioning the fundamental underpinnings of the web application software world.  What works?  What sustains?  What am I willing to put under that box to attract goods and services?  I think we should all ask that question more often in our increasingly connected world.&lt;/p&gt;

&lt;hr&gt;</description><link>http://abrandoned.com/post/869152335</link><guid>http://abrandoned.com/post/869152335</guid><pubDate>Wed, 28 Jul 2010 00:21:00 -0400</pubDate></item></channel></rss>

