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

Tom Waits

Thomas Alan Waits (born December 7, 1949) is an American singer-songwriter, composer, and actor. Waits has a distinctive voice, described by critic Daniel Durchholz as sounding like "it was soaked in a vat of bourbon, left hanging in the smokehouse for a few months, and then taken outside and run over with a car." With this trademark growl, his incorporation of pre-rock music styles such as blues, jazz, and vaudeville, and experimental tendencies verging on industrial music, Waits has built up a distinctive musical persona. He has worked as a composer for movies and musicals and has acted in supporting roles in films, including Paradise Alley and Bram Stoker's Dracula. He also starred in Jim Jarmusch's 1986 film Down by Law. He was nominated for an Academy Award for his soundtrack work on One from the Heart.

Waits' lyrics frequently present atmospheric portraits of grotesque, often seedy characters and places—although he has also shown a penchant for more conventional ballads. He has a cult following and has influenced subsequent songwriters despite having little radio or music video support. His songs are best-known through cover versions by more commercial artists: "Jersey Girl", performed by Bruce Springsteen, "Ol' '55", by the Eagles, and "Downtown Train", by Rod Stewart. Although Waits' albums have met with mixed commercial success in his native United States, they have occasionally achieved gold album sales status in other countries. He has been nominated for a number of major music awards and has won Grammy Awards for two albums, Bone Machine and Mule Variations. In 2011, Waits was inducted into the Rock and Roll Hall of Fame. He is also included among the 2010 list of Rolling Stone's 100 Greatest Singers. and the 2015 list of Rolling Stone's 100 Greatest Songwriters of All Time.

Franks

The Franks (Latin: Franci or gens Francorum) are historically first known as a group of Germanic tribes that roamed the land between the Lower and Middle Rhine in the 3rd century AD, and second as the people of Gaul who merged with the Gallo-Roman populations during succeeding centuries, passing on their name to modern-day France and becoming part of the heritage of the modern French people. Some Franks raided Roman territory, while other Frankish tribes joined the Roman troops of Gaul. In later times, Franks became the military rulers of the northern part of Roman Gaul. With the coronation of their ruler Charlemagne as Imperator Romanorum by Pope Leo III in 800 AD, he and his successors were portrayed as legitimate successors to the emperors of the Western Roman Empire.

The Salian Franks lived on Roman-held soil between the Rhine, Scheldt, Meuse, and Somme rivers in what is now Northern France, Belgium and the southern Netherlands. The kingdom was acknowledged by the Romans after 357 AD. Following the collapse of Rome in the West, the Frankish tribes were united under the Merovingians, who succeeded in conquering most of Gaul in the 6th century. The Franks became very powerful after this. The Merovingian dynasty, descendants of the Salians, founded one of the Germanic monarchies that would absorb large parts of the Western Roman Empire. The Frankish state consolidated its hold over the majority of western Europe by the end of the 8th century, developing into the Carolingian Empire. This empire would gradually evolve into the state of France and the Holy Roman Empire.

Franks (disambiguation)

The Franks were a confederacy of ancient to early medieval Germanic tribes.

