Poem from a project manager

After helping a client Project manager with a cheap long term “snapshot” style of backup involving some western digital Green Hard drives, some Rsync commands and the very nice anti static drive cases by Wiebetech I find this email in my in-box

On my desk this morning that was hardly clean,
The miraculous hard drive fairy has been,
And in the middle of the night,
Left a gift of tera bytes.
How thoughtful of the kind fairy to think,
Of the need to use the superb rsync,
To provide the back-up strategy I craved,
Means all my data will now be saved.

Sometimes even PM’s can be cool

New Anime Series: Aika Zero

First Episode(s) Review for: Aika Zero
Summary:

Somewhere someone decided it would be a good idea to do an Anime where all camera angels would be based on the floor and all characters would be young women with very very very short skirts and thus was “Aika Zero” Born, they have put aliens in there as well as secret agent and spy stuff so I suppose that is all right. If you are from England and a certain age, I will just say James bond merged with The Benny Hill Show and you will get the point

Animation:

Not bad at all, a lot of attending to skin tone and body shape.

Plot Potential:

Err yes, there must be a plot, but as about 10% of the screen estate at any one time is devoted to white panties, I cant read the subtitles.

Music:

bouncy 70’s tunes, quite jolly really

Reminds me of:

There is nothing like it except the original Agent Aika

Overall:

Fun, but fan service level is such that even though it is mild for Japan, it really is bordering on a 18+ for most countries. (no my screen caps don’t reflect this)

 

 

 

Disclaimer: These are mini reviews of anime’s that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!

Reinsurance Book Review

My God you are still reading even after a title like that, well let me explain further.

After you have been a tech for 5 to 10 years, you start to realise that is is not quite enough, yes you have experience, yes you have seen it all and know the root of many technologies so the new stuff that comes out is mearly variations that don’t take long to learn, but you are starting to look a bit long in the tooth to the upstarts graduates, there are lots of ways of dealing with this, from the odious PM to Manager route (Spits!), to the serious tech head (time to grow a beard that you can keep squirrels in), I chose the architect route, now that means I have to be bloody good at a certain line of business as well as the tech that supports it.

I chose Insurance, it’s not the most glamours or the highest paying ( good Insurance business knowledge adds £100 – £150 to your daily rate vs the £200 – £300 for investment banking) but it is far less stressful and I have found the people to be very friendly (something that matters to me)

But even insurance has its levels, from the simple hi-lo (high volume – low value) types such a car and personal liability which fit on one sheet on paper to the very serious “International Property” and “International Marine” (Blue water) which take days or even weeks to do one policy with the help of serious computing power, at the top end of these complicated polices is the joy of Reinsurance which is basically a way of split a large risk amongst lots of companies.

From an IT point of view its hard to get a business grip on this and see it as the brokers and underwriters do even if you deal with the tech side of it every day, and lets face it, its not something you just chat about in the average pub, but there is a book on it to help, well there are quite a few books on it but many of them are out of date. this one however is considered one of the best AND has just been updated

Its Called Reinsurance: the Nuts & Bolts written by Keith Riley and I have to say it’s bloody brilliant, I don’t just mean on its coverage of a complex subject or on the fact the author has produced a technical book on insurance that does not have you slitting your wrists ever 5 mins, I mean that every couple of pages I had a “oh so that’s why the data looks like that”, it gives real insight in a friendly manner and helps you distinguish yourself for other Techs when it comes to dealing with the business. Format wise it feels very much like a “for dummies” book back when such books addressed tricky subjects. Very definitely well worth the investment

 

 

New Anime Series: Ars Nova

First Episode(s) Review for: Ars Nova
Summary:

Mankind has had its butt kicked and been driven from the sea by a fleet of ships that look like normal warships with glowing bits stuck to them, humanity has been relegated to the land with all communications cut. but now a traitor from this “fleet of fog” has teamed up with a young captain to help humanity fight back … but why? what are her motives?

Animation:

90 percent computer animation, which has not made friends with me but there are lots of bright lights and big guns which is helping

Plot Potential:

It’s a strange plot that feels like an Anime version of the search for the Graf Spee but conducted by cute girls with a taste for English culture & tea, not sure what I make of it but I do want to know what is at the bottom of it all.

Music:

Both the opening and closing these are totally mp3 player quality (goes to find them)

Reminds me of:

Strike_Witches in the sea, with a bit of Chobits thrown in for fan service

Overall:

Another anime with a good plot, I’m struggling to get involved due to the plastic nature of the animation, but it’s holding me more with each episode, so it may be my gateway drug to giving computer animation another chance.

 

 

 

Disclaimer: These are mini reviews of anime’s that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!

Content Disposition Typo

While doing a quick patch for XLS generation (caused by Microsoft’s security change for Excel 2007+) in which I swapped a clients code from generated HTML to using the POI lib I ran into this fun little browser discrepancy :

If I want to name the file I’m generating and returning to the browser for download, I just set the “Content-Disposition” header thus:

var fileName = workbookName +".xls";
pageResponse.setHeader("Content-Disposition","inline; filename=" + fileName);

Works just fine on Chrome/Safari and even the dreaded IE, but is completely ignored by firefox

<scratch scratch> …. <shrug> if in doubt use more quote marks

var fileName = workbookName +".xls";
pageResponse.setHeader("Content-Disposition","Attachment; filename="" + fileName + """);

That’s better works everywhere now 🙂
(Yes I am aware that the quoted version was the one I should have used in the first place as per [w3 Protocols](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html) but, if the number of examples that don’t have them in is any judge then I was not alone and browser consistency would still be a nice thing)