Thursday, November 15, 2012

We learn from our mistakes

But can we learn from others mistakes?  Absolutely.  Let me give you some examples.

Adobe Acrobat takes forever to load every single piece of functionality known to man, and then let's you view the one document that you wanted to see.  It takes longer for Acrobat to load than it takes me to get the information from the file I was looking for.  And apparently it is so buggy that you get an update every single day.  Now, this is all historical, and may have changed because it was these issues that led me to remove all things Adobe from my system.  Yes, I have been Adobe free since '03!

Lessons to be learned?  First, the initial response time sets the tone for your interactions with users.  Look at you applications.  Opening a document shouldn't take minutes.  Do you have a massive PostQueryOpen that initializes every possible variable?  Try initializing them just before they are used.  Same thing for your action buttons - do they do a lot of initialization before showing a dialog box?  Users don't notice or care about small delays after they answer the dialog, because the system is now doing something they asked it to do.  Just let them tell it first.

Second lesson, and I see this in Notes shops everywhere, just because you can make a minor change very rapidly doesn't mean you should.  Users don't really like constant changes.  They would much rather have a set expectation when changes are going to be made available.  Every Monday is probably a bit excessive, but you need to balance the expectations for when I can get this fixed versus the rapid application development that Notes is famous for.

Here is another set of mistakes that we all should learn from.  I have Verizon for my cell phone, internet, cable, and home phone.  Every single interaction I have with their applications is PAINFUL!  They have an app for my phone that let's me control my DVR's.  When I start this app, like Adobe, the first thing it does is load up the TV schedule.  Why on earth would I want to see the TV schedule on my phone?  I can't watch TV from there, so why would that be the first thing that they do?  What I do is click on the DVR tab.  Every time.  Is that so hard to remember?  Use a cookie, or a per user profile document.  I talked about this before - it is real easy to track what users do to identify commonly used features, and features that are not even used.  The gamification aspect comes from rewarding them for reaching milestones, like closing their 100th To Do.

Their web experience is just as painful.  After I sign into their site, they pop up a message box trying to get me to buy FIOS.  I already HAVE FIOS and you should know this because I signed in!  Don't ask your users for information you should already have.  The misery continues when I go to view my account.  The first thing I get is spinning wheel, spinning wheel, spinning wheel and I finally get entertainment news!  I pity the fool who gets his news from Verizon's web page!  They may have that set as their home page, but I only go to that site when I am forced to.

The lesson here is you need to know what your users are doing.  This is a combination of tracking their activities and plain old walking around and watch them use you application.  When you see them struggle to perform a task or even find a function, you know you have some work to do to improve that.  I watched a user do something to 10 documents, and it took forever.  I knew that the operation was only changing one field, so it shouldn't have taken that long.  When I looked at the code, I discovered several thing.  First, it was intentionally designed to only allow a maximum of 10 documents at a time.  And guess what?  This function was rarely used because it was so painful to use.  There were no consequences to not performing the function, and it was hard to use.  The other thing I found is that the action had a ComputeWithForm on a very complex form.  Come on people - only one field was changed.  We need to help our users be productive, and stop stifling them with arbitrary processes.

To finish up, I generally don't generalize.  And I know Verizon is a large company, but they seem to have a systemic lack of knowledge about what their users are doing.  I do know that we were talking to one division within Verizon to get them to implement source code control.  The developers response was it takes too many clicks!  And that would get in the way of their rapid application deployments.  Just sayin, schedule your updates.

Thursday, October 25, 2012

Big Iron and Big Pipes are here!

So let's consolidate some servers!  With the powerful servers and higher bandwidths available today, it makes sense to look at combining several servers into more central locations.  This can reduce costs for maintenance of older boxes, facility costs, and improve overall performance as less time is spent replicating databases between multiple servers.

