All posts by user

60 usability improvements (and we are not done yet!)

Kerika got updated today, with around 60 usability improvements based upon feedback from our early adopters. Many of the changes are quite small, but you should notice that now it is even easier to:

  • Add people to projects.
  • See who is part of each project.
  • Chat about cards.
  • Work with templates.
  • Catch up on updates from coworkers.
  • Use Kerika’s unique canvas feature.

There’s also a simpler and easier welcome experience for new users, and improved performance with faster downloads.

And speaking of performance, that’s our next focus: we want to kick that up quite a bit, so it’s even easier to use Kerika with public WiFi networks like coffee shops.

Task management comes to Kerika

At long last, task management comes to Kerika!

We are launching a brand-new version of Kerika this weekend: the fruits of over 8 months of intense research and design of the only taskboard that’s designed specially for distributed teams. There’s a short video that we urge you to watch: it provides a good overview of Kerika’s new capabilities:

  • You can organize your work using cards on a virtual task board: the interface is easy to understand and delightful to use.
  • Each card can contain details of the work, and, of course, you can add content from your laptop or the Web to each card.
  • Each card can be assigned to one or more people from your project team: Kerika lets you see at a glance who is working on what.
  • Chat is integrated directly with your work: you can send messages that are attached to your cards, or the entire taskboard.
  • You can get started with one of our standard project templates, or create your own process templates to reflect your organization’s best practices and proprietary methodologies.
  • Kerika’s unique whiteboard capabilities are integrated with the new task management: you can add a canvas to each card for sharing ideas, and everything updates in real-time as usual.
  • And our special focus continues to be the challenges faced by teams that are distributed over different locations — it could be that you are working with people offshore, or simply working from home: Kerika makes it easy for you to see, at a glance, exactly what’s changed on each work item in each project.

As usual, we look forward to your feedback! (Contact us by email.)

A new user interface, with much improved usability

We are launching a brand-new version of Kerika, with a completely reworked user interface and a ton of new features including support for iPads and other full-sized tablets.

The new UI is different enough that we have put together a 2-minute video that we recommend you watch before you sign in next; it will really help you get the most out of the new software. The interface is new, but all your old projects and data are all intact!

The new interface is part of a larger transformation we are undertaking that will add project management capabilities to our existing collaboration features: we want to provide support for Kanban-style projects, Agile/Scrum projects, and customized workflows. We have finished designing the new features and if you would be willing to take a look at our mockups and give us your opinion, it would be greatly appreciated!

Meanwhile, please enjoy the new version, particularly if you have an iPad or other full-sized tablet. To access Kerika on your tablet, just log into the kerika.com site using your tablet’s browser: there is no need to download any app because we have rebuilt the user interface to work just fine inside your tablet’s browser.

How to tell if a file has been updated

The first version of Kerika was written as a peer-to-peer (p2p) application, so one challenge we faced was detecting when files that are being shared as part of a project were changed by a user, so that we could send the latest version to everyone else on the team.

Our first attempt at a solution was to simply examine the Last Modified time for files. However, this proved to be very unreliable for a rather odd reason: whenever you open a spreadsheet using Microsoft Excel, it automatically updates the Last Modified time to be the current time – even before you had made any changes.

And when you close Excel, without having made any changes, it resets the Last Modified time back to its original value. So, whenever you opened a Excel files for viewing, we would erroneously identify it as an updated file.

We then tried looking at the size of files, to see if these had changed since we last examined them. We knew, of course, that this would be error prone in its own way: if you change some text within a file such that it contains the same number of characters as before, the overall size of that file would not change.

But this approach failed for another reason altogether: Microsoft Word allocates disk space in chunks at a time, rather than as exact amounts. This means that any edits to Word files that do not require Word to grab another chunk, or give up a chunk, would never be reflected in the reported size of the file.

Eventually, we decided to take the MD5 hash of files, which is a more reliable way of detecting if a file has been modified. We were concerned about how much CPU overhead this would take, but it proved to not be a problem after all.

When techies turn libertarian, neither Democrats nor Republicans will win

The Wall Street Journal’s editorial page contains a bemusing article called Keeping the Spirit of Steve Jobs Alive that concludes that

Thanks to Washington, the liberal politics of Silicon Valley may now be tilting toward the libertarian right.

The WSJ is, of course, a Republican mouthpiece, which probably explains the writer’s smug assumption that when techies turn libertarian, they will all start voting Republican, which is absurd on two counts:

  • It is based upon what is essentially “non-news” in the first place: many techies have long tilted libertarian in their political views because of the very nature of their profession: information technology itself is based upon the free flow of information, so respect for the First Amendment runs deep within the tech world, and the business itself is relentlessly meritocratic and brutally disruptive, which supports neither the collective approach of the left, nor the deference to authority of the right.
  • Libertarianism may be to the “right” of liberalism, but in its emphasis on personal liberty, it could just as easily be described as being to the “left” of conservatism. In any case, libertarianism forms a 3-D point with respect to classic liberalism and conservatism, so any mapping of a 3-D topography of political views to a 2-D spectrum will necessarily be misleading.

