Blog

All the latest Bit Zesty news, straight from the team.

  • · Laura Paplauskaite · UX & Design

    UX Web Design: Aesthetics and Usability

    In an interview for the New York Times in 2003, Steve Jobs presented his interviewer with one of the most quotable lines of the Apple main man’s career: “Design is not just what it looks like and feels like.  Design is how it works too.”….

  • · Laura Paplauskaite · UX & Design

    Usability and Usefulness in UX Web Design

    User Experience is a term that has been modelled and defined a thousand times, and many arguments have been started over its various nuances. UX, on some level, can be defined as the usefulness of a service, combined with its usability, combined with its aesthetic…

  • · Laura Paplauskaite · Business

    BPaaS & SaaS: Opening Up New Opportunities for Businesses

    We have developed several Software as a Service (SaaS) and Business Process as a Service (BPaaS) applications for clients in the past and are currently working on our own BPaaS project, so it feels like a good time to go into more detail about this…

  • · Matthew Ford · RoR Development

    Enable TDD with Faster Ruby on Rails Stack Reloading

    When working on Ruby on Rails apps, slow auto-tests can be the bane of the developer’s life. For complex applications, the test suite can take up to ten seconds to load up the entire Rails stack. This may not sound much, but it soon adds…

  • · Matthew Ford · RoR Development

    How To Get The Most Value Out Of Web Development

    We often see clients trying to deal with the combination of long feature lists and limited budgets. One way to overcome this issue is by building and releasing the application in stages. This method provides the additional advantage of allowing you to get user feedback…

  • · Matthew Ford · RoR Development

    Hash#fetch in Ruby Development

    In Ruby there are a number of ways you can access the value of a key within a hash. The most commonly used is the square brackets syntax hash[:key]. However, there is an alternative, which is to use Hash#fetch e.g. hash.fetch(:key). In this post, we’re…