links for 2008-02-14

Feb 14 2008

No responses yet

links for 2008-02-13

Feb 13 2008

No responses yet

links for 2008-02-11

Feb 11 2008

No responses yet

links for 2008-02-10

Feb 10 2008

One response so far

Google Apps Team Edition – the SharePoint killer?

Feb 09 2008

Google has just released their newest collaboration application. This time is different. Google put four of their exist applications together and named it “Google Apps Team Edition“. And the target market is “groups at work or school“.

Here is the PR press: Team Up With Google Apps

Here is the insruction video from Google:

Here are the applications have been included:

  • Google Docs™ to create and share documents, spreadsheets and presentations
  • Google Calendar™ to arrange meetings, set schedules, and publish event information
  • Google Talk™ for instant messaging and free PC-to-PC voice calls
  • Start Page where users can access their Google Apps services and customized content

Google claims that the purpose of Team Edition is to allow users to “share documents and calendars securely without burdening IT for support,” are more likely to be greeted by raised eyebrows from the IT department.

So, what is our IT department busy doing now? Manage network, Exchange or even Sharepoint?

Base on the M$ recent Quarter Results, Microsoft Business Division (MBD) made $4.8 Billion in total, up 37% than last quarter. Those money is coming from selling office suite and selling, consulting SharePoint. Cmswire said only SharePoint itself made $1 Billion for M$. Big deal, really.

Let’s see what SharePoint can do?

What’s missing in Google Apps Team Edition? Maybe not that much.

  • Collaboration

Google already has GDoc, GCal and GTalk. And if you subscribe Premier Edition, you will have 25GB GMail too.

  • Portals

Google Start Page allows you put all kinds of widgets on it so you can easily access inbox, calendar, docs and all the others in your widgets.

  • Enterprise search

Google Search + Google Desktop Search isn’t enough?

  • Enterprise content Management

GDoc?

  • Business process and form

GDoc again?

  • Business intelligence

Still GDoc?

What Google Apps Team Edition has but not in SharePoint?

  • Free for Team Edition and cheap for Premier Edition
  • Easy to use, easy to manage

What’s next?

  • Put Google Apps Team Edition onto your desktop by Prism
  • Invite your colleague to use it
  • Convince IT Department to use it
  • Create some serious widgets work with exist systems in your company? You could sell them to other companies too.

Powered by ScribeFire.

2 responses so far

links for 2008-02-09

Feb 09 2008

2 responses so far

links for 2008-02-08

Feb 08 2008

No responses yet

Three columns layout without table

Feb 08 2008

Computer monitors are getting bigger and bigger, so do the html pages. People start to add more columns into the layout.
To create a three columns layout, in a very traditional way you can do it in a table, like this:

<table>
  <tr><td>Left</td><td>Main</td><td>Right</td><tr>
</table>

There are some obvious downside on this:

  • Mix data and presentation
  • Not browser friendly, try to browser this use a mobile phone? I am not saying iPhone or iPod Touch.

So how to fix it? You can use css with “position: absolute;” or “Float”:

<div id="wrapper">
  <div id="main">
    <div id="sideleft">Left column</div>
    <div id="sideright">Right column</div>
    <div id="content">Content</div>
  </div>
</div>
#wrapper {width: 800px;}
#main {margin-top: 10px;}
#sideleft {float: left; width: 200px; border: 1px solid black; background-color: #dddddd;}
#sideright {float: right; width: 200px; border: 1px solid green; background-color: #99ff99;}
#content {border: 1px solid blue; background-color: #9999ff; margin: 0 20px 0 10px;}

Want to know more?

One response so far

Find your ideal Career

Feb 08 2008

An ideal career is a sweet dream for most of us, well, maybe all of us.

Changethis.com posted a very interesting manifesto from Jessica Hagy: Indexing a Career: A Career Path in Pictures. You can download the free e-book from Changethis.com and can buy a print version too.

Jessica Hagy has a very unique blog called  Indexed. She posts a picture of her draw on a 3” by 5” index card pretty much everyday. Those pictures are all very simple but inspirational.

Some cards from her manifesto:

Always. Everyone. Everywhere.

Time to what?

I remember I collected a interesting one for ideal career too, so I find it out and put it here:

(Click on it to get the full size version)

No responses yet

links for 2008-02-07

Feb 07 2008

No responses yet

« Newer - Older »