Saturday, August 3, 2013

Why Government software projects go wrong - Part 2

Last time I mentioned the problems that are caused by governments in government projects.  What about the other side - the ISVs.  It turns out that they aren't entirely blameless.

Bean-counter Effect

As I said previously, government work is very risky for small ISVs so much of the space is dominated by large ISVs.  Large ISVs exist in a space where they are controlled by the bean counters.  I really want to emphasize that certain changes in corporate culture are necessary as the company grows but this one is very detrimental.

The bean-counter effect is treating employees like interchangeable cogs in terms of service delivery.  Two software engineers with 5 years of experience are completely equal as far as they care, even though that is provably false.  To them, a team of 2 top-notch performers earning $100K/year is worse than a team of 3 middling performers earning $60K/year.  Switching to the latter means saving $20K/year in payroll and an increased their ability to bill out clients.  After all, the clients still pay the same rate for the best and the worst.  In the end, the ISV has a perverse incentive to employ low-skill, but highly profitable, developers which end up dragging out the project.  Needless to say this is very bad for the client.

Sales over Quality

Many ISVs will offer to "customize" their current solution to meet the client's needs.  Here's the dirty little secret of programming.  All software platforms represent a trade-off, by optimizing to do things well, like geo-spatial analysis, they will do other things much worse, like community interaction.  The only way to counter-act this is to be equally good at doing everything, however, this ends up with a platform which is equally bad at everything.

In the best case, the existing solution is close to what the client needs.  In this case, the client is well served by re-using an existing solution.  However, in many cases Sales will try to make a purse out of a pig's ear (after all, it's their job).  In cases such as turning a geospatial platform into a social networking system, it ends up being worse than starting over from scratch.  However, the perverse incentive is that many clients won't, or can't, pay for a proper custom solutions.  So, "customizing" an existing system, no matter how much code has to be written or discarded to make it fit, is better than starting fresh with a targeted solution.

Fear of Change

"We can't develop a new version because it would offend our current clients."

Many agencies are so paralyzed with fear of change that they refuse to analyze new technology.  Part of being an ISV is reviewing all the new technologies that come out and determine if they meet the needs of their clients.  After all, clients generally won't have the needed expertise in-house, it's why they hire ISVs.

What this means is that most of these organizations will adopt very stale technologies and use them as the basis for new projects.  This can be caused either by the ISV deciding its investment in the technology is too large to change or by the fear that clients won't be interested in a new system.  What this means, is that clients end up with systems which are expensive to support and nearing a very sharp end of life.

In addition to the old technologies, these large ISVs will maintain old software development techniques and practices.  Waterfall, big-design upfront and The Methodology is often used to attempt to produce a quality result.  By staying behind the curve on modern software development practices these ISVs think they're being consistent but all they're doing is harming the client.


In the end, I don't think anyone at the ISV is deliberately trying to do a bad job.  They are doing their best, but I believe their incentives don't line up to produce amazing software.  Rather, they're incentivized to produce software which has the right superficial features, of which sadly, "Great" is not on the list.

Monday, June 3, 2013

Why Netflix autoplay is broken by design


Netflix has a cool feature where after you are finished watching one episode of a TV show, it will forward you on to the next one.  It's a neat idea but it's implemented so badly as to be border-line user hostile.

It starts before the previous show ends

 

When the show your watching gets to the credits, it is crunched into a mini-box where in the credits play out in miniature.  This is the same thing that happens with broadcast television except that Netflix isn't showing ads for anything except for other shows you might want to watch.

Hey, I was watching that.

Some people view this as disrespectful to the creators of the show, which is an interesting argument but not one we're going to bring up here.  A much better argument is that many shows don't just show credits at the end, they add in an extra scenes or follow-ups.  This is most famous from Arrested Development where the producers added a false 'Next Time on Arrested Development'.  So the system is actually removing value from me.

It fails at actually auto-playing

 

Netflix will actually start playing the next episode of the show you were watching.  Which is nice, if that's what you want.  The trouble is that's implemented so badly that no one would possibly want it to work that way.  What it does is play for a few minutes into the show and then stops playback to ask if you want to actually continue watching the show.


Seriously, I was watching that.


So now, I have stop what I'm doing and go instruct Netflix to actually auto-play.  This is UX equivalent of stepping on a Lego.  It's just bad and needs to go away.

You can't turn it off 

 

The final sin is that I can't configure it one way or the other.  Maybe you like it this way and that's fine, but what I want is the ability to configure it operate differently.  I understand that more config options will increase testing, but there has to be a reasonable middle ground.

A simple option to turn off 'auto-play' would have hugely improved usability.  You can leave this feature on by default, but I know would turn it off given the choice.

Monday, February 4, 2013

Developing with GeoServer

If you're developing an application which uses GeoServer to provide mapping data then you might end up in a situation where you need to run GeoServer on the same Tomcat instance as your webapp.  Usually this is to do request proxying to the bigger GeoServer host.

In order to set Tomcat up to properly deploy GeoServer you need to make a few modifications if you're running it in Eclipse.

In the Overview page of Tomcat server set the Server Locations to 'Use Tomcat installation'.

Next, extract the geoserver.war file to /tomcat/webapps/geoserver and configure the Tomcat server.xml with the following statement.

            <Host appBase="webapps" autoDeploy="true" name="localhost"
                unpackWARs="true">

  
                <Valve className="org.apache.catalina.valves.AccessLogValve"
                    directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" prefix="localhost_access_log."
                    resolveHosts="false" suffix=".txt" />



                <Context docBase="E:\tomcat\webapps\manager" path="/manager"
                    privileged="true">
                </Context>

                <Context docBase="E:\tomcat\webapps\geoserver" path="/geoserver">
                </Context>


            </Host>

Finally, edit Tomcat start up arguments and add "-XX:MaxPermSize=128m" to the VM arguments.