And because libertarianism confounds the simple soundbites and clear definition of the “enemy” that both Democrats and Republicans find convenient, neither party would really welcome libertarians in their midst.

If the WSJ had understood the difference between Republicans and libertarians (with a small “l”) in the first place, they would have noticed a long time ago that a lot of techies are social liberals and economic conservatives…

Running Java on the Lion operating system

Having gotten a new Mac laptop that came packaged with Apple’s newer Lion operating system, and having successfully moved all files from an older laptop running Snow Leopard, we learned the hard way that Lion doesn’t come with Java bundled in by default!

The problem surfaced when we tried to run the Kerika server software on our new laptop: since we wrote all of the backend/server code in Java, we can run the entire Kerika software on pretty much any computer. So, with our new laptop all set up, apparently configured with everything we need once we got our SuperDuper backup restored, we tried to build the Kerika source code using Maven.

That’s when things went in a surprising direction: running “mvn -install” generated error messages about Java not being found. We followed the symbolic links for the Java executables, which had been copied over to the new laptop along with everything else from the SuperDuper backup, and found that there was nothing there: no Java to be found on the machine.

OK, so we need to get Java installed. No problem, we will just run the Mac Software Update: maybe something got missed along the way.

No good: Mac’s Software Update didn’t pull in Java.

Finally, we talked to Apple and found out that they deliberately don’t include Java (or Flash) with Lion. The ostensible reason is that Java programs (and Flash programs) take up too much battery power. This argument sounds rather dubious: Flash’s excessive power consumption is well known, but Java…?

We think a truer explanation might be that Apple views Java programs as a long-term competitive threat to their App Store, and are therefore starting to subtly discourage its use without actually banning it – which would create a huge stink.

If this sounds like Microsoft’s deliberately crippled support of Java on Windows XP, Apple should perhaps pause and consider how well that strategy worked out for Microsoft…

Meanwhile, here’s the download link to get Java for Lion!

A new version, with more goodies..

We have released yet another version of Kerika, packed with useful features and bug fixes that will improve your experience with the product.

A lot of the improvements we made are “under-the-hood”, but here are a few changes that you can benefit from directly:

  • Snap-to-grid will make it easier for you to lay out shapes, documents, pictures, etc. on your Kerika pages. You can turn this on or off as you like, and adjust the size of the grid spacing, by setting your preferences: while you are using Kerika, click on your picture near the top edge of the browswer window and you can get to your user preferences.
  • Google Docs will always open in a new browser tab: this change makes for a more consistent and better user experience for everyone. Different browsers handle Google Docs differently, so to provide a more consistent experience for everyone your Google Docs will now alway open in a new browser tab rather than inside the Kerika canvas.
  • Easier ways to invite people: based upon very useful feedback from one of our users, we have added an “auto-acceptance” feature to invitations, and also redesigned the emails that get sent when people are invited to join your projects. These changes make it easier for you to invite people, and handle situations where the invitation emails get caught up in spam filters.
  • Custom colors: mix and match colors as you like, if you don’t like the 84 colors that come with the Kerika palette. If you need to use specific colors, e.g. to match your company’s branding, you can use hex codes to get the exact shade you want.
  • Faster tab switching: we improved this in a several ways, and one of them is to make sure your tabs show the page exactly as you had been viewing it previously before you switched to another tab.
  • The old “Magic Plus” button is now split into two: separate buttons to add Web content and to upload files from your computer. These buttons remain as magicky as ever, in terms of figuring out what kind of content you are adding to your Kerika pages and taking care of all the details, but now the buttons are separated out to improve usability.
  • Upload multiple files with the Upload File button: you could always add multiple files to your Kerika pages by dragging and dropping them onto the canvas; now you can grab multiple files using the Upload File button as well.
  • Merging cells in tables: a cool new feature allows you to merge cells within tables that you create. This makes it even easier to create great-looking content on your Kerika pages, with our text formatting tools.
  • Select multiple cells within the same column and apply formatting to all of them: another cool new feature for those of you who like creating formatted tables. You can select multiple cells within a text table by simply dragging your mouse across them. And, then, you can apply formatting (e.g. text color) to all of them with a single action.
  • Removing multiple rows and columns is easier: drag your mouse across several rows and columns of a table and remove them all with a single mouse click.
  • Easier to navigate large Kerika pages: if you want to drag something into a new part of the canvas, away from the current view, the canvas scrolls automatically to give you more space.

Thanks again for all your useful feedback; we have tons of improvements and new features coming up: our next version will include a number of improvements to our integration with Google Docs.

An easier way to share Web-versions of your project pages

Our new version will have an easier way for you to share Web-versions of your Kerika project pages.

“Web-versions” are automatically generated for every Kerika page: they can be viewed as regular Web pages, and easily embedded inside your own website or blog.