I recently worked with a client on a consolidation project and want to share some observations.  Their strategy was to build the new servers and, before they moved users to the servers, wanted to test the performance of the central servers.  We used the Server.Load capability that comes with Domino.  This has been around for awhile (I worked with it's predecessor, NotesBench, 15 years ago).  It is an engine that has several scripts that can be used to simulate thousands of users.  It has two basic modes - initialize the environment and running the workload.  The initialization phase is key.  After all, simulating several hundred users is pretty useless.  The challenge of several thousand users is creating that many mail files and populating them with data.

Here is the critical take-away - when running the workload tests, there is a built in delay between each user session which makes sense.  Aside from me, I don't know many users that go flat out all the time.  And this delay is a random number.  The problem is during the initialization phase, you are not collecting statistics, so you don't need to 'simulate' real users, just create the mail files.  But this delay can be up to 15 minutes.  So, doing the math, creating several thousand user mail files with up to 15 minutes between each user can take days (and yes, do use multiple workstations to attack the server).  So, please, help yourself and reduce this delay.  What you need to do is take the built-in initialization script, copy to the clipboard, paste into Notepad, CHANGE THE DELAY, and save the custom script.  Here are the first few lines


* N85 Mail Initialization Workload
* Script to initialize databases for NotesBench N85Mail
* Pause a random interval (0-15 min) so multiple processes are staggered well.
pause 0-900000

Remove at least three zeros from that pause line.  You will be so much happier with the results.

A couple of other comments about server consolidation projects.  A good strategy is to bring up a brand new server.  This means that users will have to re-point their mail files to the new server.  Consider renting a tool like Marvel Client from Panagenda to make this change easier.

Secondly, why 'consolidate' a database that is not being used by a person?  The problem with the activity number in the Catalog is that it considers any activity as using the database.  This activity could be mail being deposited in a database or a scheduled agent running against the database.  Neither of these 'activities' represent a person.  So, while you are ordering the new hardware, consider an approach offered by someone like Inner Ring Solutions.  They have a tool which identify's who is using a database; meaning server, agent, or user; and how often.  So, a database that is not used by users is a candidate to be retired, not consolidated.  Likewise, a database (not mail file) used by 10 or less users could probably be replaced with some other solution, or be advertised to users as an underutilized benefit.  My experience from my days at Teamstudio is that up to 75% of databases in a long standing Notes environment can be deleted because they are not being used.  A large part of this inactivity can be easily identified by looking at you Catalog.  I have a Catalog tool that will identify such things as databases (not templates) with no documents.  Databases with 'test' in the title or file name.  Databases with a year in the title or file name (think 1998 receipts).

If you want more information on your server consolidation project, contact me.  I've been there and done that before, so I can help reduce the pain of your project.

Tuesday, October 9, 2012

Back in the saddle!

I am so happy to be back working with customers on Lotus Notes development projects!  My 5 years at Teamstudio was a terrific experience (and I would have paid them to do what I did).  But I mostly worked with other developers, and they were always afraid I was trying to sell them something.  But honestly, having worked with Notes for as long as I have, I know the short-comings and why you need tools like Teamstudio, Ytria, Panagenda, etc.  And the prior 7 years I worked for another vendor that nobody heard of which is why I stopped working there.  We sold a very targeted product and were only talking to customers to get them to buy something.

But now, I am back to doing projects that people actually want.  And people are very creative!   And having   had to deal with the state of the economy the last several years, everybody is trying to do more with less.  Everybody has that one little tweak that will solve a whole bunch of headaches.  And those are the kind of challenges I relish.  So, I am back in business.  Contact me if you want another opinion!

Thursday, August 2, 2012

It's official!

That small window of opportunity to get my services without any corporate overhead are over.  This week I started working for Greyduck Technology.  Oh, you can still get my services for that project needing extra resources, or even a second opinion/review of your applications and development environment and practices.  It is just that now a portion of my time goes to Greyduck.

I have some great projects already in the works, and am looking forward to working with a company that now has 100 years of Lotus Notes experience on board.

So, stay tuned, and say hello if you see me at your user group.

Tuesday, July 10, 2012

It takes more programming skill to...

fix someone else's application than to write one from scratch.  At the same time, looking at another developers application will expand your own skill set.  Here is what I mean.  When you stick to your own applications, you tend to stick to what you know.  Your first loop may have been using a counter and GetNthDocument.  Who knew about getfirst - getnext?  And if you looked at some of my later code, the initialize routine only had one line -

Call Main.

(while it might look efficient, it was mostly because only a new subroutine would get the code block that had all my dims in it.)

Looking at other applications will not just show you bad ways of doing things, but other ways of doing things.  When you find an application where everything is defined globally, you begin to appreciate why this is a bad idea.  Trying to understand why the previous developer did things the way they did requires a deeper understanding of coding practices than just writing something from scratch.

So, while Chief Architect may be an alluring title, don't be afraid to take on a less glamorous project involving 'continuing engineering' (my first job title out of college by the way).

And for a limited time, I am available to review your applications without any corporate overhead.  So, drop me a note if you want to take me up on this.

Tuesday, June 19, 2012

Finding unused views

I recently talked about identifying the views used by users. The bigger challenge is to find those views used programmatically. And, knowing what views are used by users doesn't really help get rid of views because you need a list of all the views in a database. This turns out to be very easy to get - all you need to do is use the NoteCollection class. Here is the relevant code to create a document for every view in a database.


Set nnc = db.CreateNoteCollection( False ) nnc.Selectviews = True Call nnc.BuildCollection If nnc.count > 0 Then noteID = nnc.GetFirstNoteId For x = 1 To nnc.Count Set doc = db.Getdocumentbyid( Noteid ) ' create doc for each element Set newDoc = thisDB.Createdocument() newDoc.Form = "Views" If doc.Hasitem("$Title" ) Then set typestring = doc.Getfirstitem("$Title" ) If InStr( typestring.text, "|" ) Then newDoc.Viewname = Left( typestring.text, InStr( typestring.text, "|" )-1 ) newDoc.Alias = Right( typestring.text, Len( typestring.text) - InStr( typestring.text, "|" ) ) Else newDoc.ViewName = typeString.Text End If End if newDoc.elementNoteID = noteID Call newdoc.Save(True, True ) noteID = nnc.Getnextnoteid( Noteid ) Next End if





This LotusScript was converted to HTML using the ls2html routine,
provided by Julian Robichaux at nsftools.com.

Once you have the list of views, you can now combine this with the list of views used or look in related databases to see who calls the view.  This last part is also very trivial if you use a tool like Teamstudio's Configurator to search all design elements for the view name and aliases.

Let me know if you are interested in this bit as well.

Wednesday, June 6, 2012

Gamification

Is simply a way to provide positive reinforcement to your users when they use your application the way you want them to.  Do you want them to click the Help button before calling you?  Do you want them to view the Open Actions view more often?  That's where gamification comes in.  The easiest way is to create a script library to handle your counting.  I also use per-user profile documents to track by user.  A simple subroutine would be like this


Sub counter( thing As String ) Dim s As New NotesSession Dim db As NotesDatabase Dim doc As NotesDocument Set db = s.CurrentDatabase Set doc = db.GetProfileDocument( "Counter", s.Username ) If Not( doc.HasItem( thing ) ) Then Call doc.Replaceitemvalue( thing, 1 ) Else Call doc.Replaceitemvalue( thing, doc.Getitemvalue( thing )( 0 ) + 1 ) End If Call doc.Save( True, True ) If ( CDbl( doc.Getitemvalue( thing )) Mod 100 ) = 0 Then MessageBox "Thanks for using " + thing + " for " + doc.GetItemValue( thing ) + " times", 48, "Congratulations" End If End Sub



This LotusScript was converted to HTML using the ls2html routine,
provided by Julian Robichaux at nsftools.com.

Then, in the Click event or PostOpen event for the view (or form or whatever), simply use the script library and add a call to this routine, passing the name of the function (thing) that you want to track.  You can get real creative with this, extending the number of times before a second pop up or whatever.  You can also add in time periods - say for the last month.  It is very low overhead (compared to all the other extra code you might have inherited) and the profile documents are very efficient.

In a related manner, you can use this technique to find out what views users are using.  Simply pass in a view name and use a global profile document for all users.  This is a very powerful way to identify views that users aren't using anymore as candidates for deletion.  This works for user views.  Next post I will describe a technique to use for all those hidden views.

Sadly, this code needs to be added to every view, but I think the results are well worth the time.  I did this for an app with over 200 user views and was well on the way to removing a lot of them.  Maybe someone else has a technique for injecting this code in every view using DXML?



Tuesday, May 29, 2012

You're paying how much for that server?

Like your cable bill, the internal cost of your servers tends to get bloated over time.  When was the last time you checked your bill?  I was working with one customer whose charges for servers was over $600 K.  Upon looking at the bill, they were paying for servers that were not Domino servers, and paying for servers that didn't exist anymore.

That is a start, but what is the next step?  A good way to consolidate servers is too look at the databases that are being used.  And the key thing is to look at databases not being used by people.  The unfortunate part of the activity reported by the Catalog is it lumps all activity together.  So, you can have a mail file that shows 'activity', but it is simply the router dumping spam in that mail file.  Likewise, you can have an agent running in a database that users don't access.  Thus, activity, but no users.  The good news is that you can use the Activity Logging feature of Domino to generate useful information.  The information provided by Domino is not real useful by itself, but I have a tool that can consolidate the information and give you the information you need to identify databases not being used by people.  Let me know if you want more information.

With this list in hand, you can start to identify servers that can be eliminated by consolidating the databases on fewer servers.  And when you start to consolidate servers, you should think about a tool like Panagenda's Marvel Client that can update all your users desktops to point to the changed server for the databases.


Thursday, May 17, 2012

Coding tip for those copy and pasted fields

You know how the first paste gets you the same field name with an underscore and number added to it?  I have seen some really ugly code when someone wants to programmatically iterate over all the fields.  Things like checking a counter, or one time processing for the first field and then a loop for the rest of the fields.  All of this can be greatly simplified if you just go back to the first field and add an underscore and zero to the name.

So

Product
Product_1
Product_2

becomes

Product_0
Product_1
Product_2

etc.  Now you just loop through all fields starting with zero.  And if you come across this in an existing application, use a tool like scanEZ from Ytria to change all the existing douments.  It is well worth the time for this simple fix.


Friday, May 11, 2012

Oh the things I've seen

I was doing a web training session for a customer recently.  Since I know the user interface for the tool, I let the customer do the driving because it helps them become familiar with the interface, and the other attendees try to find the correct button before the person doing the work.  All in all this has worked real well for me to keep web attendees involved in the training.  So, the first step is to open one of their databases in designer and there it was.









and so on, perhaps twenty 'different' forms altogether.  This is a form of version management and way too common in Notes shops.  When you see this in forms, you know it happens in views where it is a really bad idea.  With forms, they don't take much space, but every view has an index that must be maintained.  It also means you might have things on Create menus or Action menus that you didn't anticipate.

So what do I mean by version management?  It is a way to track the changes in your design elements.  And it is a very good idea to track changes in your designs for many reasons.  Version management is one component of Source Code Control.  Ah, yes.  So that is why you need source code control.  People talk about it,  people tell you how to set up Git or Mercurial, but they don't tell you why you need source code control.

One of the other things you typically get with source code control is a tool to tell you what has changed.  Without printing a Design Synopsis for each of the forms.

So look for these features in your source code control system - it will really improve you development environment.

But let's go further.  The difference between these forms was several labels were changed.   This is another classic example of design meets data.  The data has now become part of the form.  This is bad because whenever the data changes, a developer is required to make changes to the database.  The whole database should be changed so that a new document was created, and the changed information entered on the document.  Use picklist or comboboxes to control the selections if you need to, but make it document level updates.  Now you are simply managing documents, not design changes.

I hope this was useful.

Welcome to my new blog

You may have seen some of my other posts under the Teamstudio blog.  Now that I don't work there, and have some time on my hands, there is still much to be added to the conversation.  And since I don't work for anyone, I don't need any disclaimers because the opinions expressed in this blog are my own.

So, what can you expect?  There are some tips on improving your development that I hadn't had a chance to put down on blog before.  I also will be looking into what are the pitfalls and resources for converting an R3 era application to an Xpage based web application.

So, come back often and add your thoughts.