- published: 26 Feb 2021
- views: 145704
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
David Copperfield is a British six-part television serial of the Charles Dickens novel adapted by Hugh Whitemore and first shown on BBC 1 in weekly parts from 1 December 1974. It was a co-production with Time-Life Television Productions, and features David Yelland as David Copperfield, Martin Jarvis as Uriah Heep, and Arthur Lowe as Wilkins Micawber. Also appearing were David Troughton, Ian Hogg, Timothy Bateson, Patience Collier, Anthony Andrews and Patricia Routledge.
This version was generally well received. In Clive James review for The Observer he wrote: "David Copperfield is as good as everybody says. Steerforth's flaw is well conveyed by Anthony Andrews, and Uriah Heep, played by Martin Jarvis, is a miracle of unction: to hear him talk is like stepping on a toad long dead. But Arthur Lowe's Micawber is better than anything. He follows W. C. Fields in certain respects, but is graciously spoken; and his gestures are as delicate as Oliver Hardy's. Not that his performance is eclectic - it is a subtle unity like everything he attempts."
PC David Copperfield is the pen name of Stuart Davidson, formerly of the Staffordshire Police, who is believed to have been the Internet's first police blogger, who later wrote the best-selling book about the British police service, Wasting Police Time, while serving as Police Constable (PC). He is now serving as a police officer in Canada.
Copperfield began blogging in 2004; Having initially started to write about his passion for gardening, he found that mentions of his working life in the police attracted far more interest and so switched to commenting on law and order issues.
In 2005, a number of his blog posts were used without permission by the London-based Mail on Sunday newspaper. The usage of the material attracted protest from fellow bloggers, and Copperfield jokingly described the journalists as 'bastards'. However, the three-page article also attracted the attention of a number of publishers and agents, eventually leading to his first book.
David Copperfield is a 2000 film that was a joint US/Irish TV film adaptation of Charles Dickens's novel David Copperfield. It was filmed in Ireland, and broadcast on the TV Channel TNT as a Hallmark Entertainment production on December 10–11, 2000.
The plot follows relatively closely to that of the book, although the film highly condenses Steerforth's liaison with Emily and the Peggotty family to primarily off-screen action, as in the 1935 version, and omitting the famous "tempest" scene. An extra plotline placing emphasis on the Murdstone siblings is also included, so that David is tormented by their appearance throughout his life, and eventually violently confronts them near the ending, a scene not present in the book. Some scenes are simplified as well; for instance, Uriah Heep's cunning and complex embezzlement scheme from the book is changed to a very simple plotline involving stolen diamonds. However, this film stresses the relationship between David, Agnes, and Uriah much more than in previous adaptations.
David (Bulgarian: Давид) (died 976) was a Bulgarian noble, brother of Emperor Samuel and eldest son of komes Nicholas. After the disastrous invasion of Rus' armies and the fall of North-eastern Bulgaria under Byzantine occupation in 971, he and his three younger brothers took the lead of the defence of the country. They executed their power together and each of them governed and defended a separate region. He ruled the southern-most parts of the realm from Prespa and Kastoria and was responsible for the defence the dangerous borders with Thessalonica and Thessaly. In 976 he participated in the major assault against the Byzantine Empire but was killed by vagrant Vlachs between Prespa and Kostur.
However, there's also another version about David’s origin. David gains the title "comes" during his service in the Byzantine army which recruited many Armenians from the Eastern region of the empire. The 11th-century historian Stepanos Asoghik wrote that Samuel had one brother, and they were Armenians from the district Derjan. This version is supported by the historians Nicholas Adontz, Jordan Ivanov, and Samuil's Inscription where it’s said that Samuel’s brother is David. Also, the historians Yahya and Al Makin clearly distinguish the race of Samuel and David (the Comitopouli) from the one of Moses and Aaron (the royal race):
David (Spanish pronunciation: [daˈβið]) officially San José de David is a city and corregimiento located in the west of Panama. It is the capital of the province of Chiriquí and has an estimated population of 144,858 inhabitants as confirmed in 2013. It is a relatively affluent city with a firmly established, dominant middle class and a very low unemployment and poverty index. The Pan-American Highway is a popular route to David.
The development of the banking sector, public construction works such as the expansion of the airport and the David-Boquete highway alongside the growth of commercial activity in the city have increased its prominence as one of the fastest growing regions in the country. The city is currently the economic center of the Chiriqui province and produces more than half the gross domestic product of the province, which totals 2.1 billion. It is known for being the third-largest city in the country both in population and by GDP and for being the largest city in Western Panama.
David Abraham Cheulkar (1909 – 28 December 1981), popularly known as David, was a Jewish-Indian Hindi film actor and a member of Mumbai's Marathi speaking Bene Israel community. In a career spanning four decades, he played mostly character roles, starting with 1941 film Naya Sansar, and went on to act in over 110 films, including memorable films like, Gol Maal (1979), Baton Baton Mein (1979) and Boot Polish (1954) for which he was awarded the 1955 Filmfare Best Supporting Actor Award.
David graduated from the University of Bombay with a Bachelor of Arts degree in the year 1930. After a six year unsuccessful struggle to land himself a job, he decided to try his luck in the Hindi film industry by becoming a professional actor. During these years of struggle, he also managed to obtain a degree in law from the Government Law College.
Finally, on 15 January 1937, with the help of his close friend Mr. Nayampalli, a veteran character actor, he managed to land himself his first role in a movie. The movie was Zambo and it was being produced and directed by Mohan Bhavnani who was the Chief Producer of the Films Division of the Government of India.
David Copperfield, in full The Personal History of David Copperfield, novel by English writer Charles Dickens, published serially in 1849–50 and in book form in 1850. David Copperfield has always been among Dickens’s most popular novels and was his own “favourite child.” The work is semiautobiographical, and, although the title character differs from his creator in many ways, Dickens related early personal experiences that had meant much to him—his work in a factory, his schooling and reading, and (more cursorily) his emergence from parliamentary reporting into successful novel writing. ______________________________________________________________________ Hope this movie satisfied you, make sure to hit the Like Button and Share this video with your mutual friends. Don't forget to Subscri...
David Copperfield (2000) USA, Ireland. By Charles Dickens.
Available on DVD through www.umbrellaent.com.au "Like many fond parents, I have in my heart of hearts a favourite child. And his name is David Copperfield." Charles Dickens. Charles Dickens' classic mid-19th century work David Copperfield comes to life in a lavish three hour adaptation from filmmaker Peter Medak (award winning director of The Krays). Tracing the extraordinary life of a young man coming into his own, David Copperfield (Hugh Dancy, TV's Hannibal) is a character of considerable perseverance. After the death of his father at a young age, David must deal with a blustering stepfather Edward Murdstone (Anthony Edwards, The Scarlet Pimpernel) who rules with a heavy hand. Exposed to the many trials and tribulations of a boarding school education, David returns to his family home...
Avec : Hugh Dancy, Sally Field, Paul Bettany Une magnifique histoire adaptée du célèbre roman de Charles Dickens. Dans la lignée d'Oliver Twist, David Copperfield nous embarque dans les aventures d'un petit garçon confronté à la crυaυté des adultes. Un tumultueux et émouvant voyage dans le Londres du 19e siecle...
THE PERSONAL HISTORY OF DAVID COPPERFIELD re-imagines Charles Dickens’ classic ode to grit and perseverance through the comedic lens of its award-winning filmmakers— giving the Dickensian tale new life for a cosmopolitan age with a diverse ensemble cast of stage and screen actors from across the world. Emmy® winners and Oscar® nominees Armando Iannucci (IN THE LOOP, THE DEATH OF STALIN, HBO’S Veep) and Simon Blackwell (IN THE LOOP, HBO’S Succession) lend their wry, yet heart-filled storytelling style to revisiting Dickens’ iconic hero on his quirky journey from impoverished orphan to burgeoning writer in Victorian England. #ThePersonalHistoryofDavidCopperfield #CopperfieldFilm #SearchlightPictures Connect with Searchlight Pictures Online: Visit the Searchlight Pictures WEBSITE: https://w...
Winner 2000 | BBC America and WGBH-TV Of all his books, Charles Dickens wrote he liked David Copperfield best, and this star-studded adaptation by Adrian Hodges is also the best. Produced by Kate Harwood and splendidly directed by Simon Curtis, David Copperfield stars 10-year-old Daniel Radcliffe as the young David and Ciaran McMenamin as the grown man. Throughout this fully-developed, lavish production, the true meaning of family is explored as the orphaned David becomes a part of many families and finally finds love through marriage and a family of his own. Actors deserving special mention in this richly rewarding adaptation are Emilia Fox as David’s doomed mother; Pauline Quirke as his ever faithful nanny, Peggotty; Maggie Smith as his indomitable Aunt Betsy, Trevor Eve as his terrify...
trailer for the 1999 bbc production of David Copperfield starring Daniel Ratcliffe
"David Copperfield" di Peter Medak (Usa/Irlanda 2000) Per info sui film completi scrivere a: [email protected]
Harry's Another Filmography Weird: The Al Yankovic Story (2023) The Lost City (2022) Escape from Pretoria (2020) Guns Akimbo (2019) Playmobil: The Movie (2019) Jungle (2017) Now You See Me 2 (2016) Swiss Army Man (2016) Victor Frankenstein (2015) Trainwreck (2015) Horns (2014) What If (2014) Kill Your Darlings (2013) The Woman in Black (2012) Harry Potter and the Deathly Hallows: Part 2 (2011) Harry Potter and the Deathly Hallows: Part 1 (2010) Harry Potter and the Half-Blood Prince (2009) December Boys (2007) Harry Potter and the Order of the Phoenix (2007) Harry Potter and the Goblet of Fire (2005) Harry Potter and the Prisoner of Azkaban (2004) Harry Potter and the Chamber of Secrets (2002) Harry Potter and the Philosopher's Stone (2001) The Tailor of Panama (2001) David Copperfield (...
romantický, historický
David Copperfield is a British six-part television serial of the Charles Dickens novel adapted by Hugh Whitemore and first shown on BBC 1 in weekly parts from 1 December 1974. It was a co-production with Time-Life Television Productions, and features David Yelland as David Copperfield, Martin Jarvis as Uriah Heep, and Arthur Lowe as Wilkins Micawber. Also appearing were David Troughton, Ian Hogg, Timothy Bateson, Patience Collier, Anthony Andrews and Patricia Routledge.
This version was generally well received. In Clive James review for The Observer he wrote: "David Copperfield is as good as everybody says. Steerforth's flaw is well conveyed by Anthony Andrews, and Uriah Heep, played by Martin Jarvis, is a miracle of unction: to hear him talk is like stepping on a toad long dead. But Arthur Lowe's Micawber is better than anything. He follows W. C. Fields in certain respects, but is graciously spoken; and his gestures are as delicate as Oliver Hardy's. Not that his performance is eclectic - it is a subtle unity like everything he attempts."
I lived a happy life ‘til I was ten years old
When debt landed dad in prison and our country house
was sold
Lunched with a lady in her London flat so cold
Worked at a good polish factory, labelling jars quite
Donald told
Goodness only knows
I was a miserable soul
For a time I went to school but then I found a job
As a clerk to a lawyer, oh it made my poor head throb
I failed to be an actor, despite my loud gob
Ended up reporting speeches of the parliamentary mob
Then as everybody knows
I started writing pros
Put my life into my books
Friends and enemies and crooks
Legal bosses of the crop
In “The Old Curiosity Shop”
Fagin in “Oliver Twist”
A factory pal, you get the gist
And although my memory’s quite foggy
Got Scrooge from the grave of Ebenezer Scroggy
My first book was an overnight sensation
But I drove myself too hard to enjoy the agilation
Despite my wealth, my family begged for money
I wrote of it in “Chuzzlewit” which people said was
funny
Didn’t sell like books before
My family still asked for more
“Little Dorrit” is a tale
About my dad in debtor’s jail
While “Hard Times” tells my life ‘bout
When I tried to leave my wife
“Little Nell’s” here was my poor dear
Departed sister-in-law
And “David Copperfield”, working in a factory
I must confess that that was really me
In my life, felt shamed ‘bout poverty in childhood
Wrote about sadness, suffering and fears
Also wrote about people with funny names
Bumble, Smallweed, Scrooge, Uriah Heep
And Wackford Squeers
Whilst writing “Edwin Drood”
Train crashed in, helped my mood
Still I drove myself on
With readings far across the pond
Died before I wrote Drood’s end
Something drove me ‘round the bend
So Dickens, take a dickens, take a bow
And Heaven knows