Frank Bustard

Colonel Frank Bustard OBE (1886 22 January 1974) was a British shipping pioneer who established the commercial use of ro-ro ships using converted tank landing craft.[1]

Frank Bustard
Born1886
Liverpool, Lancashire, England
Died22 January 1974 aged 87
Haslemere, Surrey, England
AllegianceUnited Kingdom
Service/branchKings's Own (Royal Lancaster) Regiment
Years of service1916-1919
1939-1945
RankColonel
Service number42579
AwardsOfficer of the Order of the British Empire
Other workShipping owner

Bustard was born in Liverpool, Lancashire in 1886 the youngest of four sons of John and Alice Bustard.[1] He became an apprentice with the White Star Line and was soon passenger traffic manager. In 1934 when the White Star Line merged with Cunard he left the company and started his own company.[1] He had intended to run a service offering £10 fares from Liverpool to New York[2] but the idea was abandoned at the start of the Second World War when Bustard re-joined the Army.[1] Bustard had served with the Kings's Own (Royal Lancaster Regiment) in the First World War mainly as an embarkation officer and was mentioned in dispatches four times and was appointed an Officer of the Order of the British Empire.[1] Between 1939 and 1945 Bustard worked as part of Movement Control including the D-Day landing, he was mentioned in dispatches twice.[1] He was stationed at Bank Hall, Bretherton, Lancashire which was used during the Second World War for the north west coast shipping movement control.[3]

At the end of the war he started the Transport Ferry Service with his two sons and in the next few years they acquired seven former military tank-landing craft to operate one of the first Roll-on/roll-off drive on ferry services from the United Kingdom to continental Europe.[1] When the ships needed to be replaced he sold the company to the British Transport Commission in 1954 and retired in 1956.[1]

Family life

Bustard married twice, first to Nora Hamilton in 1912, following her death in 1950 he married Margaret Wilkinson Sands in 1952.[1] He had four sons and a daughter from his first marriage and a son from the second.[1] Bustard died aged 87 on 22 January 1974 at his home at Haslemere.[1]

gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

References

  1. "Col. F. Bustard - Drive-on ferry pioneer". Obituaries. The Times (58995). London. 23 January 1974. col F, p. 16.
  2. "Cheap Transtlantic Travel - Major F. Bustard on prosed scheme". News. The Times (46929). London. 5 December 1934. col C, p. 19.
  3. Rectors Weekley (1945) "Home front news", http://www.heskethbank.com/history/rectorsweekly/450719.html
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.