Skip to main content

The Start

Everyone has to start somewhere. For me it was Lusaka, Northern Rhodesia (now called Zambia) where my parents were living in the bush, my father plying his trade as a geologist whilst my mother looked after my sister and I in a tent.

I went to school in Singapore at the United World College of South East Asia from 1975 to 1980. That makes me one of the class of 1980.

Many years on, University and College study done and dusted, I have now been working for twenty one years for the company I joined when I finished my Computer Science degree. It has changed names and owners several times in the last few years but is still essentially the same company with many of my co-workers having been around for nearly as long as I have. Only my boss has worked there longer.

When I started working the average time spent at one company or in one job in the computing industry was quoted at being about eighteen months. I wonder if that figure has changed at all. We recently started setting up a Bangalore office and most of the applicants had their career paths mapped out with promotions every year and changing jobs and companies openly discussed. Needless to say we didn't hire anyone that open about their future plans !!

We actually wanted to hire more developers in our local office in Canberra but because our new parent company has a large set of offices in Bangalore they decided they could hire technical support staff in India, we would then be able to spend all our time developing. So far the cost of setting up the Bangalore office, new computers, hiring people, relocating two people from Canberra to support the new employees, accommodation costs and training have cost more than hiring (and paying for several years) two new people locally would have done.

Comments

Popular posts from this blog

The Extended Attributes Are Inconsistent in Windows 8

I have upgraded my laptop to Windows 8 and all was fine for about three hours and then I started to get an error when trying to run any application that required Administrator privileges. Half an hour of Googling led me to this blog post   Case of the broken uac prompt This problem was caused by downloading themes. The final theme I had decided on included a new sound theme. Clearly at least one of the sounds did not play (the one for the UAC prompt!). Changing the sound theme (right click on desktop, choose "personalisation") to Windows Default sorted out the problem. Doing a clean install would also have fixed it but that would have been a drastic solution and as soon as I installed a new theme it may have happened again.

Beware vnc and upnp

My new linux box got hacked yesterday. I was careless. My ADSL router has upnp support and it is turned on by default. I enabled "Remote Desktop" in Linux - which is a version of vnc - and decided not to set a password as it would not be accessible from outside the local network. That was my first mistake. Last night I noticed a second connection to the linux box. Someone was using the browser and had connected to Western Union and was trying to install the flash plugin. They had not got very far as Fedora 14 does not install Flash on a 64bit system as it is still in beta so the install is not straightforward. I was able to disconnect this errant person before they got any further and I then disconnected the ADSL line from the modem to prevent another attempt and proceeded to diagnose what had happened. I checked the preferences for VNC and noticed the automatically configure the network check box had been selected and that it was reporting an external address could be

"No child processes" error on Linux

A problem was reported by a customer. They were getting a failure and in the logs it reported error → waitpid failed 'Reason: No child processes' The “No child processes” error came from waitpid() after using  fork/spawn to launch a utility to load data into a data base. Upon detailed investigation it appears it is possible that some other process that the user is running has changed the default handler for SIGCHLD - possibly the shell (e.g. bash!) used to launch our server processes. If the signal handler is set to SIG_IGN then when a process is started using fork()/exec() the return code from the process is NOT returned and waitpid() cannot retrieve the response code. The most likely reason for "No child processes" error from waitpid() is that the signal handler for child processes (SIGCHLD) is not set to SIG_DFL. This should not be possible however it seems that on Linux a process run in the shell (or maybe a shell process) can set it