Joe's Jottings

  • About Me
  • Writing….

Author: Joe

  • Wanna Blog? Get a train ticket…

    Regular readers of this blog will be aware that the blog has had a very patchy few days. Life, as John Lennon reputedly said, is what happens when you’re making other plans. I’d like to add that life is what happens when you step away from the keyboard and do cool stuff like go with your niece to ‘The Deep’ in Hull, go to see the Arctic Monkeys with my wife, attend meetings and do paid work – and generally do stuff involving the outside world.

    However, it was bugging me that I was slipping on my personal target which was to blog most days – ideally every day – and so I’ve been extremely lucky today to have to travel up to Harrogate again – a total of around an hour and a half on the train each way – three hours of sitting in Northern Rail’s finest carriages. Wonderful!

    And for once I’m not being sarcastic! I charged up the Netbook, didn’t pack the mobile broadband dongle and here I am between Wakefield and Leeds bashing out the second blog post of the morning in to Open Office. When I get home tonight I hope to have 4 or 5 posts based on ideas I’ve had over the last week but where I’ve not had time to actually type them out. I can then load them in to WordPress and publish as required. There are few distractions on a train journey (assuming you don’t end up sharing a carriage with football fans or small children) and if you disconnect any Internet access to your computer you can really settle down and get stuff done!

    And that’s the trick – disconnect the Internet connection . I find that Twitter and Facebook can be real time thieves. What I’ve now started doing when I want to achieve anything on a train journey is to either leave the Broadband Modem at home or leave it in the bottom of my bag. I don’t have email installed as standard on my Netbook – only if I’m going to be away for a few days – and so there’s rarely a reason to be on-line when I’m really busy. If I need to check a link or get a reference, I’ll make a note in my Open Office document and when I’ve finished doing what I need to do I can go back on-line and tidy up such loose ends, By not having a live Internet connection running all the time, I don’t get tempted to go swanning off on to web sites, I save battery power and am generally more productive and focussed.

    Maybe the next time I get REALLY far behind with things, or perhaps when I need to develop a stock pile of blog articles, I should just buy a day return to Edinburgh and spend the day on the train!

    Regular readers of this blog will be aware that the blog has had a very patchy few days. Life, as John Lennon reputedly said, is what happens when you’re making other plans. I’d like to add that life is what happens when you step away from the keyboard and do cool stuff like go with

    Read more

    November 25, 2009
  • Keeping it up!

    The last week has shown me how hard it can sometimes be to keep blogging!  I’m sitting here with Marvin, our large long haired cat who acts like a dog (i.e. he shakes when wet and sits up with his paws on my lap when he wants attention, then after I stroke him he settles down by my feet!) and am struck by the fact that what is good for business and life in general is not necessarily good for blogging.

    At least not the blogging I like to do – I’m wordy.  I like writing long articles in this blog.  If I have anything shorter to write it goes to Twitter or Facebook these days.  No, to me, if it’s worth blogging it’s worth blogging well.  I do the odd short piece, but am generally happier with longer pieces and feel that a longer article gives my readers ‘more bang for the buck’.  Unfortunately, when work takes off, and family and other responsibilities swallow up time, the blog gets short shrift.  Which, I think, is how it should be.

    One side project that has taken up time over the last two weeks has been to return to an old site of mine, Coffeehouse Chat.  This discussion forum was set up in August 2008 and I closed it in August 2009 after declining usage due to a competing site hitting more right buttons than I was!  However, the world turns and I’m considering whether to refurbish and re-open the site with new facilities.   By the way – anyone who visits – registration and login is turned off but I would welcome comments about colour schemes, etc.  There’s also a nascent user-blogging system being set up at http://www.blogs.coffeehousechat.co.uk, and a development blog about teh site at http://www.coffeehousechat.co.uk/blog/ .  

    And then there’s been work.  Now, despite what our dear Leaders say, for most small businesses I think it’s safe to say that the recession is still biting our ankles.  The major change I’ve found this year has been that the vast majority of my work has been freelance work done from home, rather than regular contract work done ‘on site’.  This has been a great thing in some ways but I have to say the more regular (and higher) income from contract work has been missed.  So….keeping on top of work has become a major priority – and getting new work is an ongoing job!

    And there’s my third sector projects.  I’m a Trustee of South Yorkshire Animal Rescue, Treasurer and a Board Director of Hillsborough Forum and am also involved in the activities of Action For Involvement. 

    And I wonder why I can’t find time to blog….

    The last week has shown me how hard it can sometimes be to keep blogging!  I’m sitting here with Marvin, our large long haired cat who acts like a dog (i.e. he shakes when wet and sits up with his paws on my lap when he wants attention, then after I stroke him he settles

    Read more

    November 21, 2009
  • WPMU Installation to support sub-domain blogs

    wordpressI’m currently renovating a site of mine – Coffeehouse Chat – with a possible view to re-opening the Forum side of it with new and improved features – including better integration with Social Media and User Blog hosting on the site.  And there was the issue – I wanted to install WordPress-MU – the multi-user edition of WordPress – in such a ways so as to support user blogs in sub-domains on the main site domain – e.g. something like joesblog.blogs.coffeehousechat.co.uk

    This is a two stage process that is outlined in the documentation.  the first part is the setting of Wildcards in the DNS settings for the server, and the second part is installing a .htaccess file that actually handles the processing of the redirected incoming requests.

    Installing the .htaccess file is nice and easy.  the file is below – it comes with WordPress-MU named as htaccess.dist – simply put it in the directory containing the WordPress sofwtare and rename it to .htaccess.

    RewriteEngine On
    RewriteBase BASE/
    
    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    So in my case – WordPress-MU installed in a folder called blogs – this file goes in to that folder.

    Now, the second part – the Wildcard DNS settings.  Some time ago when I set up an installation of WordPress-MU I had to get my hosting comapny to deal with this for me.  However, this time, a little advice from Samuel at Prime Hosting showed me how to set it up from within cPanel, so I’m going to share that with you here.  If you’re not using cPanel, there may be other ways in your own control panel to do this.

    In my installation, WordPress-MU is installed in a fodler called blogs off the root of my public_html directory.  I have set up a subdomain – blogs.coffeehousechat.co.uk – to point to it, so that when a user enters this domain they go to the blog create / sign in page.  Now, after checking that this worked happily, I logged in to cPanel for the coffeehousechat.co.uk domain and selected the ‘Subdomains’ control from the Domains panel.

    Now the cunning bit…note that this may not work for you in complicated web site set-ups where multiple redirects are involved – but it worked for me.

    In the ‘Create a Subdomain’ box, (below) enter ‘*’ as the subdomain name – giving *.coffeehousechat.co.uk in my case – and enter the folder on the server where you want things to redirect to as the ‘Document Root’ – in my case public_html/blogs.

     

     CreateSubDomain

     

     

     

     

     

     

    Once this is entered, press the create button.  The grid at the foot of the screen should be updated to reflect teh changes just made:

    ListSubdomains

     

     

     

     

     

    And that is that! 

    A user entering, say, www.test.blogs.coffeehousechat.co.uk will be directed to that blog if it exists, or be prompted to create it.

    I’m currently renovating a site of mine – Coffeehouse Chat – with a possible view to re-opening the Forum side of it with new and improved features – including better integration with Social Media and User Blog hosting on the site.  And there was the issue – I wanted to install WordPress-MU – the multi-user

    Read more

    November 18, 2009
  • Slow and easy does it!

    harrogateI have a client in Harrogate who I visit every couple of weeks, travelling by train.  I went up there a couple of days ago, and as I’d had a particularly hectic couple of days before hand was able to reflect on something that I’ve thought about occasionally in the year that I’ve been visiting Harrogate.  And that is that it’s really pleasantly slow compared to Sheffield.

    Don’t get me wrong; I love Sheffield – probably not as much these days as I used to do but it’s still my favourite city.  I don’t particularly like the bustle of cities; I’ve always commented that London is great to visit but I’d hate to live there.  A few days in London used to leave me exhausted – mainly due to dodging the oncoming streams of pedestrians – wherever I walked I always seemed to be heading in the opposite direction to everyone else!  But now I find Harrogate has the same relationship to Sheffield that Sheffield has to London for me, and I love it!

    I think the busiest place I’ve encountered recently in terms of lots of people squeezing through a gap has been the exit to the railway station, where for the last month or so there have been about half a dozen railway staff checking tickets when we leave the train from Leeds.  after that it’s typically pretty plain sailing.  The best thing for me about walking through Harrogate is that most people seem to be walking at a pace that allows me to avoid them easily if necessary and for them to change direction without the figuratively speaking ‘squeal of shoe-leather’ and rapid stumbling out of your way that has started to be the way of getting around major city thoroughfares.

    Things just go slow in Harrogate – an I mean that in a nice way.  I’ve yet to experience ‘after dark’ but the daytime progression around Harrogate is made easy by a combination of heavily pedestrianised streets and a one-way system that seems to work – from a pedestrian point of view, at least!  The local coffee shops seem to have a different pace as well.  Basically, don’t expect the speed of service to be the same as Sheffield or London.  It isn’t – the chilledness also works in the shops as well, along with a friendliness that seems to be disappearing from Sheffield. 

    There is absolutely nothing wrong with slow.  I’d started to forget that over the years.  I was born in a small town, lived for a while in a city as a student and then moved to Sheffield – a smaller and slower city – to make my home.  Trips to London and Edinburgh reminded me that city life is faster than I expect.

    A friend recently reminded me of the ‘slow food movement’ after I grumbled about poisoning myself with yet another take-away meal, and perhaps it’s the time for a ‘slow-life’ movement to come out of the current economic slowdown.  Does saving 10 minutes really matter that much?  Can’t you just organise your day to leave a little earlier, get there a little later, loiter and lurk, smell the roses, look at the buildings, watch children play. (OK – I appreciate that in Paranoid Britain the latter has it’s own difficulties…) 

    There is a famous poem by WH Davies:

    “What is this life if, full of care,
    We have no time to stand and stare.
    No time to stand beneath the boughs
    And stare as long as sheep or cows.
    No time to see, when woods we pass,
    Where squirrels hide their nuts in grass.
    No time to see, in broad daylight,
    Streams full of stars, like skies at night.
    No time to turn at Beauty’s glance,
    And watch her feet, how they can dance.
    No time to wait till her mouth can
    Enrich that smile her eyes began.
    A poor life this is if, full of care,
    We have no time to stand and stare.”

    Let us join the go slow and stand and stare.

    I have a client in Harrogate who I visit every couple of weeks, travelling by train.  I went up there a couple of days ago, and as I’d had a particularly hectic couple of days before hand was able to reflect on something that I’ve thought about occasionally in the year that I’ve been visiting

    Read more

    November 14, 2009
  • ASP.NET and Oracle – how to stay sane!

    I’m currently doing some development work using ASP.NET against an Oracle database.  I have to say that I’ve had more frustrating development experiences, but most of those involved mainframe computers or…oh yes….Visual BASIC 6.0 against Oracle.  Just what is it about Oracle and Microsoft?  Gah!

    Anyway – rant over.  In this piece I’d like to share a few useful tips for developing with ASP.NET and Oracle if you’re used to developing with ASP.NET and SQL Server.  There’s nothing magic here, and I’m no expert, but hopefully these pointers might assist anyone else in the position that I’ve found myself in!

    Identity Fields

    One thing that looks missing from Oracle in the first instance is the ‘Identity’ field that is often used a Primary key field in SQL Server.  It IS possible to implement this in Oracle – one has to use what’s called a ‘Sequence’ and either include a trigger on the ID field of the table to give you the sequence number added automatically or remember to add it via the INSERT command:

    CREATE SEQUENCE table_seq
        MINVALUE 1
        MAXVALUE 999999999999999999999999999
        START WITH 1
        INCREMENT BY 1
        CACHE 20;

    This generates a sequence called table_seq, starting at 1, incrementing by 1 each time, and going up to a VERY large number!  The CACHE 20 line tells Oracle to generate a cache of 20 values from the sequence.  To use this sequence after creation, you can access it via an INSERT command as follows:

    INSERT INTO datatable
    (id, name)
    VALUES
    (table_seq.nextval, 'Joe Pritchard');

    the ‘id’ field is the PK field of the table, and the table_seq.nextval gets the next value from the sequence.  To create a truly ‘auto incrementing’ PK field, you create a trigger on the table:

    create trigger datatable_trigger
    before insert on datatable
    for each row
    begin
    select table_seq.nextval into :new.id from dual;
    end;

    Run this and then you can add a new row to the table without specifying the id field:

    INSERT INTO datatable
    (name)
    VALUES
    ( 'Joe Pritchard');

    Boolean Fields

    Oracle doesn’t support them.  the best approach I’ve found is to have an integer field and treat 0 as false and 1 as true.  This then works well with ASP.NET checkboxes.  For example:

    <asp:TemplateField HeaderText=”Is Admin.” SortExpression=”IsAdministrator” > 

    <ItemTemplate > <asp:CheckBox runat=”server” ID=”IsAdministrator” Text=’<%# Bind(“IsAdministrator”) %>‘ Checked=’<%# Bind(“IsAdministrator”) %>‘ />  

    </ItemTemplate>
     </asp:TemplateField>

    Don’t forget the provider Name

    When setting up a SQLDataSource control, don’t forget to specify the provide Name in the ConnectionString.  If you do, the error message obtained is not exactly meaningful at first glance, referring as it does to Unicode!  

     

    <asp:SqlDataSource ID=”SqlDataSource1″ runat=”server” ConnectionString=”<%$ ConnectionStrings:ConnectionString %>“ ProviderName=”<%$ ConnectionStrings:ConnectionString.ProviderName %>“

    This also requires you to specify the Provider in the ConnectionString:

     < add name=“ConnectionString“ connectionString=“Data Source=www.myserver.co.uk;User ID=jp;Password=test;Unicode=True“ providerName=“System.Data.OracleClient“/>

    Watch table and field name lengths

    This can be extremely frustrating.  And I mean extremely!  If you are likely to find yourself explicitly specifying the table name and the field name in a SELECT statement, for example, then the combained length MUST NOT exceed 30 character (this includes the ‘.’ separating table and field – so keep table and field names as short as is practicable.

    Quote marks around table and field names

    When putting SQL statements together for use by SQLDataSource or other ASP.NET controls that use the OracleClient provider, don’t forget to surround the Oracle field and table names with quotation marks:

    SELECT "id", "name" FROM "names"

    or

    SELECT "names"."id", "names"."name" FROM "names"

    Parameter Handling

    If you are using Parameters with a SQLDataSource control, don’t forget that the OracleClient uses a colon instead of the ‘@’ sign:

    DeleteCommand=’DELETE FROM “moad_agrippa_users” WHERE “UserID” = :UserID’

    The other thing to note is that the parameter does not require quotation marks around it.

    I hope this piece has been useful – it will act as an aide-memoire for me the next time I come back to work on Oracle / ASP.NET sites!

    I’m currently doing some development work using ASP.NET against an Oracle database.  I have to say that I’ve had more frustrating development experiences, but most of those involved mainframe computers or…oh yes….Visual BASIC 6.0 against Oracle.  Just what is it about Oracle and Microsoft?  Gah! Anyway – rant over.  In this piece I’d like to

    Read more

    November 12, 2009
  • Exclusion 2.0 – is daft jargon necessary?

    turtleI just came across this on my Twitter feed – a reference to a ” ‘Future of the web’ Turtle” at Open 09.  Yup – a turtle.  After some Googling about and learning more than I ever wanted to know about our green, aquatic co-travellers on Planet earth, I eventually went to the Open 09 web site where I found the following:

    “And in the true spirit of social media, the content of the sessions will be decided by the delegates contributing to what will happen on the day via the OPEN 09 blogs. The blogs are the virtual spaces where the themes for sessions – we’re calling them ‘Turtles’ – will be debated and decided. We’ll be adding more Turtles that focus on particular areas of the creative industries.”

    Ahhh…that explained it.  A blog for a session / seminar.  Cool.  So why call them turtles?  This seems to be an increasing habit amongst the more bleeding edge practitioners of web development to create a new (and often meaningless) lexicon to describe what they do.

    Sorry, guys, but this is the sort of meaningless jargonny media-waffle that just produces an exclusive air around a lot of these sorts of events.   My own impression is that the same people attend the round of conferences and seminars, chucking ideas around, hatching turtles, but rarely communicating what the Hell is actually happening to the rest of the world.

    I earn my crust through web and software development.  As I said to a potential client / colleague yesterday – I’m a ‘meat and potatoes’ sort of developer.  My clients expect me to deliver reliable, working systems within budget that add value to their business.  For many businesses, Social Media is still something that swallows up their bandwidth rather than adds to the bottom line, and I’m not sure that this sort of jargon helps us get any sort of message across.

    My view of jargon is that it’s used by people of a shared culture to reduce the amount of communication necessary to get a particular concept over to their co-practitioners in an agreed form.  This fad simply makes it looks like we’re trying to keep these sorts of events as ‘parties for the cool kids only’ and that cannot be good. 

    Or that we’re trying to hide the fact we have nothing relevant to give businesses – which is even worse.

    I just came across this on my Twitter feed – a reference to a ” ‘Future of the web’ Turtle” at Open 09.  Yup – a turtle.  After some Googling about and learning more than I ever wanted to know about our green, aquatic co-travellers on Planet earth, I eventually went to the Open 09

    Read more

    November 10, 2009
  • Book Review – ‘Fantasy Island’ by Dan Atkinson and Larry Elliot

    fantasyislandNo, nothing to do the 1970s TV series with Ricardo Montalban as a bloke who made wishes come true on an Island with a combination of technology, actors and smoke and mirrors.  Although…..  Nope, this is a review of a book by Larry Elliott and Dan Atkinson,  published by Constable in 2007, ISBN Number 978-1-84529-605-6.  Before the NuLab apologists come scuttling out to bleat that Dan Atkinson is a writer with the Daily Mail, and so is biased, I’d suggest they read the book anyway and follow up on the statistics therein.  One final warning – this is a scary book for anyone who cares about the state of the UK after 12 years of NuLab Governance and it will almost certainly make you very angry indeed.

     

    The book is well written – I digested it in two sittings – although the statistical bits (not too many) and the explanation of why the economy is going to crap out may require a couple of readings.  It’s worth noting that this book was written before the recent financial meltdown, which it predicts to a great degree.

    In the book, the authors examine the rise to power of the new Labour philosophy, and then highlight in 7 chapters the ‘big lies’ that have turned Great Britain in to the ‘Fantasy Island’ of the title, where we can have endless debt with no comebacks, enjoy highly paid jobs for which we are unqualified, have limitless growth without environmental impact and where the state machine is apparently being made leaner whilst increasing in size.  All being paid for by jobs in the ‘creative economy’.  Oh, and how we can project military force around the world and play the part of a super-power whilst cutting back on defence expenditure.  Some of us have been banging on about the impossibility of this for some time now – I wish that I’d encountered this book a couple of years ago as it pulls together all the material one needs to take a good hard swing at New Labour and the Blairite nightmare.

    The 7 core chapters deal with the following issues:

    1. Britain’s debt timebomb – well, that one went off in our faces around the time this book was published.
    2. Reliance on the Creative Economy – some statistics on the true value of the ‘creative economy’ to Britain make it clear that it was indeed bullshit to rely on it.  Having spent time working in the film industry in the early 2000s, I can definitely concur – the UK film industry, for example, is one where, in 2000, over 60% of films made in Britain stayed unreleased after being finished and where film-makers made films that they thought punters should see – the cultural colonialism of North London.  By 2004, the balance of payments credit due to film was a paltry 160 million.  At least it was a credit – that due to TV was in deficit to the tune of over 300 million.  Music is also in a mess.  If we follow the NuLab plan we may be relying on ‘The X Factor’ winners to get us out of the hole….
    3. Shrinking Prices AND increased living standards – the fantasy being that we get our cheap toys and non-essential goodies at the EXPENSE of our standard of living. 
    4. Failing Public Sector – deals with issues such as educational ‘grades inflation’ and how the PFI has allowed the private sector to cream off lots of money without any real improvement in productivity.
    5. The Workforce – attempting to keep unemployment down whilst ploughing in lots of new legislation – resulting in a highly exploited workforce with lots of outsourcing. 
    6. Defence – increasing military commitments as the US’s bagman, whilst reduction in real terms of defence budget to suit New Labour doctrine.
    7. Environment – trying to con us all that we can have everything AND not screw up the planet.  Although New Labour aren’t alone here.

    fantasyislandtvNot very pleasant reading – although there is a chapter that offers a couple of alternative paths to take.  Learning to be frugal is something we’re likely to have to get used to over the next few years, anyway, so that will be easy medicine to take – the vast majority of us have no real alternative.  And one other thing after reading this book – it reinforces the old saw that Labour are not fit to govern – which is a dreadful thing for those of us who once had such hopes for the Left in the UK.

    It’s a worthwhile book to get a feel for how we in the UK have been royally screwed in the last 12 years.  Regard it as a companion piece to Nick Cohen’s ‘What’s Left’ – but please don’t read them both in the same sitting and blame me when your head explodes…

    At least on the TV show, all ended well for the people who’d bought their fantasy.  Just where are the two guys in the white suits when we need them?

    No, nothing to do the 1970s TV series with Ricardo Montalban as a bloke who made wishes come true on an Island with a combination of technology, actors and smoke and mirrors.  Although…..  Nope, this is a review of a book by Larry Elliott and Dan Atkinson,  published by Constable in 2007, ISBN Number 978-1-84529-605-6. 

    Read more

    November 9, 2009
  • In Flanders Fields

    poppiesI was late in getting my Poppy this year – I didn’t actually buy it until yesterday (Saturday) morning, when I purchased one from a gentleman in Hillsborough whilst on my Saturday morning Odyssey known as ‘the weekly shop’.  I get a British Legion Poppy every year – I’m afraid I don’t have much truck with the White Poppies that are available – and wear it proudly.

    My grandfather fought in World War 1 – I barely remember him as he died when I was 5 years old, but I’m here because he was lucky enough to be captured rather than killed on the first day of the Battle of the Somme in 1916.  My mother wasn’t conceived until after the First World War, so I regard myself as a lucky bod to just be here.

    One observation I made to the gentleman from whom I bought my poppy was that I am of an age to be part of a ‘blessed generation’ of young men – for much of the last 2 decades the UK has had troops overseas in combat theatres – especially in recent years we’ve become used to seeing coffins coming home from the same places ‘east of Suez’ that the generation of young soldiers who fought in World War 1 would have been familliar with.  My generation avoided this; our only war was the Falklands War – perhaps the last of the old style national wars before we got drawn in to the sequence of international coalitions and wars against terror that have been a feature of the world since teh fall of teh Berlin Wall.

    British troops in World War 1 noticed that the most prominent wild flowers to sprng up each year on the battlefields were Poppies.  The reason for this is simple enough; poppy seeds lay in the soil until the soil is broken up and disturbed; then they’ll start growing.  Today we can occasionally get this effect when ground is broken up for building excavations.  Historically, the effect was noticed by many authors over the hundreds of years in which Flanders was a battlefield.   In Flanders the breaking up was done by digging trenches, shelling, the carving up of the ground by wagons and tanks and running feet.

    And the excavation of earth for graves.

    And the latter inspired Major John McCrae to write possibly the most famous (and my favourite) poem from World War 1 after being responsible for the burial of a fellow Canadian officer at the Second Battle of Ypres in 1915.  McCrae himself would not see peace; he died of pneumonia in 1918.  The poem is ‘In Flanders Fields’:

    In Flanders fields the poppies blow
    Between the crosses, row on row,
    That mark our place; and in the sky
    The larks, still bravely singing, fly
    Scarce heard amid the guns below.

    We are the Dead. Short days ago
    We lived, felt dawn, saw sunset glow,
    Loved and were loved, and now we lie
    In Flanders fields.

    Take up our quarrel with the foe:
    To you from failing hands we throw
    The torch; be yours to hold it high.
    If ye break faith with us who die
    We shall not sleep, though poppies grow
    In Flanders fields.

    Three verses; observation, remembrance and a call to duty.  Our attitudes towards concept such as duty and honour have become cynical over the years, and it’s perhaps only around this time of year that we remember these men for whom it was important enough to lay down their lives.  Some suggest that we should stop remembering WW1 when the last combatant dies; I disagree.  We should step up and catch that thrown torch of honour, courage and duty and not break faith with those who fell in Flanders Fields.

    I was late in getting my Poppy this year – I didn’t actually buy it until yesterday (Saturday) morning, when I purchased one from a gentleman in Hillsborough whilst on my Saturday morning Odyssey known as ‘the weekly shop’.  I get a British Legion Poppy every year – I’m afraid I don’t have much truck

    Read more

    November 8, 2009
  • The ‘Why should I give a fuck?’ award for today goes to….

    CircuspaintingOK – first of all apologies for the title.  It’s just that the trivial background behind this post made me very angry this morning.  I may just be having a grump, heading for a cold or suffering from fast-food overdose, but I guess I’m allowed to throw a strop occasionally.

    So, what was it that generated the bile?  It was the headline on ‘The Sun’ newspaper.  Something about ‘2 Brits win Euro Lottery’.  Like I said in the title ‘Why should I give a …?’  Genuinely.  This matters to the people who won, their families, possibly their communities.  It’s not really a matter of national importance worthy of large headlines on the same day that other news stories include:

     

    • The shooting dead at Fort Hood of 13 people and the wounding of 30+ others
    • The possibility that all of the new proposals for managing MP’s Expenses will not be introduced
    • The UK Government is saying that it’s unlikely that a legally binding climate treaty will be worked out at Copenhagen
    • Three ex-Chief of Staffs have criticised Gordon Brown for his support of UK troops.

    But what’s more important, according to the tabloid press, is 2 anonymous Brits winning a lottery.  I suppose that I should be grateful that it’s not being held up as another great British victory over the perfidious Europeans to match Agincourt, Waterloo or the Battle of Britain!

    Unfortunately I expect to see more of this sort of thing as the months unfold this winter.  It’s going to be a hard one; we’ll continue supporting a regime as bent as a hairgrip in Afghanistan, we’ll continue being in recession here at home and we’ll no doubt continue witnessing the political establishment carry on trying to worm out of it’s responsibilities.  The Media will rise to the occasion with lots of stories like this, a good few about our new (apparent) National Treasure Cheryl Cole and almost certainly a good number of stories like that about Philip Laing and this latest pair of Chav thugs.  Oh, and don’t forget The X Factor and the rest of the ‘reality’ shows.

    Years ago, I guess we might have considered this to be a modern application of the old Roman method of keeping the Proletarians happy by liberal application of pannen et circuses – bread and circuses, with cheap credit supplying the bread and the media providing the circuses.  One thing is definitely certain today – the media is able to provide circus entertainment by the bucket full with reality TV, lottery winners, ‘national treasures’ and a good few examples of throwing folks to the lions.

    It’s a shame we haven’t got bread any longer, though – I do wonder how long teh circus will keep the punters distracted when the bills start piling up and the larder starts getting bare.

    OK – first of all apologies for the title.  It’s just that the trivial background behind this post made me very angry this morning.  I may just be having a grump, heading for a cold or suffering from fast-food overdose, but I guess I’m allowed to throw a strop occasionally. So, what was it that

    Read more

    November 8, 2009
  • Are you a ‘but’ man?

    sergeantbilkoI was reminded earlier today, whilst reading a book called ‘Life 101’,  of a useful piece of advice from one of the more under-rated personal development gurus of the mid 20th Century – Sergeant Ernest Bilko of the United States Army.  Let’s listen to what he has to say on the topic of a three letter word…

    You said, “but.” I’ve put my finger on the whole trouble. You’re a “but” man. Don’t say, “but.” That little word “but” is the difference between success and failure. Henry Ford said, “I’m going to invent the automobile,” and Arthur T. Flanken said, “But . . .”

    And so it was, according to Bilko, that Ford remains in history whilst Flanken doesn’t even make the footnotes.

    ‘But’ is indeed one of the words in the English language that fills me with trepidation.  During my years in consulting, hearing someone agree with what you were proposing, and then adding the word ‘…but’ (complete with pause) to the end of a sentence was the equivalent of telling me that I was as likely to get cooperation as I was to win the Nobel Prize for Physics and Literature in the same year.

    There some occasions when it’s valuable to pull someone up short before they thunder off and implement some plan or other that at best can be described as ‘unwise’.  And there are times when the use of but can provide a useful reminder for folks that their master plan requires a few tweaks before it will work properly.  But often ‘but’ is used as a prelude to a road-block.

    Rather than ‘but’ I now try and use ‘and’ or ‘or’ instead of ‘but’ – then rephrase the part of teh sentence after the old ‘but’ to look towards solutions.  For example:

    I’d like to buy a new computer, but it costs too much.

    becomes

    I’d like to buy a new computer, and in order to give me time to save the extra money, I’ll put the purchase off for a month and see if I can do some overtime in the meantime to help raise the extra cash.

    The first sentence becomes, in the but-less second sentence, an intention with a timescale and a partial solution to the problem of money.  As the guys at Honda say, ‘and’ is a great little word – it opens up opportunities for solutions, rather than closing things down.

    Don’t be a but-nik!

    I was reminded earlier today, whilst reading a book called ‘Life 101’,  of a useful piece of advice from one of the more under-rated personal development gurus of the mid 20th Century – Sergeant Ernest Bilko of the United States Army.  Let’s listen to what he has to say on the topic of a three

    Read more

    November 7, 2009
←Previous Page
1 … 29 30 31 32 33 … 39
Next Page→

More posts

Personal StuffTechnologyThe MediaPoliticsPersonal Development

Twenty Twenty-Five Legal Pad

Designed with WordPress