Our Iceberg is Melting

 

oibim

Accidentally found this book in company library, and was attracted by cartoon cover (personally not so interested in those business related book).

Finished it in half a day time with my breakfast and a cup of coffee…

Jot down some key value here for sharing.

  1. Create a sense of urgency
  2. Pull together the guiding team
  3. Develop the change vision & strategy
  4. Communicate for understanding buy in
  5. Empower other to act
  6. Produce short-term wins
  7. Don’t let up
  8. Create a new culture

p/s: Very informative book which not merely talking about business or management, but also telling the fact which happen around us (in a fable way) and how can we tackle that.

Found the short video clip for the book @ [Leadership/Business] John Kotter

 

Run Live mMessenger / MSN Without Installation

As my current company not allow live messenger to be install in working box, so I have created this simple vb script to use live messenger, if you interested to do so, follow steps below 🙂

  1. Create an empty file with file extention .vbs (eg : msn.vbs)
  2. Open the file in notepad or any other text editor.
  3. Paste code below into the file.
  4. Save the file and double click to run
Set WshShell = CreateObject("WScript.Shell")
Set iexplore = CreateObject("InternetExplorer.Application")
iexplore.navigate "http://home.live.com/Handlers/WebIM.mvc"
iexplore.toolBar = false
iexplore.addressBar = false
iexplore.menuBar = false
iexplore.width = 600
iexplore.height = 750
iexplore.visible=true