For a great example of how an embedded Kerika page can look inside your own website or blog, check out Ogden Murphy Wallace’s “Startup Action Kit” which provides an online resource for entrepreneurs interested in starting healthcare IT ventures. This page contains a Web version of a Kerika page that has been inserted into OMW’s microsite as an IFRAME, something that’s easily done by using the “Share!” button inside Kerika:

How to embed your Kerika project inside your website or blog
How to embed your Kerika project inside your website or blog

 

With our latest version, getting the URL of the Web-version of your project pages is easier than before: just click on the Share! button, and when the dialog box shown above opens, you can grab the URL from either of the two places indicated above.

An even easier way to get the URL of the Web-version of your project: all Kerika project pages have URLs of the form “kerika.com/m/XYZ“; just change the “m” to a “c”, as in “kerika.com/c/XYZ“, and you have the Web-version of your project.

Remember: the Web version gets updated in real-time as you update your Kerika project pages, which means you are publishing on the Web in real-time!

 

A completely rebuilt text block capability in our latest version

We have been toiling away for the past 4 weeks on our latest version of Kerika, with the vast majority of time consumed with a complete rewrite of the Text Block feature. This is the feature that lets you place blocks of richly formatted text, including Web links, pictures and tables, onto your Kerika page. (What we termed, in an earlier post, “glassbox documents”.)

Here’s a simple example of a text block:

A simple example of a text block
A simple example of a text block

 

Having realized just how important this feature is for our users, we decided to do a complete rewrite of all the code, abandoning the open-source library called Whyzziwig that we had been using previously in favor of our own implementation. We did all this work because it was clear that we needed to be in greater control of this particular feature’s destiny: something that’s impossible when you are using an open source library. As a result of all our hard work, you will now have a bunch of great new functionality!

  • An Undo button: at long last! We still need to create a broader Undo function that works across all of Kerika’s operations, but this particular button works nicely when you are editing a text block.
  • A strikethrough button: great for marking up requirements and discussions.
  • A new color picker: a simple palette of 84 colors with a cleaner user interface. Along with this comes an easier way to set the font, highlighting and background colors.
  • More options for numbered lists: including using alphabetic and Roman numerals.
  • More options for bullet lists.
  • A clear formatting button: this can be particularly helpful if you are importing content from Microsoft Office. (See our earlier post on just how much junk HTML is carried over if you copy material from a Microsoft Office document.)
  • Easier ways to add, edit and remove Web links: we have considerably simplified the user interface for attaching a Web link to some text (or to a picture that you have embedded inside your text block).
  • Easier way to embed pictures in text block: a simpler, cleaner user interface.

We also have reatly improved capabilities for creating and managing tables: this was where the bulk of the work was done! We have added a number of features that our users asked for, such as:

  • Setting Cell, Row and Column Properties: you can set horizontal and vertical alignment, as well as the background (fill color) for a single cell, an entire row, or an entire column.
  • Resizing column widths by dragging: something that we have wanted for a long time, and which took a lot of effort to build… Now you can re-size a column simply by dragging its edges, as you would with Word or Excel.
  • Copy and Paste: you can now copy and paste a single cell, an entire row, or an entire column. Great for moving stuff around inside tables!
  • Border color: easier to set, with our new Color Picker. And, to improve the usability and appearance of tables, we automatically make the outer border of tables twice as thick as the inner borders (that separate individual cells).

That’s not all that’s new in this release, but this particular blog post is long enough, so we will talk about other goodies in our next posting… Here’s a Kerika page that shows these changes: it’s open to the public to visit, so come on over!

 

How to say “Hello, World!” in 1,287 words using Microsoft Word

People using Kerika love the text block feature – the one that lets you create richly formatted text blocks on a Kerika page that contain pictures, tables, lists and links – but all too often they try to create these text blocks by copying and pasting text from a Microsoft Word document.

The problem with doing this is that Microsoft Word produces a gigantic amount of HTML junk, even with the simplest text.

Here’s an example: create a new Microsoft Word document and type in the words “Hello, World!”. That’s it: just two words, a total of 13 characters including spaces and punctuation, using your default font. Nothing fancy – no colors, bold or italics, no lists, nothing at all. Just two words.

Now try to copy and paste this text into something that will display the HTML generated by Microsoft Word. One option is to paste this text into a Kerika text block, and then use the “View as HTML” option to see all the HTML that comes with these two words, but we will be temporarily removing the “View as HTML” feature in our next version as part of our rewrite of the text block feature. (More on that later…)

You will find that Microsoft Word produces an astonishing 1,287 words, which add up to 18,008 characters of HTML, just to represent a total of 13 characters of content. In other words, your simple bit of Microsoft Word text exploded by a factor of 1,385.

(If you look at the HTML, you can see, of course, that this expansion factor doesn’t stay constant: a lot of the HTML is simply a dump of a lot of styling information that wouldn’t change proportionately as you increased the size of the original Microsoft Word content, but still…!)

Here’s how you can say “Hello, World!” using 1,287 word of HTML: