Wednesday, June 24, 2009

uhuroo - content collaboration made easy

uhurooRecently, I've started playing with this certain web app called uhuroo. My very first response was -"Lol! here comes yet another online file storage service". But after using it for about 2 weeks and experimenting with various useful features it had, I must admit that I fell in love with this wonderful app. Why? read on...

what exactly is this uhuroo thing anyway

Uhuroo is a web based tool for information sharing, which allows creating online folders where you can share documents with internal team members (i.e. specially in distributed locations), customers, and other external collaborators. You can also maintain document revisions in a centralized repository and also record everyone's feedback on the content

a closer look at uhuroo

Well organised information is always easy to retrieve. Uhuroo makes it possible to organise data efficiently by means of tagging, ranking and discussion which helps users Collaborate Effectively. I feel there are 3 important things to look for in any information processing system:

Information Storage

Storing information should be easy and the stored information should be secure.Uhuroo offers an easy way to upload files(information) through email push. Once you choose an email account for a folder, files can directly uploaded using email attachments. The subject becomes the title of the document and the body becomes the description and the attached file is uploaded which is stored securely in uhuroo's servers which have zero downtime. Uhuroo also provides a web interface, browser plugins and desktop addons to do the same. view the complete feature list.

Information Organisation

As I said before, well organised information is easy to retrieve. If you are logged into the web based uhuroo system, you have a number of social networking / bookmarking features: documents can be rated,tagged,ranked and commented on.

Information Retrieval

When you login into the web based uhuroo system, you are greeted with a dashboard which is a birds eye view of what is happening across all your teams. It also shows the ranking statistics based on some of the above information: most frequently read, downloaded, subscribed document, most discussed document, most popular post or author, most popular tags.

The full text search helps us find data faster as it even searches within the files! One more feature that I liked in uhuroo is the filter option using which we can filter data based on Author, tags, date posted on and rank. Uhuroo also keeps you updated with the latest version of the document (in case someone uploads a new version) by sending you an email.

in a nutshell

  • Uhuroo makes it really simple to share data with your group at the workplace. (Data meaning doc, ppt, xls, emails, pdf, images, video files)
  • All this data is then accessible at one central location.
  • Features like search within your content (even within the documents), tagging, ranking to make it easy to search through heaps of data.

Hence, it is really made for teams overwhelmed with content getting lost or going out of sync in email, folders or corporate LANS, and are looking for better ways to share and manage content internally and with, partners, customers or other collaborators

For more information check out uhuroo website

Wednesday, May 27, 2009

7 random things about me

I haven't been tagged by anyone for the "7 random things about me" meme. So I take the opportunity to start a meme myself.

meme?

A blog meme is a memesomething that requires active participation by the blogger and (rarely) traces back to an originating source. It is a question that a blogger answers to share some personal perspective or experience on random topics.

the rules

  • Link to your original tagger(s) and list these rules in your post.
  • Share seven facts about yourself in the post.
  • Tag seven people at the end of your post by leaving their names and the links to their blogs.
  • Let them know they have been tagged.

7 things

  1. When I was young, I wanted to become an astronaut.
  2. I haven't seen the movie - Forest gump yet.
  3. Once I fell in love with a cartoon character - jasmine, of Disney's Aladdin. She is still my crush ;)
  4. I need food, water, air, sleep and a computer to survive
  5. I've been awarded all the grades available except AA and AP. (yes! XX, II ,FR, FF … everything!)
  6. I can write in reverse order (mirror writing) with the same speed as I write normally.
  7. I hate JOOMLA (a Content Management System), Mallika Sherawat (who, by coincidence, shares by birthday) and CH101 (I still have an active backlog in it!)

7 people I tag

  1. g2 - coz I simply love his humorous posts
  2. vivek - coz he loves writing absolute random stuff
  3. artagon - coz I wonder what his 7 things would be
  4. pramod - coz he hasn't posted anything since a month
  5. zubin - coz he compiled a long todo list
  6. ravali - coz she has already posted 101+ things about her and I wonder which 7 will she choose.
  7. manku - coz he remains a stupid!

PS: @ the above 7 people. Post a comment here once you are done with your 7 things.

Monday, May 25, 2009

blogger navbar hack explained

Many people use blogger to power their blogs and find the navbar at the top very annoying. Some of them came up with some nice tricks to hide/remove the same. In this article, I'll be explaining how the trick works.

#navbar-iframe{ display:none !important;}

you might have come across this code in many articles. Well... this is how it works.

blogger adds the following code to your blog.

 [iframe src="..." id="" navbar-iframe ...][/iframe]

If you observe carefully, this 'iframe' tag has an ID attribute set to "navbar-iframe". Inorder to hide it we set the CSS rule "#navbar-iframe{ display:none;}" which tells the browser that the element with the ID attribute "navbar-iframe" should not be displayed. However, Blogger adds the following CSS automatically

#navbar-iframe{display:block;}

And since this CSS rule comes after the one which we applied, the latter has more preference and our rule doesn't get applied. This is because of the CASCADING property of CSS. Inorder to override this, we have an "!important" declaration. A rule that has the "!important" property will always be applied no matter where that rule appears in the CSS document. So if you wanted to make sure that a property always applied, you would add the !important property to the tag. So we apply this "!important" property to our style:

#navbar-iframe{ display:none !important;}

Now, display of the tag with id attribute "#navbar-iframe" is set to "none" which tells the browser not to display the same. Hence, the navbar gets hidden.

The same thing can be achieved using javascript too.

document.getElementById('navbar-iframe').style.display='none';

This method has been used in http://apnerve.blogspot.com/2009/02/new-apnerves-hide-blogger-navbar-widget.html

PS: Few other CSS rules that work are:

#navbar{display:none;}
#navbar{visibility:hidden;height:0px;}
.navbar{display:none;}
.navbar{visibility:hidden;height:0px;}