'+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; })); }); -->

Dave Stannard

David Samuel Benjamin Stannard (born around 1882), who went by Dave Stannard, was a journalist and advertising representative named to the Los Angeles, California, City Council in 1942 to replace Harold Harby, who had been stripped of his seat because he used a city car to go on vacation in Montana.

Biography

Stannard was born in England of American parents around 1882 and was educated in Saint Louis, Missouri. He came to Los Angeles while young and worked for newspapers in 1915—including the Los Angeles Express and Tribune—and for the Associated Press. He was employed later by an advertising agency that had the Los Angeles Department of Water and Power as one of its accounts. Living at 8932 West Adams Boulevard, at Fairfax Avenue, he was married and had one son.

City Council

Tenure

See also List of Los Angeles municipal election returns, 1943.

Council Member Harold Harby of Los Angeles City Council District 11 was ousted from his seat after a grand jury indictment and a trial. which found him guilty of using a city car to take a vacation in Colorado. The City Council had the duty to appoint a replacement to fill out Harby's term until the next election. It interviewed some twenty candidates, held several secret meetings and finally made the appointment on May 18, 1942, for the term that would end on election day in 1943. Stannard was sworn in immediately. The district covered the West Los Angeles and Venice areas.

Todd Livingston

Todd Livingston is a filmmaker and author

Biography

Livingston began his career as a comedian in the critically acclaimed trio Open Season. The group toured the U.S. and Canada, headlining clubs and colleges and becoming regulars at L.A’s Comedy Store, New York’s Comic Strip and Improv, where they would often share the stage with Jerry Seinfeld, Adam Sandler and Chris Rock.

During the slim non-touring time, Todd took gigs acting for network TV and movies, including Unsolved Mysteries and Umberto Lenzi’s cult horror favorite Hitcher in the Dark.

Livingston also co-wrote & produced and directed the supernatural comedy film So, You've Downloaded a Demon at Accidental Films and the graphic novels, mainly published by Image Comics: America jr., The Black Forest and The Wicked West, as well as The Living and The Dead, Chopper Zombie and the mini-series The Odd Squad.

Awards

The Black Forest won the Rondo Hatton Classic Horror Awards for Best Horror Comic of 2004, and in 2005 The Black Forest 2 won the award again.

Phoebe Dollar

Phoebe Dollar (born July 26, 1979) is an American actress. She is best known for playing Goth in the horror movie of same name. She produced, wrote and starred in the film Charlie's Death Wish, starring Ron Jeremy, in 2004. Dollar was inspired by James Chean's first feature Silent Scream (1999). She is currently married to Danny Sinatra of Ontario, CA.

