May 2009 posts

Google Street View: Privacy concerns vs. the benefits

By Mru Kodali on 26 May 2009

Google’s been refused permission to even roam the streets to collect images for its Street View service in Greece due to privacy concerns. In Japan, it’s been forced to re-collect data as the original pictures pried into people’s backyards. And in Germany, Hamburg officials are seeking guarantees that raw image data will be deleted once identifiable information’s been blurred out. The UK launch a couple of months ago seems plain sailing in comparison.

streetviewSome of us are using Google Street View to make our lives easier by:

  • Checking out an area when flat hunting before deciding to go for an in-person viewing
  • Verifying the location of client offices, a restaurant or shop so you know which way to go once there
  • Making sure you know what the building looks like so you recognise it when in the vicinity

It’s not inconceivable that this technology may soon become indispensable just as sat nav. has for in-car navigation. Are privacy concerns akin to growing pains that we go through before accepting new technology that’s different? RFID tags faced privacy objections but are commonplace in many stores now. Even the Internet faced privacy concerns but privacy activitists themselves have now adopted this technology to spread their message.

I wonder if it’s just a matter of time before Greek citizens demand the conveniences afforded by Street View. How much of our privacy are we willing to compromise in exchange for the benefits of new technology? Or is our view and definition of privacy changing in this fast-paced age of technological development that we’re not really succumbing our rights?

It’d be interesting to see if the reaction’s different in other cultures if the launch should ever expand to cover more of the planet.

Business blogs - A base for your followers

By Jon White on 20 May 2009

When designing and launching the Webcredible blog, it was really important for us to consider not just what we as an organisation would get out of it, but also what our users would get out of it. Given the growth of social media as a platform, blogs are becoming an increasingly important vehicle for getting a company’s message and content out and also allowing followers to keep up-to-date with company news as they see fit.

I recently contributed to a feature in Web Designer Magazine on business blogs and thought I would paraphrase some thoughts here too.

Many online consumers now operate in an on-demand world when it comes to news consumption.  RSS feeds and social media sites like Twitter allow immediacy of content and the trend is that people don’t want to have to go looking for information anymore, they want it to come to them, but on their terms, and this is key.

If your brand or proposition is compelling and people think you have something interesting to say, then they will want to hear from you, but you can’t manufacture this. Knowledge sharing is important here, and while increased traffic to your website may well be a benefit, it shouldn’t be a goal!

Yes, a blog is about getting your message out, but it’s also about interaction - consumer-initiated interaction to be exact. You cannot force a blog on consumers, but it gives you a vehicle to allow people to follow you and that following will then grow organically if you let it.

If you’re reading this, hopefully you think that the Webcredible blog serves exactly this purpose.

Filters and sorts on a web search?

By Alistair Gray on 15 May 2009

Google has been showcasing some of their future developments that it will be looking to trial in the next few months and 1 tool that caught my eye is a series of filters/sorts down the left of the search results. _45768063_search-google-bod-opt

In all my time in this field there’s been very few sites that haven’t been improved by such functionality.

However my gut instinct is that Google is so powerful that if there’s a relevant result it will be near the top anyway. Adding filters means you’ve got to spend more time adjusting the filter options before deciding if the search term you entered is suitable, or if you need to re-search.

Using relevant filters will reduce this effect, but this tool should only be introduced if many people find it useful. I don’t want to see Google - the minimalist design icon - suffer from “function creep” (where more and more functions are added to an interface, until it is unrecognisable).

Great online tool to create a mood board

By Philip Webb on 13 May 2009

Creating a mood board is a great way to visualise, develop and communicate design concepts. It can be a useful frame of reference for interface/website design, storyboarding, brand design, fashion design - in short any kind of creative endeavour, including those that aren’t explicitly visual. The idea is to collect images and objects that encapsulate a “feeling” or direction that reflects what the designer is trying to achieve.

A great online tool for creating moodboards is provided by Image Spark. A free account gets you 1GB of space to create up to 2 mood boards. Creating a library of images is made easy with the plug-in (Firefox). You can also upload your own images, or browse the libraries of others in the “community” to collect images. Then just arrange your images into a mood board using the simple, intuitive interface. The tagging facility opens up the community content so that you can see interesting collections of similar images uploaded by everyone.

It’s unclear whether future upgrades will involve a cost or not. The site’s success will depend ultimately on whether the community takes off. The simple interface is a step in the right direction, although if I have a gripe, only plug-ins for Firefox are available at the moment. The site can also be pretty slow. Having said that, it’s free, useful and compelling!

CSS pseudo class tip

By Paul McCarthy on 12 May 2009

Tags:

Having contributed to a feature in last month’s Web Designer Magazine on great CSS secrets, we thought that the blog would be a great place to share the tip we came up with for clearing a float container without extra HTML mark up:

If a floated element is nested within a box that has a border or a background colour applied to it, the floated element will not force its container to stretch all the way down (mainly in standards compliant browsers).

To force the container box to enclose the floated div(s), it needs a ‘cleared’ element added after the last floated div. Rather than adding extra HTML mark up such as a clearing div or paragraph we can use CSS.

Using the pseudo-class :after it’s possible to add content at the end of an element with the following CSS commands:

#id:after {
content:".";
clear: both;
height: 0;
visibility: hidden;
display: block;
}

Sometimes the container will also collapse in Internet Explorer. Unfortunately IE still doesn’t support the :after pseudo-class yet, so a simple declaration of height: 1% to the floated containing div will stop it from collapsing.

#id {
height:1%
}