Relative Content

Tag Archive for user-interface

Am I handling my exceptions in a sensible manner?

I’m still restructuring the code I have been given to update on my current work project, and I’ve come to the point where I’m looking at how the code handles an ‘exceptional’ input, that doesn’t conform to the business logic.

How do I tell a user that bps means bits per second or bytes per second?

I’m writing an application that deals with the network and the hard drive. For the network portion, the application measures in bits per second, while the disk portion measures in bytes per second. This becomes an issue as they both are abbreviated b/s or bps everywhere I’ve seen. How could I inform the user that one means bits per second, while the other means bytes per second?

How to outsource the UI of a dynamic Web application?

I have a web application developed using Spring and Hibernate, which uses a REST API and Javascript to display and update content. The project is nearly completed, but I want to enhance the look and feel. This will include better graphics and some extra behaviour.

MVP Implementation at the UserControl Level

I’m trying to figure out how MVP should be implemented at the UserControl level. I thought I had it, but I ended up reading a blog post that pretty much shut me down. Now I’m back at the start and with no idea how to proceed.