- published: 04 Mar 2019
- views: 9894
'+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; })); }); -->
Jon Boden is a singer, composer and musician, best known as lead singer and main arranger of Bellowhead. His first instrument is the fiddle and he is a leading proponent of “English traditional fiddle style” and also of “fiddle singing”, both of which he employs in Bellowhead, in the duo Spiers & Boden, and previously as a member of Eliza Carthy’s Ratcatchers.
To date Jon Boden has been the recipient of 11 BBC Radio 2 Folk Awards, more than any other musician.
Boden also fronts his own band the Remnant Kings, put together in 2009 to perform his post-apocalyptic song cycle Songs From The Floodplain. He has also made contributions to many other albums as a fiddler, singer and guitarist, most notably two albums with Fay Hield & The Hurricane Party.
In 2010 he launched an ambitious project to record and deliver A Folk Song A Day on line, aiming to inspire others to build a repertoire of songs and engage in social singing. All 365 songs are now available on iTunes, Spotify and YouTube, as well as on the www.afolksongaday.com website.
Dennis Murphy may refer to:
Denis Murphy may refer to:
Dennis Arthur Murphy (born about 1927) is a sports entrepreneur.
Murphy co-founded (with Gary Davidson) the World Hockey Association and the American Basketball Association. He also founded Roller Hockey International and World Team Tennis.
From 1973 and 1979, the Dennis A. Murphy Trophy was presented to the best defenceman of the World Hockey Association.
In 2010, Murphy was part of the initial group of individuals elected to the World Hockey Association Hall of Fame.
Dennis Murphy (born October 24, 1967 in Oceana, West Virginia) is the drummer for the Kingdom Heirs.
He has been a member of the group since 1990. Before he joined the Kingdom Heirs he toured with The Greenes.
The Kingdom Heirs band has won multiple Singing News Fan Awards as band of the year with Murphy as a member. In addition, Murphy has received several nominations as musician of the year.
Occasionally Murphy sings at Kingdom Heirs concerts. His "Video Song" in which he asks Bill Gaither when he will get to star on a Gaither Video is a crowd favorite.
On the special features of the Going on with the Song enhanced CD, Murphy reveals that he once tried out for Fear Factor.
Murphy has a wife, Angie, and a daughter, McKenzie.
Testimonial from Dennis Murphy with Dateline on his stay at The Resort at Egyptian Hills on the Lake of Egypt near the Shawnee National Forest.
👉 Https://patreon.com/SurvivingTheSurvivor STS Website: https://survivingthesurvivor.com/ STS Merch Store: https://www.bonfire.com/store/sts-store/ #STSNation, Welcome to another episode of Surviving The Survivor, the podcast that brings you the #BestGuests in all of True Crime… After 9+ years, Donna Adelson appeared in a Tallahassee courtroom to hear the charges levied against her, including murder, in the conspiracy to kill her ex son-in-law FSU Law Professor Dan Markel. The following day her son Charlie Adelson was sentenced to life in prison without parole. Now Charlie’s jailhouse calls are out there making people wonder if Donna and Charlie could turn on Wendi? #BestGuests: Dave Aronberg is the State Attorney for Palm Beach County. The State Attorney ...
WI V. DAHMER (1992) - Milwaukee police Detective Dennis Murphy continues his testimony. Det. Murphy was one of the detectives who took Jeffrey Dahmer's 160-page confession during 60 hours of interviews. Watch the FULL TRIAL of WI v. #JeffreyDahmer (1992) on #CourtTV Trials #OnDemand https://www.courttv.com/trials/wi-v-dahmer-1992/ A new Netflix docuseries "Monster: The Jeffrey Dahmer Story" explores the gruesome story of Jeffrey Dahmer. Court TV cameras were inside the Wisconsin courtroom in 1992, where a jury was tasked to decide whether Dahmer, who pleaded guilty to the murders and dismemberment of 15 boys and men, should be sentenced to life in prison or admitted to a mental institution. COURT TV IS BACK! 24/7 LIVE gavel-to-gavel coverage, in-depth legal reporting, and expert analys...
Provided to YouTube by Universal Music Group Dennis Murphy / John Ryan · Craig Duncan Irish Dance ℗ 2009 Green Hill Productions Released on: 2009-01-01 Producer: Craig Duncan Composer: Traditional Arranger, Work Arranger: Craig Duncan Auto-generated by YouTube.
Oxygen sits down with Dateline correspondents Keith Morrison, Dennis Murphy and Josh Mankiewicz at CrimeCon 2019 to talk about Dateline’s legacy, CrimeCon, and Bill Hader impressions. Watch our full Crime Con coverage for interviews with all of the top True Crime investigators, podcasters and more. https://www.youtube.com/playlist?list=PL7yRqtDfF-XOJ1nOUtNDVu_lIG2chAaWg ►► Subscribe to Oxygen on YouTube: https://www.youtube.com/c/OxygenTV?sub_confirmation=1 Oxygen Official Site: https://www.oxygen.com/ Follow Oxygen: On Facebook https://facebook.com/oxygennetwork On Twitter https://twitter.com/oxygen On Instagram https://instagram.com/oxygen Oxygen Media is a multiplatform crime destination brand for women. Having announced the full-time shift to crime programming in 2017, Oxygen ha...
#STSNation, Welcome to the podcast that brings you the best guests in true crime. In this episode we see how “the sausage is made”. Dateline NBC’s Dennis Murphy tells us why they chose to do two shows on Dan Markel. #BestGuests: Dennis Murphy is the winner of four national Emmys for excellence in news reporting He’s best known known for regular contributions to NBC News, NBC Nightly News, Dateline NBC, The Today Show and NBC News at Sunrise. He’s covered the Dan Markel murder case from the beginning. Ruth Markel is the author of the WIDELY DISCUSSED book about her son’s murder: The Unveiling: A Mother’s Reflection On Murder, Grief, and Trial Life Prior to writing The Unveiling, Ruth was already a noted author, public speaker and the president of RNM enterpris...
Welcome to another episode of Surviving The Survivor, the podcast that brings you the #BestGuests in all of true crime. And...this episode is no different. In this special taping, STS takes you BTS of a live event in South Florida. JAFCO hosted Perspectives of Trial Life and invited STS Host Joel Waldman along with Ruth Markel, Dennis Murphy and Dave Aronberg to discuss the Dan Markel story and the long journey for trial, the families involved and the community rallying behind them. #BestGuests: Ruth Markel is the author of the WIDELY DISCUSSED book about her son’s murder: The Unveiling: A Mother’s Reflection On Murder, Grief, and Trial Life Prior to writing The Unveiling, Ruth was already a noted author, public speaker and the president of RNM enterprises, a leading management consu...
I now have a Patreon website and for a small amount each month you get regular teaching videos, sheet music, backing tracks, live streams, newsletters and more. Pay me a visit and see what is available.https://www.patreon.com/peakfiddler This is the first video in a set of 4. Here are links to each of the other videos, including this one. Video 1: https://youtu.be/HpH_7MkfmPc A performance video demonstrating both tunes played as a set. Video 2: https://youtu.be/27TQQgtVeZE A slow playthrough and discussion about the first tune, Denis Murphy's Polka Video 3: https://youtu.be/YuK68P4CCkA A slow playthrough and discussion about the second tune, John Ryan's Polka Video 4: https://youtu.be/9XmXZat7u30 A backing track to accompany the complete set of two tunes.
Dennis Drazin, an Ohio Stat slum and partner at Drazin & Warshaw, was instrumental in the passage of sports gaming in New Jersey, a move that has been duplicated in states across the country. He spent an hour with SSI talking about his revolutionary court case to change gaming laws and its impact on the sports industry.
Donate: https://paypal.me/bykatemiller Detective Dennis Murphy about Jeffrey Dahmer's arrest. From documentary "Jeffrey Dahmer Mind of a Monster". Детектив Деннис Мёрфи об аресте Джеффри Дамера. Русские субтитры. Отрывок из документального фильма "Jeffrey Dahmer Mind of a Monster".
This trailer is taken from the brand new documentary special, a profile of DENNIS MURPHY, the creator and senior founder of the American Basketball Association, World Hockey Association, World Team Tennis, and many other pro sports leagues, entitled "Game Changer: The Dennis Murphy Story", produced by Dr. Elliott Haimoff of Afterburner Enterprises and Randy Friend/JoAnn Fox/Jose Sanchez of Screaming Eagle Productions. This clip tells about Dennis Murphy and the driving force behind why he wanted to start a brand new pro basketball league - along with new franchises in numerous markets around the country and the new 3-point shot, as well as changing the way that team owners treated their players - in addition to creating the sudden death overtime in hockey - and the rest is history...!!! T...
A video to promote the publication of Dennis Arthur Murphy's autobiography: "Murph: The Sports Entrepreneur Man and His Leagues." Dennis Murphy is deserving of a place in the Hockey Hall of Fame and the Basketball Hall of Fame, and his friends and fans are working together to make that happen. "Murph," as he is affectionately known, is the co-founder of the American Basketball Association, the World Hockey Association, World Team Tennis, Roller Hockey International, Bobby Sox Girls Softball, the International Football League, the 6'4" & Under Basketball League (the IBA) and more.
This trailer is taken from the brand new documentary special, "Game Changer: The Dennis Murphy Story", produced by Dr. Elliott Haimoff of Afterburner Enterprises and Randy Friend/JoAnn Fox/Jose Sanchez of Screaming Eagle Productions. The clip sheds light on Dennis Murphy's creation of a new professional hockey league, the World Hockey Association, which changed the way professional hockey is played today.
We mourn last week's passing of legendary sports entrepreneur and challenger-league impresario Dennis Murphy with a special archive re-release of our two previous interviews from September 8, 2019 (Episode 129) and August 30, 2020 (Episode 179). The brainchild behind some of modern-day sports' most audacious, convention-challenging "alternative" leagues - the American Basketball Association (1967-76), World Hockey Association (1971-79), World Team Tennis (1974-78), and Roller Hockey International (1992-2001), among others - "Murph" was a one-of-a-kind hustler/pioneer who leaves a lasting mark on today's pro sports landscape. Obits: - "Dennis Murphy, Co-Founder of Pro Sports Leagues, Dies at 94" (Beth Harris, Associated Press): https://apnews.com/article/sports-basketball-busin...
The American Basketball Association was not founder Dennis Murphy’s original intent. Thwarted in his attempt to get the fast-growing city of Anaheim, CA (he was mayor of nearby Buena Park) into the fledgling American Football League during the mid-1960s, Murphy quickly pivoted his attention to basketball – reasoning that with only 12 teams in the staid, yet long-established National Basketball Association, there surely must have been room for more. “What the hell,” Murphy told author Terry Pluto in his seminal 1990 oral history Loose Balls. “The AFL had worked, hadn't it? Maybe we could force a merger with the NBA." By the end of the ABA’s ninth season in 1976, Murphy’s unwitting prescience had become reality – and along with it, a validating blueprint for how to modernize professi...
Sometimes we wonder if the wealthy people like Jeff Bezos or even the famous ones we only see on TV are really approachable if we ever see them in real life. Well here is your answer and yes, Jeff Bezos is actually approachable.
#realestateinvesting #girlboss #metaversequeen #realestatehacks #shorts #shortvideo
If we ever get around to creating a Good Seats Still Available "Hall of Fame," this week's return guest will most certainly be part of its inaugural class of inductees. Dennis Murphy (“Murph: The Sports Entrepreneur Man and His Leagues”) is a bona fide legend in sports entrepreneurial circles - a man responsible for helping found no less than four "major" game-changing leagues across the North American pro sports landscape, including the polychromatic American Basketball Association (our previous Episode 129), and this week's focus: the raucous World Hockey Association. (The others: World Team Tennis and Roller Hockey International.) This week's shorter-than-normal episode was originally intended to be our second full-length discussion with "Murph" - and our first exclusively devot...
Michael Dennis Murphy answers your business and life related questions, while playing a round of Golf at Cypress Run in Tarpon Springs, Florida! Follow Mike for more business related content! Mikes Last Video: https://youtu.be/1f1CvfNgua0 Mikes Instagram: https://www.instagram.com/realmikemurphy/?hl=en Mikes Facebook: https://www.facebook.com/RealMMurphy/?ref=bookmarks
Jon Boden is a singer, composer and musician, best known as lead singer and main arranger of Bellowhead. His first instrument is the fiddle and he is a leading proponent of “English traditional fiddle style” and also of “fiddle singing”, both of which he employs in Bellowhead, in the duo Spiers & Boden, and previously as a member of Eliza Carthy’s Ratcatchers.
To date Jon Boden has been the recipient of 11 BBC Radio 2 Folk Awards, more than any other musician.
Boden also fronts his own band the Remnant Kings, put together in 2009 to perform his post-apocalyptic song cycle Songs From The Floodplain. He has also made contributions to many other albums as a fiddler, singer and guitarist, most notably two albums with Fay Hield & The Hurricane Party.
In 2010 he launched an ambitious project to record and deliver A Folk Song A Day on line, aiming to inspire others to build a repertoire of songs and engage in social singing. All 365 songs are now available on iTunes, Spotify and YouTube, as well as on the www.afolksongaday.com website.
Murder killing lusty willing
Stealing raping family breaking
Fist faces mashing nasty bashing
Lying faking violent taking
Sin - more than actions, more than thoughts
Sin - more than feelings, more than words
Sin is what I am - my nature
Still I stand before my God
Holy, righteous and just
Hope He sees me through the blood
For I am ashes and dust
I am a man, fallen and filthy
Completely spoiled, selfish and greedy
The Son of Man, innocent and holy
Shed His blood and paid the penalty
Still I stand before my God
Holy, righteous and just
Hope He sees me through the blood
For I am ashes and dust
I am a part of holy priesthood
Completely forgiven by His Blood
I live no longer, Christ lives in me
In His name saint I can be
Still I stand before my God
Holy, righteous and just
Hope He sees me through the Blood