- published: 25 Dec 2022
- views: 1285341
'+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; })); }); -->
The First Epistle of Peter, usually referred to simply as First Peter and often written 1 Peter, is a book of the New Testament. The author presents himself as Peter the Apostle, and the epistle was traditionally held to have been written during his time as bishop of Rome or Bishop of Antioch, though neither title is used in the epistle. The letter is addressed to various churches in Asia Minor suffering religious persecution.
The authorship of 1 Peter has traditionally been attributed to the Apostle Peter because it bears his name and identifies him as its author (1:1). Although the text identifies Peter as its author the language, dating, style, and structure of this letter has led many scholars to conclude that this letter is pseudonymous. Many scholars are convinced that Peter was not the author of this letter because the author had to have a formal education in rhetoric/philosophy and an advanced knowledge of the Greek language.
Saint Peter (Greek: Πέτρος Petros, Syriac/Aramaic: ܫܸܡܥܘܿܢ ܟܹ݁ܐܦ݂ܵܐ, Shemayon Keppa, Hebrew: שמעון בר יונה Shim'on Bar Yona, Latin: Petrus; died c. 64 AD), also known as Simon Peter, Simeon, or Simōn, according to the New Testament, was one of the Twelve Apostles of Jesus Christ, leaders of the early Christian Church. The Roman Catholic Church considers him to be the first Pope, ordained by Jesus in the "Rock of My Church" dialogue in Matthew 16:18. The ancient Christian churches all venerate Peter as a major saint and associate him with founding the Church of Antioch and later the Church in Rome, but differ about the authority of his various successors in present-day Christianity.
The New Testament indicates that Peter was the son of John (or Jonah or Jona) and was from the village of Bethsaida in the province of Galilee or Gaulanitis. His brother Andrew was also an apostle. According to New Testament accounts, Peter was one of twelve apostles chosen by Jesus from his first disciples. Originally a fisherman, he played a leadership role and was with Jesus during events witnessed by only a few apostles, such as the Transfiguration. According to the gospels, Peter confessed Jesus as the Messiah, was part of Jesus's inner circle,thrice denied Jesus, and preached on the day of Pentecost.
St. Peter is one of the four main churches of the old town of Zürich, Switzerland, besides Grossmünster, Fraumünster and Predigerkirche.
Located next to the Lindenhof hill, site of the former Roman castle, it was built on the site of a temple to Jupiter. An early church of 10 by 7 metres is archaeologically attested for the 8th or 9th century. This building was replaced by an early Romanesque church around AD 1000, in turn replaced in 1230 by a late romanesque structure, parts of which survive. Rudolf Brun, first independent mayor of the town, was buried here in 1360. The nave was rebuilt in 1460 in Gothic style. Prior to the Reformation, St. Peter was the only parish church of the town, the rest being part of monasteries.
The current building was consecrated in 1706 as the first church built under Protestant rule. Its congregation forms part of the Evangelical Reformed Church of the Canton of Zürich. Until 1911, the steeple was manned by a fire watch. Restoration work was carried out in 1970 to 1975. The steeple's clock face has a diameter of 8.7 m, the largest church clock face in Europe. The bells date to 1880.
Daniel Manzano Salazar (born 4 December 1972), better known by his stage name Dr Kucho!, is a Spanish house DJ/record producer. He is best known for his 2005 single "Can't Stop Playing" with Gregor Salto. The song was re-released in 2014, remixed by Oliver Heldens and vocals from Ane Brun where added. The song then had success in the UK, reaching number 4 in the charts.
Dr. Kucho started in 2010 releasing “New School Tribal”, a tune with African roots and catchy chants that reached the number 26 of Beatport’s house top downloads in just one week, maintaining this position and closers for weeks. It seems that Dr. Kucho has a special drive to start each new year full of energy, as he demonstrated on January 2009 when he released new remixes of “Patricia never leaves the house”, the tune that opened him the doors of UK market in 2001, this re-release with remixes from Dr. Kucho himself, Gregor Salto, Peter Gelderblom and Mike Haddad & Royce Haven was one of the best sellers at Beatport during the beginning of the 2009.
Hey or Hey! may refer to:
Hey! is an album by Julio Iglesias. It was released in 1980 by Columbia Records. The album hit number one worldwide, and sales of the Spanish version purportedly surpassed 20 million. In 1981, Iglesias was nominated for a Grammy Award for the album under the Latin Pop Album category.
Hey! is the debut studio album by Brazilian recording artist Jullie. It was released on September 22, 2009 by Deckdisc. After writing songs for several established acts, Jullie released this album. The main theme of the songs is girl power. The songs are mostly inspired by Jullie's love of youth, rebellion, and discover who you are in 4.modern lifestyle. Musically, the album drew inspiration from pop and pop rock influenced by singers like Lily Allen, Madonna, Alanis Morissette, and its main reference, Katy Perry, directed to a feminist position. The album was praised by the young, calling Jullie as "Brazilian Katy Perry" for his music style and way of dressing. The first single "Alice" was released in April and the second single "Hey!" was released in November, 2009.
The first of Jesus' apostles, guardian of the gates of Paradise, founder of the Christian Church, the first pope in history… Peter is a key figure of the Christian religion. Yet, there remain many unsolved questions regarding his incredible life. How did he really die? Where was he buried? Why did this Saint have such an important place in the life of Jesus of Nazareth and the powers he was said to have? Today, there's an interesting twist to the mysteries that surround Saint Peter. Two large archaeological sites in Rome and Israel have unearthed unexpected discoveries, shaking up Christianity's long-held beliefs. Based on recent excavations and ongoing research, this documentary shows us the latest findings on Saint Peter and his place of burial. Enough to overturn the legends and myste...
The Story of St Peter, with David Suchet. Subscribe to Our History: https://bit.ly/3v5mKBG Saint Peter was fundamental to the spread of Christianity in the years after Jesus' death, preaching the Christian message before Saint Paul and even performing miracles. But how did a fisherman from Galilee become the first Bishop of Rome, remaining to this day the bedrock of the Catholic Church? This film was first broadcast: 03 Apr 2015 Watch More Documentaries Our Life - https://bit.ly/3A8xRMJ Our History - https://bit.ly/3rUpdhL Our World - https://bit.ly/3ftuckM Our Stories - https://bit.ly/3ynfFyk Start your journey of discovery with Our History, as we bring you eye-opening documentaries and educational programmes about our world history. We will guide you through awe-inspiring even...
They say that you act in accordance to the story you think you're living out. That is no more true for Peter than it is for us. This riveting tale of the disciple who learns what it means to suffer comes to life in new ways in this exciting exploration of The Life of Peter. 🔵 SUPPORT: https://www.patreon.com/Bibleunbound 📖 GET LOGOS BIBLE SOFTWARE: logos.com/bibleunbound 💡 LEARN MORE: https://www.thebibleunbound.com/ 📚 BUY CHRISTIAN BOOKS: https://www.christianbook.com/Christian/Books/home?event=AFF&p=1227148 🎞️ ANIMATIONS BY: https://samuelstudio.pl/ Join this channel to get access to perks: https://www.youtube.com/channel/UCBD4g77Q1iNyi5hhDjvyxVA/join Timestamps: 0:00-4:29 – Welcome to Galilee 4:30-10:25 – Follow Me 10:26-14:30 – Peter Proclaims the Christ 14:31-17:46 – The Keys of...
Beneath layers of history in the Vatican City lies the tomb of Saint Peter, the apostle. Explore its fascinating story and the groundbreaking AI technology that's making its legacy more accessible than ever. Thank you @Microsoft for sponsoring this video! Explore the digital twin of St. Peter's Basilica: https://aka.ms/VirtualBasilicaManuel Say hi on social: Patreon: https://www.patreon.com/manuelbravo Facebook: https://www.facebook.com/100291972038929 Instagram: manuelbravus Welcome to my channel! Dive into the fascinating world of architecture and urban planning as we explore the masterpieces of Ancient Rome, Egypt, the Renaissance, the Middle Ages, and more. Join me on a journey through history, design, and the stories behind iconic structures and cities. Subscribe for insightful vi...
Peter bravely followed Jesus. Here are just a few of the things he did. You can read about Peter's time with Jesus in Matthew, Mark, Luke and John. You can also find out how he lead and taught people after Jesus returned to heaven in Acts and I and II Peter. There's all kinds of cool stuff on the Kids' Club channel for you to explore and we’re always updating with brand new content. Subscribe and stick around so you never miss out on new and exciting videos that the whole family can enjoy. And be sure to like and comment as well! We’d love to hear from you.
Join me in exploring St Peter's Basilica at the Vatican and discover all the intricate details you need to know to understand the architecture and the history of this masterpiece. Like and subscribe to support my work! Say hi on social: Patreon: https://www.patreon.com/manuelbravo Facebook: https://www.facebook.com/100291972038929 Instagram: manuelbravus Welcome to my channel! Dive into the fascinating world of architecture and urban planning as we explore the masterpieces of Ancient Rome, Egypt, the Renaissance, the Middle Ages, and more. Join me on a journey through history, design, and the stories behind iconic structures and cities. Subscribe for insightful videos in multiple languages! Watch my video explaining Rome: https://youtube.com/playlist?list=PLLo5eX3ma82nx3se5vhFJirtxHZZ-...
Saint Peter is the first Pope of the Catholic Church and there remains an unbroken line of Popes from Saint Peter to Pope Francis. Though Saint Peter's birth date remains uncertain, he is believed to have died in 64 AD. Saint Peter is the patron saint of fishermen, net makers, and ship builders. He was canonized by Christ as the "rock of the church" described in Matthew chapter 16, verse 18. His feast day is June 29, however several groups honor him on February 22nd and November 18th as well. Saint Peter was born Simon Peter of Cephas. He was a fisherman who met Jesus while in his boat. He and his brother Andrew had been experiencing trouble catching fish but when Jesus saw the boats, he told them to cast their nets into deep water and He would fill them. Peter and his brother cast thei...
This episode has Arabic and Portuguese subtitles TRISAGION FILMS NEEDS YOUR SUPPORT 1. SUPPORT: If you enjoy our videos, please consider supporting our effort via PayPal or on Patreon. PayPal at - https://www.paypal.com/us/fundraiser/charity/3379869 Patreon at - https://www.patreon.com/trisagionfilms. 2. SUBSCRIBE: To be notified about future videos: https://www.youtube.com/@Trisagionfilms/featured 3. CONNECT: Join the discussion on our other social media channels. Facebook - https://www.facebook.com/TrisagionFilms Instagram - https://www.instagram.com/trisagionfilms Twitter -- https://twitter.com/trisagion_films Website - https://www.trisagionfilms.com 4. CONNECT FOR MORE: Subscribe to any of our Channels: FILMS & DOCUMENTARIES: https://www.youtube.com/@Trisagionfilms/videos TRIS...
Who was St. Peter? This Catholic Bible study excerpt brings together biblical accounts, historical evidence, Church teaching, classical art, and personal insights from Dr. Tim Gray to give a fresh perspective on Simon Peter that is immediately informative and relevant to our lives. ▶ This video is an excerpt from our program, Lectio: Peter https://lectiostudy.org/peter/ Timestamps 00:00 Introduction 4:34 Peter in Early Christian Art 11:52 Fleshing Out Peter 15:50 The First Encounters with Jesus 24:46 Bethsaida, Peter’s Hometown 34:35 Jesus in the Boat with Peter ▶ Check out the Augustine Institute: https://bit.ly/3i4kXcf ▶ Get a FREE 7 day trial of FORMED https://watch.formed.org/checkout/subscribe/purchase ▬▬▬▬▬▬▬▬▬▬▬▬▬ POPULAR PROGRAMS ▬▬▬▬▬▬▬▬▬▬▬▬▬ ▶ The Search: https://...
The First Epistle of Peter, usually referred to simply as First Peter and often written 1 Peter, is a book of the New Testament. The author presents himself as Peter the Apostle, and the epistle was traditionally held to have been written during his time as bishop of Rome or Bishop of Antioch, though neither title is used in the epistle. The letter is addressed to various churches in Asia Minor suffering religious persecution.
The authorship of 1 Peter has traditionally been attributed to the Apostle Peter because it bears his name and identifies him as its author (1:1). Although the text identifies Peter as its author the language, dating, style, and structure of this letter has led many scholars to conclude that this letter is pseudonymous. Many scholars are convinced that Peter was not the author of this letter because the author had to have a formal education in rhetoric/philosophy and an advanced knowledge of the Greek language.
I'm gonna rock your world
That's a swagging beat, boy
It's got to be funky
To the beat y'all
Throw your hands in the air, yo
And wave them like you just don't care, yo
[X2]
Throw your hands in the air, yo (everybody)
And wave them like you just don't care, yo (everybody)
Throw your hands in the air, yo (everybody)
And wave them like you just don't care, yo
Let the bass go!
Dance!
Damn them boys are crazy
Dance!
You gots to be funky
Dance on the dance floor
Everybody
[X2]
Find More lyrics at www.sweetslyrics.com
Throw your hands in the air, yo (on the dance floor)
And wave them like you just don't care, yo (everybody)
[X4]
On the dance floor
Everybody
[X2]
Hah yeah, that was cool huh?
And here we go again
Aha shake it baby
Come on now, go go go,...
Shake that groove thing
Throw your hands in the air, yo (on the dance floor)
And wave them like you just don't care, yo (everybody)
[X2]
Make it funky!
Dance [x4]