Franks may also refer to:

  • Farangi, Crusaders of western Europe, and more generally a term for "western European"
  • French people
  • Franconians
  • Franks (surname)
  • USS Franks (DD-554), a United States Navy warship
  • Franc, a unit of currency (Frank in Dutch, Franken in German and Swiss German)
  • slang abbreviation of Frankfurter, as another name used to refer to Hot Dogs
  • See also

  • Name of the Franks
  • Frank (disambiguation)
  • Frank's (disambiguation)
  • Franc
  • Franconia
  • Frankokratia
  • Frank (given name)
  • Francisco
  • Francois
  • Farangi
  • Firang
  • Firangi (sword)
  • Farang
  • Barang (disambiguation)
  • Franks (surname)

    Franks is also an Anglo-American surname, derived from the given name Frank. The name is on record in Virginia from the 1660s.

    People with the surname include:

  • David Franks (loyalist) (1720 - 1794), prominent Loyalist in the American Revolution
  • David Franks (aide-de-camp) (David Salisbury Franks) (1740 - 1793), aide-de-camp of Benedict Arnold
  • Augustus Wollaston Franks (1826 - 1897), English antiquarian
  • William Sadler Franks (1851 - 1935), British astronomer
  • Wilbur R. Franks (1901 - 1986), Canadian scientist
  • Oliver Shewell Franks (1905 - 1992), English philosopher
  • Bobby Franks (1909 - 1924), murder victim
  • Herman Franks (1914 - 2009), American Major League baseball player and coach
  • Tillman Franks (1920 - 2006), American bassist and songwriter
  • Dick Franks (1920 - 2008), Head of the Secret Intelligence Service (1979-1982)
  • Cecil Franks (born 1935), former English Member of Parliament
  • Michael Franks (musician) (born 1944), US-American jazz singer/songwriter
  • Tommy Franks (born 1945), U.S. general
  • Podcasts:

    • Tom Waits - "Hold On"

      "Hold On" by @tomwaits from the album 'Mule Variations,' 1999 Directed by Matt Mahurin TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #mulevariations

      published: 10 May 2008
    • Tom Waits - Hope I don't fall in love with you

      from the album "The Early Years Vol.II" Audio HQ

      published: 09 Nov 2010
    • Tom Waits - "Downtown Train"

      "Downtown Train" by @tomwaits from the album 'Rain Dogs,' 1985 Directed by Jean Baptiste Mondino TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #raindogs

      published: 16 Aug 2017
    • Tom Waits - "Hell Broke Luce"

      "Hell Broke Luce" by @tomwaits from the album 'Bad As Me,' 2011 Directed By Matt Mahurin TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #badasme

      published: 06 Aug 2012
    • Tom Waits - "God's Away On Business"

      "God's Away On Business" by @tomwaits from the album 'Blood Money,' 2002 Directed by Jesse Dylan TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #bloodmoney

      published: 13 May 2008
    • Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]

      Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]. Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]

      published: 02 Apr 2017
    • Tom Waits - "I Don't Wanna Grow Up"

      "I Don't Wanna Grow Up" by Tom Waits from the album 'Bone Machine,' 1992 Directed by Jim Jarmusch Official Site: http://www.tomwaits.com/ Official Store: http://tomwaitsstore.com/ Facebook: https://www.facebook.com/tomwaits/ Twitter: https://twitter.com/tomwaits #tomwaits #bonemachine

      published: 24 Jun 2020
    • Tom Waits - The Heart of Saturday Night (Full Album)

      Released October 15, 1974 The Heart of Saturday Night is the second studio album by singer and songwriter Tom Waits, released in 1974 on Asylum Records. The title song was written as a tribute to Jack Kerouac. Tom Waits – vocals, piano, guitar Jim Hughart – double bass Pete Christlieb – tenor saxophone Tom Scott - clarinet Jim Gordon – drums 01 - 00:00 New Coat of Paint 02 - 03:23 San Diego Serenade 03 - 06:53 Semi Suite 04 - 10:22 Shiver Me Timbers 05 - 14:49 Diamonds on My Windshield 06 - 18:01 (Looking for) The Heart of Saturday Night 07 - 21:54 Fumblin' with the Blues 08 - 24:57 Please Call Me, Baby 09 - 29:23 Depot, Depot 10 - 33:09 Drunk on the Moon 11 - 33:17 The Ghosts of Saturday Night (After Hours at Napoleone's Pizza House)

      published: 01 Jan 2020
    • Tom Waits - Way Down in the Hole

      published: 05 Sep 2023
    • Tom Waits - "The Piano Has Been Drinking" (Live On Fernwood Tonight, 1977)

      Tom Waits performs "The Piano Has Been Drinking" from the album 'Small Change' live On Fernwood Tonight in 1977 Official Site: http://www.tomwaits.com/ Official Store: http://tomwaitsstore.com/ Facebook: https://www.facebook.com/tomwaits/ Twitter: https://twitter.com/tomwaits #tomwaits #smallchange

      published: 24 Jun 2020
    Tom Waits - "Hold On"
    4:23

    Tom Waits - "Hold On"

    • Order:
    • Duration: 4:23
    • Uploaded Date: 10 May 2008
    • views: 11068343
    "Hold On" by @tomwaits from the album 'Mule Variations,' 1999 Directed by Matt Mahurin TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #mulevariations
    https://wn.com/Tom_Waits_Hold_On
    Tom Waits - Hope I don't fall in love with you
    4:57

    Tom Waits - Hope I don't fall in love with you

    • Order:
    • Duration: 4:57
    • Uploaded Date: 09 Nov 2010
    • views: 18856904
    from the album "The Early Years Vol.II" Audio HQ
    https://wn.com/Tom_Waits_Hope_I_Don't_Fall_In_Love_With_You
    Tom Waits - "Downtown Train"
    5:08

    Tom Waits - "Downtown Train"

    • Order:
    • Duration: 5:08
    • Uploaded Date: 16 Aug 2017
    • views: 6371454
    "Downtown Train" by @tomwaits from the album 'Rain Dogs,' 1985 Directed by Jean Baptiste Mondino TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #raindogs
    https://wn.com/Tom_Waits_Downtown_Train
    Tom Waits - "Hell Broke Luce"
    4:07

    Tom Waits - "Hell Broke Luce"

    • Order:
    • Duration: 4:07
    • Uploaded Date: 06 Aug 2012
    • views: 11114057
    "Hell Broke Luce" by @tomwaits from the album 'Bad As Me,' 2011 Directed By Matt Mahurin TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #badasme
    https://wn.com/Tom_Waits_Hell_Broke_Luce
    Tom Waits - "God's Away On Business"
    3:04

    Tom Waits - "God's Away On Business"

    • Order:
    • Duration: 3:04
    • Uploaded Date: 13 May 2008
    • views: 7155320
    "God's Away On Business" by @tomwaits from the album 'Blood Money,' 2002 Directed by Jesse Dylan TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #bloodmoney
    https://wn.com/Tom_Waits_God's_Away_On_Business
    Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]
    1:14:58

    Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]

    • Order:
    • Duration: 1:14:58
    • Uploaded Date: 02 Apr 2017
    • views: 998275
    Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]. Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]
    https://wn.com/Tom_Waits_Greatest_Hits_(Full_Album)_Best_Of_Tom_Waits_Playlist_Hq_Hd
    Tom Waits - "I Don't Wanna Grow Up"
    3:34

    Tom Waits - "I Don't Wanna Grow Up"

    • Order:
    • Duration: 3:34
    • Uploaded Date: 24 Jun 2020
    • views: 1571597
    "I Don't Wanna Grow Up" by Tom Waits from the album 'Bone Machine,' 1992 Directed by Jim Jarmusch Official Site: http://www.tomwaits.com/ Official Store: http://tomwaitsstore.com/ Facebook: https://www.facebook.com/tomwaits/ Twitter: https://twitter.com/tomwaits #tomwaits #bonemachine
    https://wn.com/Tom_Waits_I_Don't_Wanna_Grow_Up
    Tom Waits - The Heart of Saturday Night  (Full Album)
    41:27

    Tom Waits - The Heart of Saturday Night (Full Album)

    • Order:
    • Duration: 41:27
    • Uploaded Date: 01 Jan 2020
    • views: 584389
    Released October 15, 1974 The Heart of Saturday Night is the second studio album by singer and songwriter Tom Waits, released in 1974 on Asylum Records. The title song was written as a tribute to Jack Kerouac. Tom Waits – vocals, piano, guitar Jim Hughart – double bass Pete Christlieb – tenor saxophone Tom Scott - clarinet Jim Gordon – drums 01 - 00:00 New Coat of Paint 02 - 03:23 San Diego Serenade 03 - 06:53 Semi Suite 04 - 10:22 Shiver Me Timbers 05 - 14:49 Diamonds on My Windshield 06 - 18:01 (Looking for) The Heart of Saturday Night 07 - 21:54 Fumblin' with the Blues 08 - 24:57 Please Call Me, Baby 09 - 29:23 Depot, Depot 10 - 33:09 Drunk on the Moon 11 - 33:17 The Ghosts of Saturday Night (After Hours at Napoleone's Pizza House)
    https://wn.com/Tom_Waits_The_Heart_Of_Saturday_Night_(Full_Album)
    Tom Waits - Way Down in the Hole
    3:32

    Tom Waits - Way Down in the Hole

    • Order:
    • Duration: 3:32
    • Uploaded Date: 05 Sep 2023
    • views: 130
    https://wn.com/Tom_Waits_Way_Down_In_The_Hole
    Tom Waits - "The Piano Has Been Drinking" (Live On Fernwood Tonight, 1977)
    5:59

    Tom Waits - "The Piano Has Been Drinking" (Live On Fernwood Tonight, 1977)

    • Order:
    • Duration: 5:59
    • Uploaded Date: 24 Jun 2020
    • views: 725967
    Tom Waits performs "The Piano Has Been Drinking" from the album 'Small Change' live On Fernwood Tonight in 1977 Official Site: http://www.tomwaits.com/ Official Store: http://tomwaitsstore.com/ Facebook: https://www.facebook.com/tomwaits/ Twitter: https://twitter.com/tomwaits #tomwaits #smallchange
    https://wn.com/Tom_Waits_The_Piano_Has_Been_Drinking_(Live_On_Fernwood_Tonight,_1977)
    • The Franks: the Birth of Modern Europe

      When the Roman Empire fell and the Franks, the barbarians, started uniting via alliances and conquests, no one could predict them to grow into a powerful kingdom that, thanks to outstanding kings — Charles Martell and Charlemagne — would conquer half of Europe. Watch the video to dive into the details of the Frankish conquest, their transformation from a kingdom into an empire, and the fall of this great power. Journey in the New World by Twin Musicom is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: http://www.twinmusicom.org/song/258/journey-in-the-new-world Artist: http://www.twinmusicom.org

      published: 03 May 2024
    • Were the Franks German or French?

      Hopefully, I was able to answer this question somewhat satisfactory! This video took waay too long to make dude... The last ones were much quicker, because I only told straight up facts, in this one I had to analyse information more, and think about whats important to include and whats not. The editing took long aswell, I am not sure how well it turned out since its very fast paced but I hope it suits the video style. Anyways glad I am done with it and I hope you find it somewhat interesting! #history #franks #germany #france

      published: 29 May 2023
    • Dark Age Superpower: Empire of the Franks | Mega-Documentary

      The Franks were arguably the most successful barbarian people that emerged in the late antique period. Though they helped bring an end to the Western Roman Empire, they later restored it under Charlemagne, even as they laid the primitive foundations for a new age and order. This is the story of the Franks, spanning six centuries of war, intrigue, and statesmanship, which saw this people rise from tribe to kingdom to empire. Chapters: 0:00 - Introduction 1:07 - Chapter I: The Merovingians 1:13:40 - Chapter II: The arms of Charlemagne 2:02:25 - Chapter III: The arts of Charlemagne 3:13:27 - Chapter IV: The ministerium of Louis the Pious 3:54:57 - Chapter V: The fall of the Carolingian Empire 4:47:16 - Conclusion Sources & further reading: - Heart of Europe: A History of the Holy Roman Em...

      published: 30 Mar 2024
    • Frank's Track

      Provided to YouTube by Universal Music Group Frank's Track · Kanye West The Life Of Pablo ℗ 2016 Getting Out Our Dreams II, LLC Released on: 2016-06-10 Producer: Kanye West Producer: Cashmere Cat Producer: Sinjin Hawke Studio Personnel, Mixer: Noah Goldstein Composer Lyricist: Kanye West Composer Lyricist: Alan Brinsmead Composer Lyricist: Lonnie Breaux Composer Lyricist: Magnus Hoiberg Auto-generated by YouTube.

      published: 24 Jul 2018
    • Franks

      Provided to YouTube by Virgin Music Group Franks · Infected Mushroom Legend of the Black Shawarma ℗ 2009 Mushroom Touring Inc Released on: 2009-09-06 Composer, Writer: Amit Duvdevani Composer, Writer: Erez Eisen Auto-generated by YouTube.

      published: 12 Jun 2020
    • How the Franks Conquered Gaul (486-532 AD)

      If you have any questions, feel free to comment them below! P.S. I know that Odoacer was not pronounced like that at the time, none of the names were. I anglicized them, except for one that I pronounced in the French way (wasn’t sure which one to go with at the time). It was a deliberate choice for the sake of simplicity. Music: Serenade for Strings in E minor by Antonín Dvořák Symphony N. 2 in E minor, Op. 27 - 1 Largo - Allegro Moderato by Sergei Rachmaninoff Swan Lake: Swan Theme by Pyotr Ilyich Tchaikovsky The Four Seasons: Summer by Antonio Vivaldi "Devil's Trill Sonata" by Giuseppe Tartini String Quartet N. 6 in F minor, Op. 80 by Felix Mendelssohn Music for Strings, Percussion & Celesta, Sz. 106, BB 114 - 3 Adagio by Béla Bartók Argonne by Zachariah Hickman Symphony No.7 in A maj...

      published: 13 Jan 2022
    • The History of the Franks to 768 CE

      In this video, I look at Frankish history from the fall of the Western Roman frontier to the accession of Charlemagne in 768 CE

      published: 15 Sep 2017
    • Scouting Report - Frank Ntilikina ima priliku karijere!

      Partizan je u roku od nekoliko sati potisao dva veoma jaka pojačanja. Šta Nilikina donosi ekipi pogledajte u novoj analizi... Postani AdmiralBet KLADIJATOR: https://admiralbet.rs/promotions/148 Pratite nas i na: Facebook: https://www.facebook.com/admiralbetsrbija Instagram: https://www.instagram.com/admiralbet_kladionica/ #ScoutingReport #FrankNtilikina #KKPartizan

      published: 21 Jun 2024
    • FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI

      FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI Public pranks are practical jokes or stunts that are performed in public places in order to make people laugh or cause a stir. They can range from simple to elaborate, and they can be done by individuals or groups. Pranks can include things like dressing up in costumes, setting up props, or creating situations that surprise or shock unsuspecting members of the public. Pranks often involve a great deal of planning and are often humorous or satirical in nature. Thumbs up 👍👍 If You Enjoyed This Video, Don't forget to SUBSCRIBE and Turning ON Notifications 🔔 for Weekly Videos. #pranks #best_pranks #Funniest

      published: 12 Apr 2023
    • Frank's Choice

      Provided to YouTube by Universal Music Group Frank's Choice · Tyler Bates The Punisher ℗ 2017 MARVEL and ABC Studios Released on: 2017-11-17 Producer, Unknown, Other: Tyler Bates Studio Personnel, Mixer: Wolfgang Matthes Associated Performer, Programming, Unknown, Other: Joanne Higginbottom Unknown, Other: Lorena Perez Batista Unknown, Other: Patricia Sullivan Composer: Tyler Bates Auto-generated by YouTube.

      published: 06 Jun 2018
    The Franks: the Birth of Modern Europe
    19:57

    The Franks: the Birth of Modern Europe

    • Order:
    • Duration: 19:57
    • Uploaded Date: 03 May 2024
    • views: 490226
    When the Roman Empire fell and the Franks, the barbarians, started uniting via alliances and conquests, no one could predict them to grow into a powerful kingdom that, thanks to outstanding kings — Charles Martell and Charlemagne — would conquer half of Europe. Watch the video to dive into the details of the Frankish conquest, their transformation from a kingdom into an empire, and the fall of this great power. Journey in the New World by Twin Musicom is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: http://www.twinmusicom.org/song/258/journey-in-the-new-world Artist: http://www.twinmusicom.org
    https://wn.com/The_Franks_The_Birth_Of_Modern_Europe
    Were the Franks German or French?
    5:01

    Were the Franks German or French?

    • Order:
    • Duration: 5:01
    • Uploaded Date: 29 May 2023
    • views: 130252
    Hopefully, I was able to answer this question somewhat satisfactory! This video took waay too long to make dude... The last ones were much quicker, because I only told straight up facts, in this one I had to analyse information more, and think about whats important to include and whats not. The editing took long aswell, I am not sure how well it turned out since its very fast paced but I hope it suits the video style. Anyways glad I am done with it and I hope you find it somewhat interesting! #history #franks #germany #france
    https://wn.com/Were_The_Franks_German_Or_French
    Dark Age Superpower: Empire of the Franks | Mega-Documentary
    4:48:16

    Dark Age Superpower: Empire of the Franks | Mega-Documentary

    • Order:
    • Duration: 4:48:16
    • Uploaded Date: 30 Mar 2024
    • views: 225316
    The Franks were arguably the most successful barbarian people that emerged in the late antique period. Though they helped bring an end to the Western Roman Empire, they later restored it under Charlemagne, even as they laid the primitive foundations for a new age and order. This is the story of the Franks, spanning six centuries of war, intrigue, and statesmanship, which saw this people rise from tribe to kingdom to empire. Chapters: 0:00 - Introduction 1:07 - Chapter I: The Merovingians 1:13:40 - Chapter II: The arms of Charlemagne 2:02:25 - Chapter III: The arts of Charlemagne 3:13:27 - Chapter IV: The ministerium of Louis the Pious 3:54:57 - Chapter V: The fall of the Carolingian Empire 4:47:16 - Conclusion Sources & further reading: - Heart of Europe: A History of the Holy Roman Empire (Peter H. Wilson) - History of the Franks (Gregory of Tours) - Chronicle of Fredegar + Continuations - Liber Historiae Francorum - The Merovingian Kingdoms (Ian Wood) - From Roman to Merovingian Gaul: A Reader (Alexander Callander Murray) - Warfare and Society in the Barbarian West 450-900 (Guy Halsall) - The Carolingian World (Marios Costambeys, Matthew Innes, Simon MacLean) - Carolingian Chronicles: Royal Frankish Annals and Nithard's Histories (Bernahrd Scholz & Barbara Rogers-Gardner) - Life of Charlemagne (Einhard) - The Decline and Fall of the Roman Empire (Edward Gibbon) - The Frankish Kingdoms Under the Carolingians 751-987 (Rosamond McKitterick) - The Demanding Drama of Louis the Pious (Courtney M. Booker) - Past Convictions: The Penance of Louis the Pious and the Decline of the Carolingians - Struggle for Empire: Kingship and Conflict Under Louis the German, 817-876 (Eric J. Goldberg)
    https://wn.com/Dark_Age_Superpower_Empire_Of_The_Franks_|_Mega_Documentary
    Frank's Track
    0:39

    Frank's Track

    • Order:
    • Duration: 0:39
    • Uploaded Date: 24 Jul 2018
    • views: 2481327
    Provided to YouTube by Universal Music Group Frank's Track · Kanye West The Life Of Pablo ℗ 2016 Getting Out Our Dreams II, LLC Released on: 2016-06-10 Producer: Kanye West Producer: Cashmere Cat Producer: Sinjin Hawke Studio Personnel, Mixer: Noah Goldstein Composer Lyricist: Kanye West Composer Lyricist: Alan Brinsmead Composer Lyricist: Lonnie Breaux Composer Lyricist: Magnus Hoiberg Auto-generated by YouTube.
    https://wn.com/Frank's_Track
    Franks
    8:06

    Franks

    • Order:
    • Duration: 8:06
    • Uploaded Date: 12 Jun 2020
    • views: 233781
    Provided to YouTube by Virgin Music Group Franks · Infected Mushroom Legend of the Black Shawarma ℗ 2009 Mushroom Touring Inc Released on: 2009-09-06 Composer, Writer: Amit Duvdevani Composer, Writer: Erez Eisen Auto-generated by YouTube.
    https://wn.com/Franks
    How the Franks Conquered Gaul (486-532 AD)
    15:38

    How the Franks Conquered Gaul (486-532 AD)

    • Order:
    • Duration: 15:38
    • Uploaded Date: 13 Jan 2022
    • views: 130969
    If you have any questions, feel free to comment them below! P.S. I know that Odoacer was not pronounced like that at the time, none of the names were. I anglicized them, except for one that I pronounced in the French way (wasn’t sure which one to go with at the time). It was a deliberate choice for the sake of simplicity. Music: Serenade for Strings in E minor by Antonín Dvořák Symphony N. 2 in E minor, Op. 27 - 1 Largo - Allegro Moderato by Sergei Rachmaninoff Swan Lake: Swan Theme by Pyotr Ilyich Tchaikovsky The Four Seasons: Summer by Antonio Vivaldi "Devil's Trill Sonata" by Giuseppe Tartini String Quartet N. 6 in F minor, Op. 80 by Felix Mendelssohn Music for Strings, Percussion & Celesta, Sz. 106, BB 114 - 3 Adagio by Béla Bartók Argonne by Zachariah Hickman Symphony No.7 in A major op.92 - 2 Allegretto by Ludwig van Beethoven Sources: A History of The Franks by Gregory of Tours, Translated by Lewis Thorpe: https://archive.org/details/AHistoryOfTheFranks/page/n3/mode/2up The Franks, from their origin as a confederacy to the establishment of the kingdom of France and the German empire by Lewis Sergeant: https://archive.org/details/franksfromtheir02serggoog/page/n10/mode/2up The Merovingian Kingdoms 450-751 by Ian Wood
    https://wn.com/How_The_Franks_Conquered_Gaul_(486_532_Ad)
    The History of the Franks to 768 CE
    30:11

    The History of the Franks to 768 CE

    • Order:
    • Duration: 30:11
    • Uploaded Date: 15 Sep 2017
    • views: 82685
    In this video, I look at Frankish history from the fall of the Western Roman frontier to the accession of Charlemagne in 768 CE
    https://wn.com/The_History_Of_The_Franks_To_768_Ce
    Scouting Report - Frank Ntilikina ima priliku karijere!
    10:02

    Scouting Report - Frank Ntilikina ima priliku karijere!

    • Order:
    • Duration: 10:02
    • Uploaded Date: 21 Jun 2024
    • views: 26139
    Partizan je u roku od nekoliko sati potisao dva veoma jaka pojačanja. Šta Nilikina donosi ekipi pogledajte u novoj analizi... Postani AdmiralBet KLADIJATOR: https://admiralbet.rs/promotions/148 Pratite nas i na: Facebook: https://www.facebook.com/admiralbetsrbija Instagram: https://www.instagram.com/admiralbet_kladionica/ #ScoutingReport #FrankNtilikina #KKPartizan
    https://wn.com/Scouting_Report_Frank_Ntilikina_Ima_Priliku_Karijere
    FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI
    3:05

    FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI

    • Order:
    • Duration: 3:05
    • Uploaded Date: 12 Apr 2023
    • views: 2804991
    FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI Public pranks are practical jokes or stunts that are performed in public places in order to make people laugh or cause a stir. They can range from simple to elaborate, and they can be done by individuals or groups. Pranks can include things like dressing up in costumes, setting up props, or creating situations that surprise or shock unsuspecting members of the public. Pranks often involve a great deal of planning and are often humorous or satirical in nature. Thumbs up 👍👍 If You Enjoyed This Video, Don't forget to SUBSCRIBE and Turning ON Notifications 🔔 for Weekly Videos. #pranks #best_pranks #Funniest
    https://wn.com/Funniest_Street_Man_Public_Pranks_|_Best_Funny_Joke_Prank_For_Laughing_|_Dhamaka_Furti
    Frank's Choice
    3:37

    Frank's Choice

    • Order:
    • Duration: 3:37
    • Uploaded Date: 06 Jun 2018
    • views: 9318106
    Provided to YouTube by Universal Music Group Frank's Choice · Tyler Bates The Punisher ℗ 2017 MARVEL and ABC Studios Released on: 2017-11-17 Producer, Unknown, Other: Tyler Bates Studio Personnel, Mixer: Wolfgang Matthes Associated Performer, Programming, Unknown, Other: Joanne Higginbottom Unknown, Other: Lorena Perez Batista Unknown, Other: Patricia Sullivan Composer: Tyler Bates Auto-generated by YouTube.
    https://wn.com/Frank's_Choice
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 2:31:09

    Tom Waits - "Hold On"

    "Hold On" by @tomwaits from the album 'Mule Variations,' 1999 Directed by Matt Mahurin TOM WAITS ▶ Store: https://tomwaits.ffm.to/store ▶ Website: http://www.tomwaits.com ▶ Facebook: https://www.facebook.com/tomwaits ▶ Instagram: https://www.instagram.com/tomwaits ▶ Twitter: https://twitter.com/TomWaits ▶ Spotify: https://spoti.fi/3LC1qg9 ▶ Apple: https://apple.co/3v3UGlz ▶ Amazon: https://amzn.to/3rWIqkK ANTI- RECORDS ▶ Store: https://antircrds.io/store ▶ Website: http://www.anti.com ▶ Facebook: https://www.facebook.com/antirecords ▶ Instagram: https://www.instagram.com/antirecords ▶ Twitter: https://twitter.com/antirecords ▶ Spotify: https://spoti.fi/3F8wIHU ▶ Apple: https://apple.co/33kCNDl #tomwaits #mulevariations
    4:23
    Tom Waits - "Hold On"
    "Hold On" by @tomwaits from the album 'Mule Variations,' 1999 Directed by Matt Mahurin T...
    published: 10 May 2008
    Play in Full Screen
    4:57
    Tom Waits - Hope I don't fall in love with you
    from the album "The Early Years Vol.II" Audio HQ
    published: 09 Nov 2010
    Play in Full Screen
    5:08
    Tom Waits - "Downtown Train"
    "Downtown Train" by @tomwaits from the album 'Rain Dogs,' 1985 Directed by Jean Baptiste M...
    published: 16 Aug 2017
    Play in Full Screen
    4:07
    Tom Waits - "Hell Broke Luce"
    "Hell Broke Luce" by @tomwaits from the album 'Bad As Me,' 2011 Directed By Matt Mahurin ...
    published: 06 Aug 2012
    Play in Full Screen
    3:04
    Tom Waits - "God's Away On Business"
    "God's Away On Business" by @tomwaits from the album 'Blood Money,' 2002 Directed by Jesse...
    published: 13 May 2008
    Play in Full Screen
    1:14:58
    Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]
    Tom Waits Greatest Hits (FULL ALBUM) - Best of Tom Waits [PLAYLIST HQ/HD]. Tom Waits Great...
    published: 02 Apr 2017
    Play in Full Screen
    3:34
    Tom Waits - "I Don't Wanna Grow Up"
    "I Don't Wanna Grow Up" by Tom Waits from the album 'Bone Machine,' 1992 Directed by Jim J...
    published: 24 Jun 2020
    Play in Full Screen
    41:27
    Tom Waits - The Heart of Saturday Night (Full Album)
    Released October 15, 1974 The Heart of Saturday Night is the second studio album by singer...
    published: 01 Jan 2020
    Play in Full Screen
    3:32
    Tom Waits - Way Down in the Hole
    published: 05 Sep 2023
    Play in Full Screen
    5:59
    Tom Waits - "The Piano Has Been Drinking" (Live On Fernwood Tonight, 1977)
    Tom Waits performs "The Piano Has Been Drinking" from the album 'Small Change' live On Fer...
    published: 24 Jun 2020
    Play in Full Screen

    Tom Waits

    Thomas Alan Waits (born December 7, 1949) is an American singer-songwriter, composer, and actor. Waits has a distinctive voice, described by critic Daniel Durchholz as sounding like "it was soaked in a vat of bourbon, left hanging in the smokehouse for a few months, and then taken outside and run over with a car." With this trademark growl, his incorporation of pre-rock music styles such as blues, jazz, and vaudeville, and experimental tendencies verging on industrial music, Waits has built up a distinctive musical persona. He has worked as a composer for movies and musicals and has acted in supporting roles in films, including Paradise Alley and Bram Stoker's Dracula. He also starred in Jim Jarmusch's 1986 film Down by Law. He was nominated for an Academy Award for his soundtrack work on One from the Heart.

    Waits' lyrics frequently present atmospheric portraits of grotesque, often seedy characters and places—although he has also shown a penchant for more conventional ballads. He has a cult following and has influenced subsequent songwriters despite having little radio or music video support. His songs are best-known through cover versions by more commercial artists: "Jersey Girl", performed by Bruce Springsteen, "Ol' '55", by the Eagles, and "Downtown Train", by Rod Stewart. Although Waits' albums have met with mixed commercial success in his native United States, they have occasionally achieved gold album sales status in other countries. He has been nominated for a number of major music awards and has won Grammy Awards for two albums, Bone Machine and Mule Variations. In 2011, Waits was inducted into the Rock and Roll Hall of Fame. He is also included among the 2010 list of Rolling Stone's 100 Greatest Singers. and the 2015 list of Rolling Stone's 100 Greatest Songwriters of All Time.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Franks: the Birth of Modern Europe
      19:57
      The Franks: the Birth of Modern Europeremove from playlist
    • Were the Franks German or French?
      5:01
      Were the Franks German or French?remove from playlist
    • Dark Age Superpower: Empire of the Franks | Mega-Documentary
      4:48:16
      Dark Age Superpower: Empire of the Franks | Mega-Documentaryremove from playlist
    • Frank's Track
      0:39
      Frank's Trackremove from playlist
    • Franks
      8:06
      Franksremove from playlist
    • How the Franks Conquered Gaul (486-532 AD)
      15:38
      How the Franks Conquered Gaul (486-532 AD)remove from playlist
    • The History of the Franks to 768 CE
      30:11
      The History of the Franks to 768 CEremove from playlist
    • Scouting Report - Frank Ntilikina ima priliku karijere!
      10:02
      Scouting Report - Frank Ntilikina ima priliku karijere!remove from playlist
    • FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI
      3:05
      FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTIremove from playlist
    • Frank's Choice
      3:37
      Frank's Choiceremove from playlist
    PLAYLIST TIME:

    The Franks: the Birth of Modern Europe

    When the Roman Empire fell and the Franks, the barbarians, started uniting via alliances and conquests, no one could predict them to grow into a powerful kingdom that, thanks to outstanding kings — Charles Martell and Charlemagne — would conquer half of Europe. Watch the video to dive into the details of the Frankish conquest, their transformation from a kingdom into an empire, and the fall of this great power. Journey in the New World by Twin Musicom is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: http://www.twinmusicom.org/song/258/journey-in-the-new-world Artist: http://www.twinmusicom.org
    19:57
    The Franks: the Birth of Modern Europe
    When the Roman Empire fell and the Franks, the barbarians, started uniting via alliances a...
    published: 03 May 2024
    Play in Full Screen
    5:01
    Were the Franks German or French?
    Hopefully, I was able to answer this question somewhat satisfactory! This video took waay ...
    published: 29 May 2023
    Play in Full Screen
    4:48:16
    Dark Age Superpower: Empire of the Franks | Mega-Documentary
    The Franks were arguably the most successful barbarian people that emerged in the late ant...
    published: 30 Mar 2024
    Play in Full Screen
    0:39
    Frank's Track
    Provided to YouTube by Universal Music Group Frank's Track · Kanye West The Life Of Pabl...
    published: 24 Jul 2018
    Play in Full Screen
    8:06
    Franks
    Provided to YouTube by Virgin Music Group Franks · Infected Mushroom Legend of the Black...
    published: 12 Jun 2020
    Play in Full Screen
    15:38
    How the Franks Conquered Gaul (486-532 AD)
    If you have any questions, feel free to comment them below! P.S. I know that Odoacer was ...
    published: 13 Jan 2022
    Play in Full Screen
    30:11
    The History of the Franks to 768 CE
    In this video, I look at Frankish history from the fall of the Western Roman frontier to t...
    published: 15 Sep 2017
    Play in Full Screen
    10:02
    Scouting Report - Frank Ntilikina ima priliku karijere!
    Partizan je u roku od nekoliko sati potisao dva veoma jaka pojačanja. Šta Nilikina donosi ...
    published: 21 Jun 2024
    Play in Full Screen
    3:05
    FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI
    FUNNIEST STREET MAN PUBLIC PRANKS | BEST FUNNY JOKE PRANK FOR LAUGHING! | DHAMAKA FURTI P...
    published: 12 Apr 2023
    Play in Full Screen
    3:37
    Frank's Choice
    Provided to YouTube by Universal Music Group Frank's Choice · Tyler Bates The Punisher ...
    published: 06 Jun 2018
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×