Mostly Bollogs, I'm afraid

But occasionally, a glimmer of truth.
If you find one, please let me know.



Thursday 21 May 2015

Swan

There's a swan outside my window, in the river. It isn't doing much. It's just swanning around.

If it wants something to eat, it bobs its head down and gets a fish.

If it wants something to do, it swims up and down the river.

It has a bunch of cygnets, and another sex (I presume) of swan. It looks after them.




Inside my window is me. I'm not doing much. I'm too tired after work.

If I want something to eat, I need to prepare it. I also need to buy it from what's left after I've paid for all the other stuff I didn't ask to pay for.

If I want something to do, I haven't got time to make my dinner. Half of what I had has gone to pay for someone swanning around or telling me what to do.

I have a bunch of kids. I pay for them. I don't mind that. Mine. I mind very much that I pay for those that aren't.




I heard on Radio 4 this morning that G4S are getting £160,000 per year. PER CHILD. To fail miserably in looking after them.




Either the swan or I have got the wrong idea.




You tell me.



Monday 18 May 2015

Dilemma

You're driving down this road, doing 60 mph.


Suddenly, a child walks out from your left, from behind the bush. 

A car is coming the other way.

What do you think you'd do?

a) try to stop
b) hit the oncoming car head on
c) drive through the fence

Now, if you were programming a driverless car and you had these inputs, what would you program it to do? You can't choose at the time, you have to program it to KNOW what to do.

a) trying to stop would reduce your speed to 46.7 mph on impact with the kid. Newton's law says the kid will be lucky if it just dies
b) the other driver will try to stop as well and you will hit it at a closing speed of 93.4 mph with the kid between the two
c) those fence posts are concrete, the first law of robotics forbids you that course of action

Asking for a friend.


Wednesday 13 May 2015

Jobwankers

Just letting you know that this makes no sense. "Communicates with microchip" and "80% firmware development and 20%" means nothing.

Regards - Pengy

PS for £35k you won't get anyone worth having.


On 13/05/2015 18:54, Wanker Job Agent wrote:

Hi Pengy,


Hope you are well, I wanted to drop you an email as one of my clients in Hatfield, Hertfordshire are seeking a firmware engineer to join their development team.

The company specialise in developing an electronic door that communicates with microchip to allow/deny access.

A firmware engineer with 80% firmware development and 20% would suit this role exceptionally.

The salary is up to £35,000 for the right individual.

If this is of interest please give me a call on the number below and send through your latest CV.

I look forward to hearing from you,

Best Regards,

Wednesday 6 May 2015

Strings

I have this at the moment:

TCHAR *tTables[]={
L"SITE",
L"Site\0bigint\0Friendly\0varchar(64)\0",
L"USERS",
L"username\0varchar(80)\0pass\0varchar(80)\0secu\0tinyint\0",
L"\0"
};

There are loads more of them than that.

Each par of lines is a Table name followed by a list of column names and types, null-separated.

I want to make it more readable.

Is it doable?