Archive for October, 2008

Intrapreneurs : Entrepreneurs within the Enterprise

Wednesday, October 22nd, 2008

I’ve posted this article back in November 2005. Although I strongly believe in this tool to increase creativity and revenue, I don’t see this opportunity been (correctly) applied in many organization.
We are heading towards a very difficult 2009. Companies who are lacking to innovate, to adapt, to even take some risks, as [...]

Creating a simple restart monitor

Wednesday, October 1st, 2008

My internet connection at home comes down once in a while. To auto restart this service, I have created following script.
#!/bin/bash
# eciadsl-pppoeci Process Monitor
# Restart internet connection when it’s down
RESTART=”service adslconnect restart”
STOP=”killall pppd”
#path to pgrep command
PGREP=”/usr/bin/pgrep”
# eciadsl-pppoeci daemon name
eciadsl=eciadsl-pppoeci
# find eciadsl-pppoeci pid
$PGREP ${eciadsl}
if [ $? -ne 0 ] # if eciadsl-pppoeci not running
then
[...]

about my life, my work, my interests, technical stuff, ….