- published: 08 Dec 2020
- views: 52735
'+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; })); }); -->
Saint Columba (Irish: Colm Cille, 'church dove'; 7 December 521 – 9 June 597) was an Irish abbot and missionary credited with spreading Christianity in what is today Scotland at the start of the Hiberno-Scottish mission. He founded the important abbey on Iona, which became a dominant religious and political institution in the region for centuries. He is the Patron Saint of Derry. He was highly regarded by both the Gaels of Dál Riata and the Picts, and is remembered today as a Christian saint and one of the Twelve Apostles of Ireland.
Columba reportedly studied under some of Ireland's most prominent church figures and founded several monasteries in the country. Around 563 he and his twelve companions crossed to Dunaverty near Southend, Argyll in Kintyre before settling in Iona in Scotland, then part of the Irish kingdom of Dál Riata, where they founded a new abbey as a base for spreading Christianity among the northern Pictish kingdoms who were pagan. He remained active in Irish politics, though he spent most of the remainder of his life in Scotland. Three surviving early medieval Latin hymns may be attributed to him.
Columba is a small, faint constellation created in the late sixteenth century. Its name is Latin for dove. It is located just south of Canis Major and Lepus.
Columba was created by Dutch astronomer Petrus Plancius in 1592 in order to differentiate the 'unformed stars' of the large constellation Canis Major. Plancius first depicted Columba on the small celestial planispheres of his large wall map of 1592. It is also shown on his smaller world map of 1594 and on early Dutch celestial globes.
Plancius originally named the constellation Columba Noachi ("Noah's Dove"), referring to the dove that gave Noah the information that the Great Flood was receding. This name is found on early 17th-century celestial globes and star atlases (such as Bayer's Uranometria of 1603). Columba may also represent the dove released by Jason and the Argonauts at the Black Sea's mouth; it helped them navigate the dangerous Symplegades.
Although the Plancius is credited with the creation of Columba, the existence of a "dove" constellation was attested to by Clement of Alexandria (c. 150-215), although it is not known whether the same group of stars was contemplated. In addition, given the mythological linkage of Columba with Jason and the Argonauts, the celestial location of Columba over Puppis, part of the larger constellation once known as Argo Navis (the ship of the Argonauts), supports an ancient derivation of this constellation, despite its notable omission by Ptolemy.
The modern constellation Columba lies across two of the quadrants, symbolized by the The White Tiger of the West (西方白虎, Xī Fāng Bái Hǔ) and The Vermillion Bird of the South (南方朱雀, Nán Fāng Zhū Què), that divide the sky in traditional Chinese uranography.
The name of the western constellation in modern Chinese is 天鴿座 (tiān gē zuò), meaning "the heaven dove constellation".
The map of Chinese constellation in constellation Columba area consists of :
Columba (521–597) was an Irish prince who evangelised the Picts, and is one of the patron saints of Scotland.
Columba may also refer to:
Scotland (/ˈskɒt.lənd/; Scots: [ˈskɔt.lənd]; Scottish Gaelic: Alba [ˈal̪ˠapə]) is a country that is part of the United Kingdom and covers the northern third of the island of Great Britain. It shares a border with England to the south, and is otherwise surrounded by the Atlantic Ocean, with the North Sea to the east and the North Channel and Irish Sea to the south-west. In addition to the mainland, the country is made up of more than 790 islands, including the Northern Isles and the Hebrides.
Edinburgh, the country's capital and second-largest city, was the hub of the Scottish Enlightenment of the 18th century, which transformed Scotland into one of the commercial, intellectual, and industrial powerhouses of Europe. Glasgow, Scotland's largest city, was once one of the world's leading industrial cities and now lies at the centre of the Greater Glasgow conurbation. Scottish waters consist of a large sector of the North Atlantic and the North Sea, containing the largest oil reserves in the European Union. This has given Aberdeen, the third-largest city in Scotland, the title of Europe's oil capital.
Burnside Avenue is a main thoroughfare connecting East Hartford, Connecticut's Main Street to Manchester, Connecticut. The road is part of U.S. Route 44. It runs through a low income portion of East Hartford and is home to a significant population of Hispanics and African Americans. East Hartford Middle school is located near the center of the avenue and is next to the main campus of Goodwin College. The eastern portion of Burnside Avenue has little housing, but is significantly developed with strip malls and restaurants. The Avenue is home to two important parks in East Hartford. Martin Park in the west has a swimming pool and a skating park along with access to many of East Hartford's bike trails. The east of the avenue has an entrance to Wickham Park, a large private park containing an aviary, bike trails, hiking trails, picnic grounds, and a view of Hartford's skyline.
Before the turn of the 20th century, Burnside was colloquially considered a separate village from the rest of East Hartford. Its rough terrain and proximity to the Hockanum river led to early artifice, so that even before the industrial revolution, it was dominated by paper mills. By 1900, Burnside was developing as a streetcar suburb. Its development prior to Pratt and Whitney (1929) explains its high density relative to the post-war housing so prevalent in the remainder of the town.
Scotland is a town in Windham County, Connecticut, in the United States. As of the 2000 census, the town population was 1,556. Scotland is a predominantly rural town, with agriculture as the principal industry.
According to the United States Census Bureau, the town has a total area of 18.7 square miles (48.3 km²), of which, 18.6 square miles (48.2 km²) of it is land and 0.1 square miles (0.1 km²) of it (0.27%) is water. It was incorporated in 1857.
In 1700 Isaac Magoon purchased 1,950 acres (7.9 km2) of land from then Windham and thus began Scotland’s History. He named the town Scotland as a way of commemorating his ancestral home. Scotland was incorporated in May 1857.
The town still maintains the town meeting as its form of government with a board of selectmen. The town also has eight boards & commissions, including Inlands & Wetlands, Planning & Zoning and Board of Education.
Scotland is home to the D'Elia Antique Tool Museum. The museum was built in 2005 and is housed in the same building as the Scotland Public Library. It is the home of over 1200 antique woodworking planes dating back to the mid-18th century. Another attraction is the Samuel Huntington house which located on Huntington Rd or Route 14
Saint Columba was the monk who made Scotland. Whether he was at the birth of Scotland, or the midwife who prepared for Scotland's origins, his influence spread from Iona, to the Picts and even Saxon England. If you want to know where Scots came from, you need to know St Columba (Colm Cille) Dunkeld Cathedral is intricately linked to St Columba. Paganism gave way to the Celtic Church as part of the formation of Scotland and Saint Columba was it's root as Pictland and Dal Riata became Alba Three ways to support Scotland History Tours video productions at https://www.scotlandhistorytours.co.uk/support ...or just buy me coffee here https://www.buymeacoffee.com/ScottishBruce Buy from Caledonia to Pictland on Amazon here https://amzn.to/3mWtA94 Buy From Pictland to Alba on Amazon here http...
In episode 2, we explore the work of St Columba, the great missionary and trainer of missionaries. St Columba was originally from Ireland and worked there for many years; he was credited with raising over 300 churches. He continued this work overseas and set sail to Iona, Scotland in the year 563 with 200 of his companions. St Columba set up a school on this small barren and windswept island that had a great impact and become a central training point of the Celtic Church for several centuries. To find out more information read our extended article on Columba & Iona on our website. http://www.lineagejourney.com/reformation/reformers/columba-missionary-scotland/ En Español: https://youtu.be/UrK1Oa1yw-c #KnowYourHistory #Lineage #Journey #Iona #Columba www.lineagejourney.com Support Line...
Watch my latest history documentary here:- https://youtu.be/c3Hq6UaFQqk A brief look at how Gaelic Christianity brought literary tradition back to Britain in the wake of the Roman withdrawal in the Fifth Century AD. If you enjoyed this video and want to have a hand in the choosing of upcoming videos then please consider becoming a patron of History Time for as little as $1 a month:- http://www.patreon.com/historytimeUK —Join the History Time community on social media:- Facebook Page:- https://www.facebook.com/HistoryTimeOfficial/ Facebook Group:- https://www.facebook.com/groups/410224606007519/ Instagram:- https://www.instagram.com/historytime_ig/ Twitter:- https://twitter.com/HistoryTimeUK —I also write fiction. Like my Facebook Page to see what I’m up to:- https://www.facebook.com/pe...
Blacklit Canopy performing Columba on Bradley Stoke Radio on the 14th April 2013 Follow the show on Twitter: https://twitter.com/NewMusicOnBSR The show is done in correspondence with www.bristolrockguitar.co.uk
Have you ever considered that worry can actually be a sneaky form of idolatry? Fr Columba helps us understand why this is, and how we can beat worry. 0:00 Introduction 0:30 Trying to Control 1:26 What Can I Do? 1:53 Fear Vs Faith 3:05 The Surrender Novena 4:58 Sneaky Idolatry 6:25 Like & Subscribe! 🔴 THIS SERIES Little by Little | Episode #73 Little by Little is a weekly video series by Called to More in collaboration with the Franciscan Friars of the Renewal. Our host, Fr Columba Jordan CFR, brings you quality Catholic content with new episodes every Thursday at 6pm GMT. Be sure to subscribe! 🔴 GIVING We couldn't create this series without our supporters. If you find these videos helpful or think they might help others, please consider joining our support team below. Donate to u...
Columbia - Quevedo (Video Oficial) Q © 2023 _Volvió de estudiar en Columbia a la isla sin nada que hacer El año se le hizo largo Estudió y cumplir su deber En llamada su amiga le dice que este verano es pa' beber Solo quiere salir y de nadie depender Hasta que me conoció Ella no se lo esperaba La vi entrando en la disco Me devolvió la mirada Sonrisita nerviosa Entre besos se enfadaba Se le escapó un te quiero a la que no quería nada Hasta que me conoció Ella no se lo esperaba La vi entrando en la disco Me devolvió la mirada Sonrisita nerviosa Entre besos se enfadaba Se le escapó un te quiero a la que no quería nada Bebé los dos sabemos que es verano y que tal vez cuando termine agosto no nos volvemos a ver Pero quiero tener algo pa' cuando no estés Así que acumulemos recuerdos Cada...
Primeira música: Secreto Eterno - José Perchés Henríquez (1882 - 1939) Segunda Música: Tomaso Albinoni - Adagio in G Minor
Ensemble: Choir of Gonville & CaIus College Album: In praise of saint Columba , The sound world of the Celtic church Video: Book of Kells, IX cent. http://www.facebook.com/musicamedievale • The great sixth-century Irish saint, Columba, is perhaps best known today for his leading part in the spread of Christianity from Ireland to Scotland, where he founded the monastery at Iona. He was a scholar as well as a missionary, having studied at the major theological centre at Clonard Abbey, though no surviving texts can be ascribed to him with any certainty. His reputation in Scotland grew over the centuries, and the earliest surviving music that makes mention of him is found in the Inchcolm Antiphoner, a fourteenth-century manuscript now in Edinburgh University Library; this comes from Inchcolm ...
Columba- Fito Olivares
Saint Columba (Irish: Colm Cille, 'church dove'; 7 December 521 – 9 June 597) was an Irish abbot and missionary credited with spreading Christianity in what is today Scotland at the start of the Hiberno-Scottish mission. He founded the important abbey on Iona, which became a dominant religious and political institution in the region for centuries. He is the Patron Saint of Derry. He was highly regarded by both the Gaels of Dál Riata and the Picts, and is remembered today as a Christian saint and one of the Twelve Apostles of Ireland.
Columba reportedly studied under some of Ireland's most prominent church figures and founded several monasteries in the country. Around 563 he and his twelve companions crossed to Dunaverty near Southend, Argyll in Kintyre before settling in Iona in Scotland, then part of the Irish kingdom of Dál Riata, where they founded a new abbey as a base for spreading Christianity among the northern Pictish kingdoms who were pagan. He remained active in Irish politics, though he spent most of the remainder of his life in Scotland. Three surviving early medieval Latin hymns may be attributed to him.
[PUNK:]
You declared you would be three inches taller
You only became what we made you.
Thought you were chasing a destiny calling
You only earned what we gave you.
You fell and cried as our people were starving,
Now you know that we blame you.
You tried to walk on the trail we were carving,
Now you know that we framed you.
[G.F.:]
I'm the guy in the sky
Flying high Flashing eyes
No surprise I told lies
I'm the punk in the gutter
I'm the new president
But I grew and I bent
Don't you know? don't it show?
I'm the punk with the stutter.
My my my my my mmmm my my my.
GGGGG-g-g-g-g generation.
[PUNK:]
We tried to speak between lines of oration
You could only repeat what we told you.
Your axe belongs to a dying nation,
They don't know that we own you.
You're watching movies trying to find the feelers,
You only see what we show you.
We're the slaves of the phony leaders
Breathe the air we have blown you.
[G.F.:]
I'm the guy [etc.]
I have to be careful not to preach
I can't pretend that I can teach,
And yet I've lived your future out
By pounding stages like a clown.
And on the dance floor broken glass,
The bloody faces slowly pass,
The broken seats in empty rows,
It all belongs to me you know.
[PUNK:]
You declared [etc.]