Filmography

  • Hell's Highway
  • Creepies
  • Blood Sisters
  • Goth
  • Alien 3000
  • Charlie's Death Wish
  • Werewolf in a Women's Prison
  • References

    External links

  • Phoebe Dollar at the Internet Movie Database
  • Phoebe Dollar interview at Nanarland.com
  • Podcasts:

    • Todd Livingston @ Sweetwolf's October 15th, 2012

      Todd Livingston and his musical cohort, Brandi Hart, put on a fantastic show at Sweetwolf's restaurant, showcasing many original tunes, as well as some old bluegrass and honky-tonk favorites. Todd was a featured musician in Red Beat Music's Monday Night Music Series at Sweetwolf's restaurant in Park Slope. For more info - https://www.facebook.com/events/264008870383347/?ref=ts&fref=ts http://redbeatmusic.com/blog/ https://twitter.com/redbeatmusic

      published: 16 Oct 2012
    • "C Biscuit" performed by Todd Livingston and Kit Simon

      Recently our friend Todd Livingston stopped in the shop and sat down with Uncle Kit to pick, "C Biscuit," together. Todd is playing a Rayco Resophonic Guitar, and Kit is playing a 1936 Gibson L-10. For more information, please visit us at www.picknparlor.com

      published: 19 Aug 2015
    • Todd Livingston compares a Goldtone PBS to a Paul Beard Decophonic 57

      Todd Livingston compares a Goldtone Paul Beard Signature to a Paul Beard Decophonic 57. For more info, please visit us on the web at www.picknparlor.com.

      published: 01 Nov 2018
    • Entrepreneurial Grit with Todd Livingston

      Join host Andrew Scott, as he interviews Todd Livingston from Johnson Livingston, Utah’s top personal injury lawyers. Todd's journey from a member of our legendary program to a successful entrepreneur who shed nearly 100 pounds is nothing short of inspiring.🎧 In this episode, they discuss the power of entrepreneurial grit and the growing your company. Tune in to get inspired and learn how determination and a growth mindset can drive your success🥊 FOLLOW US - Instagram - https://www.instagram.com/legendsboxing_usa/?hl=en Facebook - https://www.facebook.com/legendsboxingusa/

      published: 25 Oct 2023
    • Fragment feat. Todd Livingston

      Fragment - bluegrass band from Slovak and Czech Republics with a special guest Todd Livingston at Silesia Folk & Country Festival, Ustron, Poland, 1. July 2007. Todd Livingston (dobro, lead voc.), Jana Mougin (bass, harmony voc.), Henrich Novak (dobro), Ondra Kozak (guitar), Petr Brandejs (banjo).

      published: 05 Nov 2007
    • Todd Livingston serves up some soul on a vintage Gibson EH-150 Lap Steel Set

      Todd Livingston summons spirits of the old lap steel masters in the following video. We just happened to have a vintage Gibson EH-150 lap steel set—amplifier and lap steel— in our shop that was recently repaired by Olde Town Pickin' Parlor luthier Todd Ayers. Olde Town Pickin' Parlor offers amplifier repair, as well as instrument repair, from our experienced staff. For more information please visit picknparlor.com.

      published: 21 May 2015
    • Team Newton Testimony with Todd Livingston

      Todd Livingston of Pierremont Title describes his experience with Jonathan Newton and his team.

      published: 28 Aug 2013
    • Scott & Todd 'Livingston Taylor Sings' (12/25) [1992]

      This audio is posted as 'Fair Use' for reference/research purposes and historical record. (see more below) 'Scott & Todd's Scam America' [1992] Scott & Todd in the Morning WPLJ-FM, NYC

      published: 24 Jun 2018
    • Todd Livingston w/ Earl Scruggs

      Todd Livingston on dobro playing "Foggy Mountain Rock" with Earl Scruggs at Rocky Grass 2009.

      published: 10 Sep 2009
    • Todd Livingston and S.A. Check Talk Casper and Rocky & Bullwinkle

      Writer Todd Livingston and writer S.A. Check talk with PREVIEWSworld's Vince Brusio about Casper and Rocky & Bullwinkle comics from American Mythology! https://previewsworld.com/catalog

      published: 25 Oct 2017
    Todd Livingston @ Sweetwolf's October 15th, 2012
    4:53

    Todd Livingston @ Sweetwolf's October 15th, 2012

    • Order:
    • Duration: 4:53
    • Uploaded Date: 16 Oct 2012
    • views: 562
    Todd Livingston and his musical cohort, Brandi Hart, put on a fantastic show at Sweetwolf's restaurant, showcasing many original tunes, as well as some old bluegrass and honky-tonk favorites. Todd was a featured musician in Red Beat Music's Monday Night Music Series at Sweetwolf's restaurant in Park Slope. For more info - https://www.facebook.com/events/264008870383347/?ref=ts&fref=ts http://redbeatmusic.com/blog/ https://twitter.com/redbeatmusic
    https://wn.com/Todd_Livingston_Sweetwolf's_October_15Th,_2012
    "C Biscuit" performed by Todd Livingston and Kit Simon
    3:22

    "C Biscuit" performed by Todd Livingston and Kit Simon

    • Order:
    • Duration: 3:22
    • Uploaded Date: 19 Aug 2015
    • views: 1319
    Recently our friend Todd Livingston stopped in the shop and sat down with Uncle Kit to pick, "C Biscuit," together. Todd is playing a Rayco Resophonic Guitar, and Kit is playing a 1936 Gibson L-10. For more information, please visit us at www.picknparlor.com
    https://wn.com/C_Biscuit_Performed_By_Todd_Livingston_And_Kit_Simon
    Todd Livingston compares a Goldtone PBS to a Paul Beard Decophonic 57
    1:18

    Todd Livingston compares a Goldtone PBS to a Paul Beard Decophonic 57

    • Order:
    • Duration: 1:18
    • Uploaded Date: 01 Nov 2018
    • views: 7970
    Todd Livingston compares a Goldtone Paul Beard Signature to a Paul Beard Decophonic 57. For more info, please visit us on the web at www.picknparlor.com.
    https://wn.com/Todd_Livingston_Compares_A_Goldtone_Pbs_To_A_Paul_Beard_Decophonic_57
    Entrepreneurial Grit with Todd Livingston
    19:07

    Entrepreneurial Grit with Todd Livingston

    • Order:
    • Duration: 19:07
    • Uploaded Date: 25 Oct 2023
    • views: 76
    Join host Andrew Scott, as he interviews Todd Livingston from Johnson Livingston, Utah’s top personal injury lawyers. Todd's journey from a member of our legendary program to a successful entrepreneur who shed nearly 100 pounds is nothing short of inspiring.🎧 In this episode, they discuss the power of entrepreneurial grit and the growing your company. Tune in to get inspired and learn how determination and a growth mindset can drive your success🥊 FOLLOW US - Instagram - https://www.instagram.com/legendsboxing_usa/?hl=en Facebook - https://www.facebook.com/legendsboxingusa/
    https://wn.com/Entrepreneurial_Grit_With_Todd_Livingston
    Fragment feat. Todd Livingston
    2:18

    Fragment feat. Todd Livingston

    • Order:
    • Duration: 2:18
    • Uploaded Date: 05 Nov 2007
    • views: 8030
    Fragment - bluegrass band from Slovak and Czech Republics with a special guest Todd Livingston at Silesia Folk & Country Festival, Ustron, Poland, 1. July 2007. Todd Livingston (dobro, lead voc.), Jana Mougin (bass, harmony voc.), Henrich Novak (dobro), Ondra Kozak (guitar), Petr Brandejs (banjo).
    https://wn.com/Fragment_Feat._Todd_Livingston
    Todd Livingston serves up some soul on a vintage Gibson EH-150 Lap Steel Set
    1:20

    Todd Livingston serves up some soul on a vintage Gibson EH-150 Lap Steel Set

    • Order:
    • Duration: 1:20
    • Uploaded Date: 21 May 2015
    • views: 3219
    Todd Livingston summons spirits of the old lap steel masters in the following video. We just happened to have a vintage Gibson EH-150 lap steel set—amplifier and lap steel— in our shop that was recently repaired by Olde Town Pickin' Parlor luthier Todd Ayers. Olde Town Pickin' Parlor offers amplifier repair, as well as instrument repair, from our experienced staff. For more information please visit picknparlor.com.
    https://wn.com/Todd_Livingston_Serves_Up_Some_Soul_On_A_Vintage_Gibson_Eh_150_Lap_Steel_Set
    Team Newton Testimony with Todd Livingston
    1:01

    Team Newton Testimony with Todd Livingston

    • Order:
    • Duration: 1:01
    • Uploaded Date: 28 Aug 2013
    • views: 43
    Todd Livingston of Pierremont Title describes his experience with Jonathan Newton and his team.
    https://wn.com/Team_Newton_Testimony_With_Todd_Livingston
    Scott & Todd 'Livingston Taylor Sings' (12/25) [1992]
    0:54

    Scott & Todd 'Livingston Taylor Sings' (12/25) [1992]

    • Order:
    • Duration: 0:54
    • Uploaded Date: 24 Jun 2018
    • views: 191
    This audio is posted as 'Fair Use' for reference/research purposes and historical record. (see more below) 'Scott & Todd's Scam America' [1992] Scott & Todd in the Morning WPLJ-FM, NYC
    https://wn.com/Scott_Todd_'Livingston_Taylor_Sings'_(12_25)_1992
    Todd Livingston w/ Earl Scruggs
    1:17

    Todd Livingston w/ Earl Scruggs

    • Order:
    • Duration: 1:17
    • Uploaded Date: 10 Sep 2009
    • views: 2296
    Todd Livingston on dobro playing "Foggy Mountain Rock" with Earl Scruggs at Rocky Grass 2009.
    https://wn.com/Todd_Livingston_W_Earl_Scruggs
    Todd Livingston and S.A. Check Talk Casper and Rocky & Bullwinkle
    4:15

    Todd Livingston and S.A. Check Talk Casper and Rocky & Bullwinkle

    • Order:
    • Duration: 4:15
    • Uploaded Date: 25 Oct 2017
    • views: 129
    Writer Todd Livingston and writer S.A. Check talk with PREVIEWSworld's Vince Brusio about Casper and Rocky & Bullwinkle comics from American Mythology! https://previewsworld.com/catalog
    https://wn.com/Todd_Livingston_And_S.A._Check_Talk_Casper_And_Rocky_Bullwinkle
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    Todd Livingston @ Sweetwolf's October 15th, 2012

    Todd Livingston and his musical cohort, Brandi Hart, put on a fantastic show at Sweetwolf's restaurant, showcasing many original tunes, as well as some old bluegrass and honky-tonk favorites. Todd was a featured musician in Red Beat Music's Monday Night Music Series at Sweetwolf's restaurant in Park Slope. For more info - https://www.facebook.com/events/264008870383347/?ref=ts&fref=ts http://redbeatmusic.com/blog/ https://twitter.com/redbeatmusic
    4:53
    Todd Livingston @ Sweetwolf's October 15th, 2012
    Todd Livingston and his musical cohort, Brandi Hart, put on a fantastic show at Sweetwolf'...
    published: 16 Oct 2012
    Play in Full Screen
    3:22
    "C Biscuit" performed by Todd Livingston and Kit Simon
    Recently our friend Todd Livingston stopped in the shop and sat down with Uncle Kit to pic...
    published: 19 Aug 2015
    Play in Full Screen
    1:18
    Todd Livingston compares a Goldtone PBS to a Paul Beard Decophonic 57
    Todd Livingston compares a Goldtone Paul Beard Signature to a Paul Beard Decophonic 57. F...
    published: 01 Nov 2018
    Play in Full Screen
    19:07
    Entrepreneurial Grit with Todd Livingston
    Join host Andrew Scott, as he interviews Todd Livingston from Johnson Livingston, Utah’s t...
    published: 25 Oct 2023
    Play in Full Screen
    2:18
    Fragment feat. Todd Livingston
    Fragment - bluegrass band from Slovak and Czech Republics with a special guest Todd Living...
    published: 05 Nov 2007
    Play in Full Screen
    1:20
    Todd Livingston serves up some soul on a vintage Gibson EH-150 Lap Steel Set
    Todd Livingston summons spirits of the old lap steel masters in the following video. We j...
    published: 21 May 2015
    Play in Full Screen
    1:01
    Team Newton Testimony with Todd Livingston
    Todd Livingston of Pierremont Title describes his experience with Jonathan Newton and his ...
    published: 28 Aug 2013
    Play in Full Screen
    0:54
    Scott & Todd 'Livingston Taylor Sings' (12/25) [1992]
    This audio is posted as 'Fair Use' for reference/research purposes and historical record. ...
    published: 24 Jun 2018
    Play in Full Screen
    1:17
    Todd Livingston w/ Earl Scruggs
    Todd Livingston on dobro playing "Foggy Mountain Rock" with Earl Scruggs at Rocky Grass 20...
    published: 10 Sep 2009
    Play in Full Screen
    4:15
    Todd Livingston and S.A. Check Talk Casper and Rocky & Bullwinkle
    Writer Todd Livingston and writer S.A. Check talk with PREVIEWSworld's Vince Brusio about ...
    published: 25 Oct 2017
    Play in Full Screen

    Dave Stannard

    David Samuel Benjamin Stannard (born around 1882), who went by Dave Stannard, was a journalist and advertising representative named to the Los Angeles, California, City Council in 1942 to replace Harold Harby, who had been stripped of his seat because he used a city car to go on vacation in Montana.

    Biography

    Stannard was born in England of American parents around 1882 and was educated in Saint Louis, Missouri. He came to Los Angeles while young and worked for newspapers in 1915—including the Los Angeles Express and Tribune—and for the Associated Press. He was employed later by an advertising agency that had the Los Angeles Department of Water and Power as one of its accounts. Living at 8932 West Adams Boulevard, at Fairfax Avenue, he was married and had one son.

    City Council

    Tenure

    See also List of Los Angeles municipal election returns, 1943.

    Council Member Harold Harby of Los Angeles City Council District 11 was ousted from his seat after a grand jury indictment and a trial. which found him guilty of using a city car to take a vacation in Colorado. The City Council had the duty to appoint a replacement to fill out Harby's term until the next election. It interviewed some twenty candidates, held several secret meetings and finally made the appointment on May 18, 1942, for the term that would end on election day in 1943. Stannard was sworn in immediately. The district covered the West Los Angeles and Venice areas.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: Goth

    Edit

    The movies leaving Netflix this month

    The Daily Post-Athenian 03 May 2025
    Stacker compiled a list of movies leaving Netflix in May 2025 ....
    Edit

    The movies leaving Hulu this month

    The Daily Post-Athenian 03 May 2025
    Stacker compiled a list of the movies leaving Hulu in May 2025 using data from Reelgood ....
    Edit

    Review: Touchingly sweet 'The Friend' is a 'dog movie' for grown-ups

    Lincoln Journal Star 03 May 2025
    The Friend” is a touchingly sweet, slyly funny “dog movie” that’s not for kids. For it is really about friendship, loss and the complicated past ... .
    Edit

    10 Worst Movies of All Time, According to Gene Siskel

    Collider 03 May 2025
    With impeccable taste, an eloquent and quite passionate style in talking about ...
    Edit

    Man waiting for takeout buys lottery ticket and wins big. ‘Scene from a movie’

    The Tribune San Luis Obispo 03 May 2025
    The Maryland man was stunned and kept scanning the winning ticket, officials said ... .
    Edit

    Even Marvel Knows Its Movies and Shows Need to Be Better

    Wall Street Journal 03 May 2025
    The superhero studio is cutting back TV production and fixing its film slate ... .
    Edit

    The New Most Expensive Movie Just Dethroned 'Star Wars: The Force Awakens' — but Its ...

    Collider 03 May 2025
    The secrecy involved in Hollywood productions means that the final budget for a major blockbuster film might not be revealed until years after its initial theatrical release ... Star Wars ... ....
    Edit

    10 Zombie Movies That Are Bangers From Start to Finish

    Collider 03 May 2025
    ... enduring sub-genres of horror is the zombie movie.
    ×