- published: 16 Apr 2022
- views: 22938648
'+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; })); }); -->
Boogie-woogie is a musical genre that became popular during the late 1920s, but developed in African American communities in the 1870s. It was eventually extended from piano, to piano duo and trio, guitar, big band, country and western music, and gospel. While the blues traditionally expresses a variety of emotions, boogie-woogie is mainly associated with dancing. The lyrics of one of the earliest hits, "Pinetop's Boogie Woogie", consist entirely of instructions to dancers:
It is characterized by a regular left-hand bass figure, which is transposed following the chord changes.
Boogie-woogie is not strictly a solo piano style; it can accompany singers and be featured in orchestras and small combos. It is sometimes called "eight to the bar", as much of it is written in common time (4/4) time using eighth notes (quavers) (see time signature). The chord progressions are typically based on I - IV - V - I (with many formal variations of it, such as I/i - IV/iv - v/I, as well as chords that lead into these ones).
Boogie-woogie is a form of swing dance and a form of blues piano playing.
The name boogie-woogie is used mostly in Europe; the closest thing in the US is probably East Coast Swing. What today is called boogie-woogie would during the 1950s have been called rock'n'roll. The term boogie woogie is confusing; the dance can be danced to the music style called boogie-woogie but is most often danced to rock music of various kinds. The name was taken since the name rock'n'roll used in competition dance was already taken by a highly acrobatic dance form. Boogie woogie as a competition dance is a led dance, not choreographed, and can contain acrobatic elements, but not like in acrobatic rock'n'roll. The limitation of aerials are various in European countries, but by the strong Lindy Hop influence, they cannot be completely removed from the dance. Mainly the couples have to maintain some contact during the acrobatics, this rule helps to avoid moves like double/triple saltos and the like.
Boogie-woogie is a piano-based music style.
Boogie-woogie may also refer to:
Thin Lizzy are an Irish rock band formed in Dublin in 1969. Two of the founding members, drummer Brian Downey and bass guitarist and vocalist Phil Lynott, met while still in school. Lynott assumed the role of frontman and led them throughout their recording career of twelve studio albums. Thin Lizzy's most successful songs, "Whiskey in the Jar", "Jailbreak" and "The Boys Are Back in Town", were all major international hits which are still played regularly on hard rock and classic rock radio stations. After Lynott's death in 1986, various incarnations of the band have emerged over the years based initially around guitarists Scott Gorham and John Sykes, though Sykes left the band in 2009. Gorham later continued with a new line-up including Downey.
Lynott, Thin Lizzy's de facto leader, was composer or co-composer of almost all of the band's songs, and the first black Irishman to achieve commercial success in the field of rock music. Thin Lizzy boasted some of the most critically acclaimed guitarists throughout their history, with Downey and Lynott as the rhythm section, on the drums and bass guitar. As well as being multiracial, the band drew their members not only from both sides of the Irish border but also from both the Catholic and Protestant communities during The Troubles. Their music reflects a wide range of influences, including blues, soul music, psychedelic rock, and traditional Irish folk music, but is generally classified as hard rock or sometimes heavy metal. Rolling Stone magazine describes the band as distinctly hard rock, "far apart from the braying mid-70s metal pack".
Thin Lizzy is the first studio album by Irish hard rock band Thin Lizzy, released in 1971.
All songs written by Phil Lynott, except where stated.
When the album was repackaged for CD in 1990, the four tracks that comprised the rare "New Day" EP were added:
On 11 October 2010, a new remastered and expanded version of Thin Lizzy was released. This version features the following bonus tracks:
Ladyva turns up in London to meet Dr K for a second epic boogie woogie piano jam! Check out Ladyva's info/tour dates here: https://www.ladyva.com/
Ladyva happened to be passing the station piano on her way back to Switzerland…Ladyva's Website: https://www.ladyva.com/ Dr K and Ladyva PART 2: https://www.youtube.com/watch?v=_ZlFOZMPbdY
These two are both good but the male dancer is outstanding .. . . he never moves his shoulders compared to what his feet and knees are doing. This pianist is from Switzerland. He plays some of the best Boogie Woogie anywhere. He is so BIG over there, they hold a week-long Boogie Woogie contest every year and all the best players in the world are invited. In this video he is joined by the 2 amazing dancers... The male dancer even has a forties haircut. Turn up the volume, watch and give it a listen! If you experience any trouble tapping your foot to the beat, you had better hurry and schedule an appointment with your physician. FOR THOSE WHO DON'T REMEMBER, HERE IS HOW THE BOOGIE WOOGIE WAS DONE! Most people 60 and younger do not know about the BOOGIE WOOGIE and may have never...
Even though this channel is mostly focusing on shorts videos, we would like to share a few remarkable longer videos with you as well 😁 Here is the video of us dancing at the Boogie Woogie European Championship a few years ago to the tune "A New Love" by Ruth Brown 🎶 Make sure to check out and subscribe to our main YouTube Channel: https://www.youtube.com/c/SondreOlsenByeTanyaGeorgiievska/featured #sondreandtanya #dance #boogiewoogie #competition #couple
Johan Blohm from The Refreshments. Refreshments on Spotify: http://open.spotify.com/artist/31oqOoeYTFXYaENhMINVl8 ------------------------------------------------------------------------------------------------ Refreshments on iTunes http://itunes.apple.com/se/artist/the-refreshments/id429682776?l=en
Boogie Woogie Greats - The Best of Boogie Woogie, more than 2 hours of music with the greatest! https://youtu.be/pNs9Ga_TP40 boogie woogie,blues,rock and roll,hit,delta,pop records,soul,gospel,rhythm n' blues,chill out,lounge,music bar,cocktail bar,piano bar,vintage,music to relax,Chicago,honky tonk,Albert Ammons,Meade Lux Lewis,Jimmy Yancey,Greatful Dead,Louis Jordan,Puppini sisters,Jerry Lee Lewis,Benny Goodman,Tommy Dorsey,John Lee Hooker,Muddy Waters,Howlin Wolf,Bill Haley,Jazz,Blues,Jazz music,Blues music,jazz classics,hits,blues classics,jazz n blues
Piosenkę znajdziesz na playliście #BoogieWoogie - Piosenki na imprezę ➡️ https://bit.ly/MiniDiscoMIX Zasubskrybuj kanał MagicKids i bądź na bieżąco z naszymi playlistami 🔔 ➡️ https://bit.ly/MagicKidsSub Sprawdź najnowsze teledyski MagicKids: Jelonki „Chu Chu Ua” ▶️ https://youtu.be/RxLIYzl3Rd4 Panda i Banda "Idzie Lama" ▶️ https://youtu.be/9HH8qElxScg Jelonki - ZOO "Cuda-Wianki" ▶️ https://bit.ly/ZOOCudaWiankiYT Jelonki – „Czekolada” ▶️ https://bit.ly/CzekoladaChocolate Sprawdź pozostałe playlisty MagicKids Hity z sieci dla dzieci ➡️ https://bit.ly/MagicKidsHityzSieci Jelonki ➡️ https://bit.ly/JelonkiMagicKids Centrum Uśmiechu ➡️ https://bit.ly/CentrumUsmiechu Wesoła Lokomotywa ➡️ https://bit.ly/ZgadywankiRyymowankiYT Zajrzyj do sklepu MagicKids ➡️ https://bit.ly/Sklep...
Fantastic performance by Jörg Hegemann! Philharmonie Essen 2014. #PIANO #BOOGIEWOOGIE #MUSIC
Top 5 Boogie Woogie Piano Performances, check them out! ►The easiest way to learn songs on piano: http://tinyurl.com/graffity-flowkey Submit your video to the new top 5: [email protected]
President Donald Trump visited the UK, so the station piano had to have an armed guard. Time for some boogie woogie....
The best three Boogie-Woogie Couples of the world in 2013 in the fast round Final. It was a great competition in Stuttgart - Germany with excellent dancing couples. 1. Susanna Barkhald Sandberg - Thorbjorn Solvoll Urskog / Norway 2. Isabella Gregorio - Pontus Persson / Sweden 3. Agnieszka Cherubinska - Grzegorz Cherubinski / Poland
Boogie Woogie Competition at the Rock That Swing 2016 in Munich Germany. RockThatSwing.com
These two are both good but the male dancer is outstanding .. . . he never moves his shoulders compared to what his feet and knees are doing. This pianist is from Switzerland. He plays some of the best Boogie Woogie anywhere. He is so BIG over there, they hold a week-long Boogie Woogie contest every year and all the best players in the world are invited. In this video he is joined by the 2 amazing dancers... The male dancer even has a forties haircut. Turn up the volume, watch and give it a listen! If you experience any trouble tapping your foot to the beat, you had better hurry and schedule an appointment with your physician. FOR THOSE WHO DON'T REMEMBER, HERE IS HOW THE BOOGIE WOOGIE WAS DONE! Most people 60 and younger do not know about the BOOGIE WOOGIE and may have never...
25 years of SAGARIKA MUSIC ! CELEBRATE WITH US ❤️ #dotheboogiewoogie #nurseryrhyme
Learn Swing Dancing Online with Sondre & Tanya here: https://sondreandtanya.thinkific.com/ Sondre Olsen-Bye & Tanya Georgiievska winning the Boogie Woogie Main Class World Championship by the World Rock'n'Roll Confederation (WRRC) in Marseille, France. Sondre & Tanya - Facebook Page https://www.facebook.com/sondreandtanya/ Sondre & Tanya - Instagram Account https://www.instagram.com/sondretanya/ Sondre & Tanya - Website: https://sondreandtanya.com/ Original Video: https://www.youtube.com/watch?v=tnaTgNqfR98 #sondreandtanya #boogiewoogie #champions
WRRC 2019 World Cup Boogie woogie Final, slow round, in Genova (Italy) 1st: OLSEN BYE Sondre - GEORGIIEVSKA Tatiana 2nd: PÄIVINEN Juho - MUNNE Mari 3rd: LLAMAS Florent - VERON Roxane _ Tutuboogie is an online community where Boogie Woogie dancers and musicians meet and talk about their passion. Find Tutuboogie online at Instagram: https://www.instagram.com/tutuboogie/ Facebook: https://www.facebook.com/tutuboogie/ Spotify: https://open.spotify.com/user/tutuboogie Website: http://www.tutuboogie.com/ Collaborations/business: [email protected] _ Tutuboogie is powered by Max Salvato https://www.maxsalvato.com/ Want to support? I don't love coffee but I'm a fan of hot teas! https://paypal.me/massimilianosalvato
Rock That Swing Festival 2019: Killer Boogie at Deutsches Theater (2 March 2019). http://www.rockthatswing.com Filming and video editing: Kersten Hüttner & Jan-Christoph Elle -------------- Proudly sponsored by: VeconaVintage http://www.vecona-vintage.com -------------- Rock That Swing Festival on Facebook: http://www.facebook.com/RockThatSwing... http://www.facebook.com/groups/152412... -------------- Swing dancing in Munich: www.vintage-club.de Lindy Hop, Boogie Woogie, Charleston, Shag und Balboa tanzen in München: http://www.vintage-club.de
Boogie-woogie is a musical genre that became popular during the late 1920s, but developed in African American communities in the 1870s. It was eventually extended from piano, to piano duo and trio, guitar, big band, country and western music, and gospel. While the blues traditionally expresses a variety of emotions, boogie-woogie is mainly associated with dancing. The lyrics of one of the earliest hits, "Pinetop's Boogie Woogie", consist entirely of instructions to dancers:
It is characterized by a regular left-hand bass figure, which is transposed following the chord changes.
Boogie-woogie is not strictly a solo piano style; it can accompany singers and be featured in orchestras and small combos. It is sometimes called "eight to the bar", as much of it is written in common time (4/4) time using eighth notes (quavers) (see time signature). The chord progressions are typically based on I - IV - V - I (with many formal variations of it, such as I/i - IV/iv - v/I, as well as chords that lead into these ones).
Me and my buddies, we're going to get drunk
We're going to go out on the town
We'll be checking it out, slipping it in
And stepping out of line
You know, everybody likes to get a little crazy
In their own particular way
But my buddies and I, we go over the top
And we're going over again today
We'll be having a good time
Passing the by-line
Having a good time
You know it's a rock and roll pastime
It might be typical, topical or maybe tropical
That doesn't mean anything
If you're political, practical
Then it's improbable, that you do anything
But me and my buddies, we like to go crazy
We like to go over the hill
Hey, woman will you be there
Because my buddies and I will
Having a good time
Passing the by-line
We'll be having a good time
It's a rock and roll pastime
Hey Snowy
Play a bit for me
That was Snowy White
And he likes err, it in the night
The next to play
I must say, is Scott Gorham and away
We'll be having a good time
Passing the by-line
Having a good time
It's a rock and roll pastime
Let's play that one more time
Hit me with that drum Brian
Hit me as hard as you can
Oh yes, that's they way I like it
Do it again, do it again, let's do it again
Having a good time
Oh yes, I like this
Having a good time
Typical, topical, who cares?
Having a good time
Political, practical, impossible
Having a good time
Don't ask me why Jack?
Having a good time
Having a good time
Having a wild time
Having a good time
I'm slipping on the inside
Having a good time
That's fine
Having a good time
Drinking Beaujolais, no that doesn't rhyme
Having a good time
Just talking from the top of my head
Having a good time
To the bottom of your soul