- published: 28 Jan 2018
- views: 619400
'+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; })); }); -->
Bryn Terfel Jones CBE (Welsh pronunciation: [ˈbrɨn ˈtɛrvɛl]; born 9 November 1965) is a Welsh bass-baritone opera and concert singer. Terfel was initially associated with the roles of Mozart, particularly Figaro and Don Giovanni, but has subsequently shifted his attention to heavier roles, especially those by Wagner.
Bryn Terfel Jones was born in Pant Glas, Caernarfonshire, North Wales, the son of a farmer. His first language is Welsh. He knew of another Welsh baritone named Bryn Jones, so chose Bryn Terfel as his professional name. He had an interest in and talent for music from a very young age. A family friend taught him how to sing, starting with traditional Welsh songs. After winning numerous competitions for his singing, he moved to London in 1984 and entered the Guildhall School of Music and Drama where he studied under Rudolf Piernay. He graduated in 1989, winning both the Kathleen Ferrier Memorial Award and the Gold Medal. The same year he came second behind Dmitri Hvorostovsky in the Cardiff BBC Singer of the World Competition, but won the Lieder Prize.
"How Great Thou Art" is a Christian hymn based on a Swedish traditional melody and a poem written by Carl Gustav Boberg (1859–1940) in Sweden in 1885. It was translated into German and then into Russian and became a hymn. It was translated into English from the Russian by English missionary Stuart K. Hine, who also added two original verses of his own. The composition was set to a Russian melody. It was popularised by George Beverly Shea and Cliff Barrows during the Billy Graham crusades. It was voted the United Kingdom's favourite hymn by BBC's Songs of Praise. "How Great Thou Art" was ranked second (after "Amazing Grace") on a list of the favourite hymns of all time in a survey by Today's Christian magazine in 2001. Notably, all English versions (a Johnny Cash live performance excluded) are in a slow, partly almost reciting manner, totally different from the uptempo style of the Swedish original.
Boberg wrote the poem "O Store Gud" (O Great God) in 1885 with nine verses.
How Great Thou Art may refer to:
How Great Thou Art is a 1996 album by country singer Willie Nelson.
The Tabernacle, also nicknamed The Tabby, is a mid-size concert hall in the U.S. city of Atlanta. The Tabernacle has been a venue for notable acts, including Guns N' Roses, The Black Crowes, Adele, Eminem, Kendrick Lamar, Robbie Williams, Alice in Chains, Bob Dylan, Prince & The New Power Generation, The 1975 and Atlanta's own Mastodon, among others. Along with music concerts, the venue also holds many comedy tours annually including Bob Saget, Lisa Lampanelli, Cheech & Chong and Stephen Lynch. The Tabernacle is managed by concert promoter Live Nation and has a seating capacity of 2,600 people.
The building is over a century old and has a varied history.
Dr. Len G. Broughton was recruited from Virginia to become pastor of Third Baptist Church in Atlanta in March 1898. Within a year he had founded a new Baptist Tabernacle church on the southwest corner of Luckie and Harris streets (now the middle of Centennial Olympic Park). Rev. Broughton was closely associated with the church in its early years, leading the local press to refer to it as "Broughton's Tabernacle," though this was never the official name of the church or any of its buildings. The new church was quite successful and had to be expanded several times to accommodate growth.
Coordinates: 53°29′56″N 2°39′25″W / 53.499°N 2.657°W / 53.499; -2.657
Bryn (which is Welsh for hill) is a component ward of the Metropolitan Borough of Wigan, Greater Manchester, England. It is part of the larger town of Ashton-in-Makerfield and is geographically indistinguishable from it, but forms a separate local council ward. The population of this ward at the 2011 census was 11,662. Served by Bryn railway station, Bryn is home to the Three Sisters Recreation Area which has been created from three large spoil tips which remain from Bryn's role in Lancashire's coal mining past. The recreation area is also the site of the Three Sisters Race Circuit, which provides race driving instruction and plays host to kart racing events and motorcycle road race meetings at clubman level.
The former Bryn (or Brynne) Hall was the seat of the Gerard family beginning in the thirteenth century or earlier. It was a "safe house" for the English Roman Catholic martyr and saint Edmund Arrowsmith and his hand was reportedly preserved there after his execution. The house, dating to the fourteenth century, has now completely collapsed and remaining stones been cleared.
Bryn is a village situated east of Llanelli in Carmarthenshire, Wales. It is part of the Llanelli Rural community, and it borders the villages of Llwynhendy, Llangennech, Dafen, Penceilogi, and Pemberton.
It is mainly a suburban area with surrounding farm land to the north and east.
Coordinates: 51°41′10″N 4°06′20″W / 51.6860°N 4.1055°W / 51.6860; -4.1055
Bass-baritone Sir Bryn Terfel sings Welsh language piece Kyrie eleison at the coronation of King Charles III. It's the first time that a coronation has featured a performance in Welsh. Subscribe: http://ab.co/1svxLVE ABC News provides around the clock coverage of news events as they break in Australia and abroad, including the latest coronavirus pandemic updates. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on Twitter: http://twi...
Bryn Terfel as Scarpia performing 'Te Deum' from Act I of Jonathan Kent's production of Tosca (2011). The Royal Opera. Find out more at http://www.roh.org.uk/productions/tosca-by-jonathan-kent Find out more: http://www.roh.org.uk/about/bp-big-screens From its famous, dissonant opening chords, Tosca conjures up a world of political instability and menace. The Chief of Police, Scarpia – one of the most malevolent villains in opera – ruthlessly pursues and tortures enemies of the state. His dark, demonic music contrasts with the expansive melodies of the idealistic lovers, Tosca and Cavaradossi, who express their passion in sublime arias. Giacomo Puccini’s dramatic work was an instant hit with audiences on its 1900 premiere and it remains one of the most performed of all operas. A candle-...
The Tabernacle Choir and Orchestra at Temple Square present "How Great Thou Art" arranged by Mack Wilberg with lyrics by Stuart K. Hine. Lyrics: O Lord my God, when I in awesome wonder Consider all the works thy hands have made, I see the stars, I hear the mighty thunder, Thy pow'r thru-out the universe displayed; Then sings my soul, my Savior God, to thee, How great thou art! How great thou art! Then sings my soul, my Savior God, to thee, How great thou art! How great thou art! And when I think that God, his Son not sparing, Sent him to die, I scarce can take it in, That on the cross my burden gladly bearing He bled and died to take away my sin, Then sings my soul, my Savior God, to thee, How great thou art! How great thou art! Then sings my soul, my Savior God, to thee, How great tho...
Music video by Andrea Bocelli, Bryn Terfel, New York Philharmonic, Alan Gilbert performing Au Fond Du Temple Saint (Live).© 2011 Sugar s.r.l., Under exclusive licence to Universal International Music B.V.
Bryn Terfel performing "Non più andrai" from Mozart's The Marriage of Figaro during the final of the 1989 BBC Cardiff Singer Of The World competition. The phenomenal showdown with contemporary Dmitri Hvorostovsky during the Main Prize final soon became known as the 'Battle of the Baritones' and, until this day, marks one of the highlights of the competition's history. The Welsh bass-baritone won the newly introduced Lieder Prize that year. Initially associated with Mozart (Figaro, Leporello and Don Giovanni in particular), he has since moved on to heavier roles as found in Puccini's and Wagner's catalogues. BBC National Orchestra of Wales, conducted by Kees Bakels Subscribe to the channel here to stay up to date with new releases https://bit.ly/SubscribeToCardiffSinger (p) 2022 BBC. T...
Terfel sings The Rose
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Bryn Terfel performs The Impossible Dream at Proms in the Park 2014. For more exclusive videos and photos from Proms in the Park 2014, go to http://www.bbc.co.uk/promsinthepark #bbc All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
Provided to YouTube by Universal Music Group Handel: Serse / Act I HWV40: "Ombra mai fu" · Bryn Terfel · Scottish Chamber Orchestra · Sir Charles Mackerras Handel: Arias ℗ 1997 Deutsche Grammophon GmbH, Berlin Released on: 1997-01-01 Producer, Executive Producer: Nigel Boon Producer, Recording Producer: Sid McLauchlan Studio Personnel, Balance Engineer: Gernot Von Schultzendorff Studio Personnel, Recording Engineer: Klaus Behrens Composer: George Frideric Handel Author, Original Text Author: Silvio Stampiglia Author, Original Text Author: Nicolo Minato Auto-generated by YouTube.
Bryn Terfel Jones CBE (Welsh pronunciation: [ˈbrɨn ˈtɛrvɛl]; born 9 November 1965) is a Welsh bass-baritone opera and concert singer. Terfel was initially associated with the roles of Mozart, particularly Figaro and Don Giovanni, but has subsequently shifted his attention to heavier roles, especially those by Wagner.
Bryn Terfel Jones was born in Pant Glas, Caernarfonshire, North Wales, the son of a farmer. His first language is Welsh. He knew of another Welsh baritone named Bryn Jones, so chose Bryn Terfel as his professional name. He had an interest in and talent for music from a very young age. A family friend taught him how to sing, starting with traditional Welsh songs. After winning numerous competitions for his singing, he moved to London in 1984 and entered the Guildhall School of Music and Drama where he studied under Rudolf Piernay. He graduated in 1989, winning both the Kathleen Ferrier Memorial Award and the Gold Medal. The same year he came second behind Dmitri Hvorostovsky in the Cardiff BBC Singer of the World Competition, but won the Lieder Prize.
Steve: How do I spark this I, don't know how to start
this I/ want to get to a few little issues on my heart
'cause I/ heard a few rumors and I seen things on the
tube and it's/ really been movin' me to deal with these
abuses this/ popular Jesus that, walks with a thievish
cat/ rocks to the beat of that, new popular Jesus rap/
how many people eat this crap, that's not Jesus black/
where the believers at, who preach and agree with that/
can I get "amen" if your followin' Him/ and not just
hollerin' about Him, talkin', but your not walkin' in/
can I get a witness if your not just a big hypocrite/
you spit with the quickness your faith is legitimate/
this is intimate, family business kid/ you can't get
wit' this, until you repent dig it/ what you ain't
feelin' it, tough God ain't feelin' sin/ but through
crucifixion He saved us when He was killin' Him/ plus
Jesus rose again, death can't hold 'em man/ believers
receive new life killin' the older man/ already told
you fam we die like soldiers man/ gotta be born again,
it's more than a culture fam/ freaks on the weekdays,
Sundays speakin' in clichés/ he may think he deceived
me, but they who can really see say/ "he's fake",
believe me, he's playin' with his life these days/ when
the games over no replays, he lays in the bed he made//
(his grave)
Hook: Please don't be deceived, these mislead the
sheep/ teach and believe what's tweaked, they'll reap
of the seed they speak/ All this haughty talk results
in body rot/ call me salty Ak' but dog, they're not the
flock// Keepin' a Jesus piece when he and Jesus beef/
she's perceived as freak but thinks that he is pleased/
Paul has properly taught that God will not be mocked/
so y'all should not be shocked when all of the folly
stops//
Steve: Yeah I said it, so, y'all can spread it too/ but
you better let them know that the Bible says it's true/
cats who disagree got half of the recipe/ that's what
gets to me the facts should set them free// but know
one's preachin' it, they ain't hearin' 'em/ no one's
speakin' it, there's too much fear in 'em/ they should
be afraid, it's easier bein' saved/ they're gonna see
the grave but we're gonna see his face// plus we've
known His ways, overflowin' grace/ they're in a
hopeless age and believe what Oprah say/ they've been
blinded cuz, facially minded bruh/ racially biased they
find ways to define him but// that's irrelevant, do you
know who He is/ can't rebel against ways that He told
you to live/ He is Deity, not just deified/ Gotta
believe Him, chief, and he won't just be defied// Read
that Bible dog, media lies to you/ speak and write
what's false they seekin' to hide the truth/ peeps are
deceivin' the youth and God's not pleased with it/
teens are believin' it too, and the called got beef
with it/ Little kanYe's in the church who ignore God's
holiness/ the Beyonce's in the skirts who conform, not
wholly dressed/ I'm not tryin' to cause beef but the
Lord's name is mocked/ I'm not lyin' you wanna keep
sinnin' don't claim His flock//