Skip to main content

Google Wave

Google Wave... are you surfing it?
Google has been opening up invitations to use its new communication tool. For those not familiar, it's kind of a cross between E-mail, Instant Messaging, Forums, well you get the idea.
More information can be found here.
I have been "Waving" for a bit now and here are some observations:
  • Collaboration - Using Wave as a collaboration tool works well. However, keeping things from getting things disorganized can be a challenge. But thankfully there is the playback feature. Working with others in real-time is useful but the real power comes with playback. Getting caught up is a snap. Using the spacebar also moves one quickly through the unread 'wavelets.'
  • Just discussing a topic - It is amazing how much fun that can be. The wave will go feverishly for a bit then lag and just when you think it has run its course, away it goes again!
Try wave out if you can get an invite. It's just a curiosity now, but who knows, maybe it will be as essential to life as email!

Comments

Popular posts from this blog

Calculate Age or Years Elapsed in an Apple Numbers Sheet

Often it is useful to show a person's age or years elapsed since a start date.  For example: Hire Date: 4/1/2012 - Years of service: 1.5 Here's a formula for Numbers that will do the trick: =IF(ISBLANK(cellReference),"",DATEDIF( cellReference ,TODAY(),"D")/365.2425) Replace the cellReference with the actual cell reference. i.e.: (A1)  So here's the breakdown: =IF(ISBLANK(cellReference),""  --- this checks to see if there is a start date in your referenced cell.  For example say your spreadsheet has a cell (A1) that holds a date of birth, but it is not yet referenced, this will result in an empty string. (Blank cell) Otherwise, it calculates the years:  DATEDIF( cellReference ,TODAY(),"D")/365.2425) DATEDIF compares two dates. The first date is your cell reference i.e.: (A1) The second is the current date according to your computer, iOS device: TODAY()  returning the Day -  "D" Then the difference is divi...