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

Joshua

Joshua /ˈɒʃuə/ or Jehoshua (Hebrew: יְהוֹשֻׁעַ Yĕhôshúʿa or Hebrew: יֵשׁוּעַ Yĕshúʿa; Aramaic: ܝܫܘܥ Isho; Greek: Ἰησοῦς, Arabic: يوشع بن نون Yūshaʿ ibn Nūn; Latin: Iosue, Turkish: Yuşa), is a figure in the Torah, being one of the spies for Israel (Num 13–14) and identified in several passages as Moses' assistant. He is the central figure in the Hebrew Bible's Book of Joshua. According to the books of Exodus, Numbers and Joshua, he became the leader of the Israelite tribes after the death of Moses. His name was Hoshe'a (הוֹשֵׁעַ) the son of Nun, of the tribe of Ephraim, but Moses called him Yehoshu'a (יְהוֹשֻעַ; Joshua in English) (Numbers 13:16) the name by which he is commonly known. The name is shortened to Yeshua in Nehemiah (Nehemiah 8:17). According to the Bible he was born in Egypt prior to the Exodus.

He was one of the twelve spies of Israel sent by Moses to explore the land of Canaan. (Numbers 13:1-16) After the death of Moses, he led the Israelite tribes in the conquest of Canaan, and allocated the land to the tribes. According to Biblical chronology, Joshua lived between 1355-1245 BCE, or sometime in the late Bronze Age. According to Joshua 24:29, Joshua died at the age of 110.

Joseph F. Girzone

Joseph Francis Girzone (May 15, 1930 November 29, 2015), sometimes known as the "Joshua Priest", was an American Catholic priest and writer, most notably as the author of the Joshua series of novels.

Life

Early life

Girzone was born in Albany, New York, to Peter, a butcher, and Margaret Girzone, the oldest of their twelve children. It was a struggling family, which experienced the shame of eviction during his childhood.<ref name=TU2 /

Girzone entered the Carmelite Order as a young man and was ordained as a priest in 1955. A few years later he chose to leave the order in favor of life as a secular priest and was accepted by the Roman Catholic Diocese of Albany. He then served at various parishes of the diocese, in the course of which he became active in advocating for the elderly. He was a driving force in the formation of the Office for the Aging of Montgomery County.<ref name=TU /

In 1981, however, Girzone was diagnosed with a heart condition which was judged to be fatal, leading him to retire from active ministry.<ref name=girzone-site / He accepted the forfeiture of any pension or medical benefits from the diocese as part of an agreement for his early retirement.<ref name=NCR /

Joshua (name)

Joshua is a Biblical given name derived from the Hebrew Yehoshua (יהושע). The name was a common alternative form of the name יֵשׁוּעַ – yēšūă which corresponds to the Greek spelling Iesous, from which, through the Latin Iesus, comes the English spelling Jesus.

As a result of the origin of the name, a majority of people before the 17th century who have this name are Jewish. A variant, truncated form of the name, Josh, gained popularity in the United States in the 1970s.

Popularity

Joshua

Information from the United Kingdom's Office for National Statistics from 2003 to 2007 shows "Joshua" among the top-five given names for newborn males. In Scotland, the popularity of "Joshua" has been substantially lower than in the rest of the United Kingdom, appearing at rank 35 in 2000 and rising to rank 22 in 2006.

Instances of use

Following is a short annotated list of persons, real and fictional, sharing "Joshua" or "Josh" or very rarely "Yehoshua" as a given name, representative of the breadth in geography and time of the names' use.

Podcasts:

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

Joshua

ALBUMS

조수아

ALBUMS

Joshua

ALBUMS

  • Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys

    Sing along with the Good News Guys in this fun and action packed version of the classic Sunday school song “Joshua Fought the Battle of Jericho”! Listen and enjoy the exciting story of Joshua as he leads the Israelites around the walls of Jericho. Through faith, obedience, and God’s amazing power, those walls came tumbling down! Woohoo! Celebrate this beloved Bible story in a way that will have your whole family marching, shouting, and praising the Lord! 🔔 Subscribe for more videos and songs from the Good News Guys! 🎥 Watch our videos ad-free on Minno, the streaming service packed with Christian content for kids ► https://gominno.com ► Thank you to Luke Thompson of ActionVFX.com for providing great advice and the visual effects for this video! 🎶 Listen to our latest album, "Battles of ...

    published: 15 Oct 2024
  • LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Sherman

    Download and Listen to "Living in the Overflow" here: https://lnk.to/LivingInTheOverflow-TheEmergingSoundVolume4 Charts: https://rebrand.ly/LivingInTheOverflow-TESVolume4-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to The Emerging Sound Volume 4 here: https://lnk.to/TheEmergingSoundVolume4 #PeopleAndSongs #TheEmergingSound #CharityGayle #JoshSherman Living In The Overflow- A modern gospel worship song for large teams and choirs Intro Oh oh oh oh oh oh oh Verse 1 Living in the overflow Covered by Your love Moving in the Holy Ghost More than enough Walking in Your freedom now I'm covered by Your grace Witnessing...

    published: 13 Aug 2018
  • AMEN [feat. Charity Gayle & Joshua Sherman]

    Download and Listen to "Amen" here: https://lnk.to/Amen-TheEmergingSoundVolume3 Charts: https://rebrand.ly/Amen-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 #PeopleAndSongs #CharityGayle #JoshSherman #TheEmergingSound AMEN Revelation 7:9-17 (VERSE 1) Behold, Jehovah, seated on the throne Abba, Father, the Well that overflows The God who was and is and shall be forevermore Holy is the Lord (CHORUS) Amen, Amen Blessing and honor and glory and power amen Amen, amen Blessing and honor and glory and power amen (VERSE 2) Behold ...

    published: 10 Feb 2017
  • LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)

    Download and Listen to "Let Revival Come" here: https://lnk.to/LetRevivalCome-TheEmergingSoundVolume3 Charts: https://rebrand.ly/LetRevivalCome-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 #PeopleAndSongs #TheEmergingSound #KevinJones #JoshSherman VERSE: Heavenly Father, I come Don’t have much to offer, Holy One I’m humbled by all that you have done PRE-C: Even though I walk through the valley, I don’t have to fear, No- You have called me from my sorrow to gladness, I have you What more could I want? CHORUS: (So) Raise my f...

    published: 08 Nov 2017
  • 50 POWERFUL Songs Composed by Prophet TB Joshua

    Greetings viewers all around the world. This video, produced by Fast Eddie, brings to you a playlist of 50 powerful praise and worship songs that were composed by Prophet TB Joshua. Putting this together was a labor of love that took many many hours to bring forth to you. Kindly subscribe, like, and share, as it will go a long way in showing your support to Prophet TB Joshua, SCOAN, Emmanuel TV, and my ministry as well. Thank you for showing your support, I can't say it enough how much I appreciate you in doing so. Again, please subscribe, like, and share. God bless you! Click here to subscribe: https://www.youtube.com/@fasteddie_?sub_confirmation=1 Facebook (new): https://www.facebook.com/fasteddieofficial Please also be sure to check out the youtube channels/social medias for the wond...

    published: 01 Feb 2024
  • Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Musso

    Download and Listen to "Psalm 100" here: https://lnk.to/Psalm100-CharityGayle-JoshuaSherman-StevenMusso Chord Charts: https://rebrand.ly/Psalm-100-Enter-In-Charts-Single Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Download and Listen to Charity Gayle's album "Lord You Are My Song" here: https://lnk.to/LordYouAreMySong-DeluxeEdition #CharityGayle #JoshSherman #StevenMusso #PeopleAndSongs #Psalms Shout Joyfully to the Lord, All the Earth Come Worshipping before the Throne of God For the Lord is good and His Love Endures Forever So we enter in, into His gates bringing words of praise and offerings of thanksgiving so we enter in,...

    published: 04 Dec 2017
  • Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)

    1. Kaya Pa Ba Natin - https://www.youtube.com/watch?v=MFpFH7G5hnI 2. Patawad Kung Minahal Kita - https://www.youtube.com/watch?v=WieSuz2q0E0 3. Kaso Ayoko Na - https://www.youtube.com/watch?v=cZgHFGiTLMw 4. Baka Di Pa Nayon - https://www.youtube.com/watch?v=0CjgLyQl_g8 5. Bibitawan Ka Na - https://www.youtube.com/watch?v=H9dm7s7u5r8 6. Di Mo Naiintindihan - https://www.youtube.com/watch?v=QYPm63fRl8s 7. Bakit Laging Ikaw - https://www.youtube.com/watch?v=lVF-T9z2pc4 8. Huling Yugto - https://www.youtube.com/watch?v=nWfYp8SUc-g 9. Darating Ang Panahon - https://www.youtube.com/watch?v=6jy_HYBOWLE 10. Daming Nangyari - https://www.youtube.com/watch?v=BkVmGniWUtY 11. Pagsuko - https://www.youtube.com/watch?v=NtMNDdlcMXw 12. Saktan Mo Lang Ako - https://www.youtube.com/watch?v=B46WGgnA98U 13. ...

    published: 23 Nov 2024
  • Spiritually Saturated Songs | Apostle Joshua Selman

    Your atmosphere is really important for you to achieve anything tangible. This video contain a high tensed spiritual songs, which is sang at different occasions by Apostle Joshua Selman of Eternity Network International, aka Koinonia. Play this video anywhere and anytime and watch how impactful it will touch your soul. The songs also have lyrics for you proper understanding and so you can sing along.

    published: 29 May 2024
  • Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16

    * DAMILOLA JOSHUA OYEWOLE Music respects the intellectual property rights of others. All materials used on this channel, including but not limited to text, images, audio, and video content, are used for the purpose of commentary, criticism, and review. * DAMILOLA JOSHUA OYEWOLE believes that this constitutes a 'fair use' of any such copyrighted material as provided for in international copyright law. If you believe that any material on this channel infringes upon your copyright, please contact us at [Your Contact Email] and provide details about your concerns. * DAMILOLA JOSHUA OYEWOLE will respond to all inquiries in a timely manner and will take appropriate action, including but not limited to removing the allegedly infringing material if necessary. Please note that [Your YouTube Chann...

    published: 09 Feb 2025
  • What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]

    Download and Listen to "What Mercy Did For Me" here: https://lnk.to/WhatMercyDidForMe-TheEmeringSoundVolume3 Charts: https://rebrand.ly/WhatMercyDidForMe-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 I was hopeless I knew i was lost Death and Darkness were my only songs I needed someone to come to rescue me And mercy heard my plea Lord, You found me You healed me You called me from the grave You gave me your real love I thank you Jesus You washed my sins away and now I'm living Like I'm forgiven You came to set me free and that...

    published: 08 Nov 2017
Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys
4:04

Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys

  • Order:
  • Duration: 4:04
  • Uploaded Date: 15 Oct 2024
  • views: 2205858
Sing along with the Good News Guys in this fun and action packed version of the classic Sunday school song “Joshua Fought the Battle of Jericho”! Listen and enjoy the exciting story of Joshua as he leads the Israelites around the walls of Jericho. Through faith, obedience, and God’s amazing power, those walls came tumbling down! Woohoo! Celebrate this beloved Bible story in a way that will have your whole family marching, shouting, and praising the Lord! 🔔 Subscribe for more videos and songs from the Good News Guys! 🎥 Watch our videos ad-free on Minno, the streaming service packed with Christian content for kids ► https://gominno.com ► Thank you to Luke Thompson of ActionVFX.com for providing great advice and the visual effects for this video! 🎶 Listen to our latest album, "Battles of the Bible," on all major music platforms ► https://found.ee/BattlesoftheBible Find merch 👕, learn about our story 📖, and see our upcoming live events 📅 on our website ► https://goodnewsguys.com 🌐 Follow us on socials for the latest updates, contests, and additional content: -Facebook► https://www.facebook.com/GoodNewsGuys -Instagram► https://www.instagram.com/good.news.guys -TikTok► https://www.tiktok.com/@goodnewsguys -X ► https://x.com/good_news_guys Learn the Good News about Jesus Christ with the Good News Guys! We create fun and engaging Christian content for children, featuring both new and classic Sunday school songs for kids' praise and worship. Our mission is to help children learn about Jesus, grow closer to God, and praise Him while having fun! Join us in spreading joy through music and engaging content. So come on, let’s praise the Lord together! 🎶🌟 Thank you for watching!
https://wn.com/Joshua_Fought_The_Battle_Of_Jericho_🗣️🎺🧱⚔️_|_Good_News_Guys
LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Sherman
4:40

LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Sherman

  • Order:
  • Duration: 4:40
  • Uploaded Date: 13 Aug 2018
  • views: 4302293
Download and Listen to "Living in the Overflow" here: https://lnk.to/LivingInTheOverflow-TheEmergingSoundVolume4 Charts: https://rebrand.ly/LivingInTheOverflow-TESVolume4-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to The Emerging Sound Volume 4 here: https://lnk.to/TheEmergingSoundVolume4 #PeopleAndSongs #TheEmergingSound #CharityGayle #JoshSherman Living In The Overflow- A modern gospel worship song for large teams and choirs Intro Oh oh oh oh oh oh oh Verse 1 Living in the overflow Covered by Your love Moving in the Holy Ghost More than enough Walking in Your freedom now I'm covered by Your grace Witnessing the healing pow'r We have been changed Chorus Bless the Lord O my soul I am living in the overflow Bless the Lord O my soul I am living in the overflow Verse 2 God You are the Sovereign One You've given us Your name We declare Your Kingdom come Forever You reign Living in the overflow The bound are now set free Ev'rywhere we go we see the victory Bridge Oh Amazing God Your Spirit falls And now we walk in miracles Bridge Miracles miracles (REPEAT) Pour it out pour it out (REPEAT) Thank you Lord thank you Lord (REPEAT) CCLI Song # 7117269 Charity Gayle | Desiree Sherman | Joshua Sherman | Lara Landon | Steven Musso | The Emerging Sound © 2017 Tent Peg Music (div. of New Nation Music [Admin. by Music Services, Inc.]) The Emerging Sound Publishing (div. of New Nation Music [Admin. by Music Services, Inc.])
https://wn.com/Living_In_The_Overflow_Ft_Charity_Gayle_Joshua_Sherman
AMEN [feat. Charity Gayle & Joshua Sherman]
6:29

AMEN [feat. Charity Gayle & Joshua Sherman]

  • Order:
  • Duration: 6:29
  • Uploaded Date: 10 Feb 2017
  • views: 9415860
Download and Listen to "Amen" here: https://lnk.to/Amen-TheEmergingSoundVolume3 Charts: https://rebrand.ly/Amen-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 #PeopleAndSongs #CharityGayle #JoshSherman #TheEmergingSound AMEN Revelation 7:9-17 (VERSE 1) Behold, Jehovah, seated on the throne Abba, Father, the Well that overflows The God who was and is and shall be forevermore Holy is the Lord (CHORUS) Amen, Amen Blessing and honor and glory and power amen Amen, amen Blessing and honor and glory and power amen (VERSE 2) Behold the Way, the Truth, and the Life Perfect, Savior, The Blood that washed us white The God who was and is and shall be forevermore Holy is the Lord (BRIDGE) Holiness has a name and it’s Jesus Victory has a name and it’s Jesus The Word has a name and it’s Jesus Redemption has a name and it’s Jesus The Emerging Sound Publishing / BMI (admin Music Services) All Rights Reserved www.theemergingsound.com Produced by Sean Carter Video by Cameron Smith
https://wn.com/Amen_Feat._Charity_Gayle_Joshua_Sherman
LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)
6:12

LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)

  • Order:
  • Duration: 6:12
  • Uploaded Date: 08 Nov 2017
  • views: 6563024
Download and Listen to "Let Revival Come" here: https://lnk.to/LetRevivalCome-TheEmergingSoundVolume3 Charts: https://rebrand.ly/LetRevivalCome-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 #PeopleAndSongs #TheEmergingSound #KevinJones #JoshSherman VERSE: Heavenly Father, I come Don’t have much to offer, Holy One I’m humbled by all that you have done PRE-C: Even though I walk through the valley, I don’t have to fear, No- You have called me from my sorrow to gladness, I have you What more could I want? CHORUS: (So) Raise my faith a little higher Set my spirit on fire Lord, we’re asking You to move Cause You’re the God of Restoration The One who gives salvation Lord, Let revival come, Let revival come VERSE 2: You are the God who calms the sea The same God who healeth me You are the One who makes me strong BRIDGE: x4 Revive me Revive me with the Joy that You bring Joy that You bring CHORUS 2: (So I) Raise my hands a little higher Now my spirit’s on fire Lord, we’re asking You to move 'Cause You’re the God of Restoration The One who gives salvation Lord, Let revival come, Let revival come CCLI Song # 7087640 Joshua Sherman | Kaleb Frazier | Kevin Jones | The Emerging Sound © 2016 Tent Peg Music (div. of New Nation Music [Admin. by Music Services, Inc.]) The Emerging Sound Publishing (div. of New Nation Music [Admin. by Music Services, Inc.]) Touched By A Fire Music (div. of New Nation Music [Admin. by Music Services, Inc.])
https://wn.com/Let_Revival_Come_(Revive_Me)_(Feat_Kevin_Jones,_Joshua_Sherman_The_Emerging_Sound)
50 POWERFUL Songs Composed by Prophet TB Joshua
7:56:00

50 POWERFUL Songs Composed by Prophet TB Joshua

  • Order:
  • Duration: 7:56:00
  • Uploaded Date: 01 Feb 2024
  • views: 579852
Greetings viewers all around the world. This video, produced by Fast Eddie, brings to you a playlist of 50 powerful praise and worship songs that were composed by Prophet TB Joshua. Putting this together was a labor of love that took many many hours to bring forth to you. Kindly subscribe, like, and share, as it will go a long way in showing your support to Prophet TB Joshua, SCOAN, Emmanuel TV, and my ministry as well. Thank you for showing your support, I can't say it enough how much I appreciate you in doing so. Again, please subscribe, like, and share. God bless you! Click here to subscribe: https://www.youtube.com/@fasteddie_?sub_confirmation=1 Facebook (new): https://www.facebook.com/fasteddieofficial Please also be sure to check out the youtube channels/social medias for the wonderful and gifted singers musicians from this playlist. Prophetess Anne - @OfficialprophetessAnne Evangelist Bose - @kessMusicProduction Cetrick Depina - @CetrickDepina Anu Elizabeth - @anuelizabethofficial2274 Michael Kodua - @michaelkodua3175 Nii Soul - @niisoul Visit the great ministers of God that have come from SCOAN: @CcoanThessalonicaMinistries @christopherorjiministriescojim @wisemandanielministries @johnchiministries @TheUOGOfficial @GodsOwnGraceMissionTV @GodsHeartTV @OfficialJustinRees @rikhardhart (kindly shoot me a message through FB or IG with youtube links if I'm missing singers from the first list -- I didn't find some of them) 0:00:00 Spirit Pray Through Me 0:07:45 Holy Spirit Breathe in Me 0:18:34 Take More of Me 0:27:17 My Heart Hear the Voice of God 0:35:23 Abba Father 0:48:27 Come and Dwell 0:57:13 Locate Me Lord in Your Mercy 1:16:38 Command Your Healing on Me 1:27:22 Fall Afresh on Me 1:33:14 Jesus of Nazareth 1:43:15 Liberate My Spirit 1:54:43 Free My Heart 2:01:55 Because of Christ 2:12:43 Let It Flow 2:18:09 I Love You Lord 2:26:28 Come Lord Restore Us 2:31:09 Break the Chains 2:42:29 I Speak Your Name 2:52:26 Sins Power Over Me is Broken 3:09:39 You Reign on High 3:22:16 Will and Purpose of God 3:32:08 Why Should I Fear 3:47:23 Welcome to My Heart 3:58:03 Acknowledge God 4:05:23 So Good 4:19:23 Draw My Heart 4:26:31 The Great Provider 4:35:32 Reflect on God’s Mercies 4:42:15 When We Give We Receive 4:46:35 Free Access 4:54:25 Son of David Have Mercy 4:59:41 Open My Heart 5:08:06 Obedience Is Key 5:23:59 No One Like You 5:32:23 My Life is Sealed 5:42:25 My Helper (Oluranlowo) 5:51:24 Good Morning 6:01:11 Lighten the Word 6:15:48 Let Your Will Be Done 6:21:13 Jesus Went for Us 6:30:29 Be Still 6:37:26 I'm Loved by God 6:43:20 I Surrender to Your Will 6:50:22 I Am Free 6:58:25 Hallelujah 7:07:15 Hail Yahweh 7:25:55 Press in to Touch Jesus 7:39:48 I Will Be With You 7:44:28 You Are a Solution 7:48:16 My Past Is Over #scoan #emmanueltv #prophettbjoshua #tbjoshua #tbjoshualegacy #tbj #evelynjoshua #scoanthessalonica
https://wn.com/50_Powerful_Songs_Composed_By_Prophet_Tb_Joshua
Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Musso
4:21

Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Musso

  • Order:
  • Duration: 4:21
  • Uploaded Date: 04 Dec 2017
  • views: 1716426
Download and Listen to "Psalm 100" here: https://lnk.to/Psalm100-CharityGayle-JoshuaSherman-StevenMusso Chord Charts: https://rebrand.ly/Psalm-100-Enter-In-Charts-Single Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Download and Listen to Charity Gayle's album "Lord You Are My Song" here: https://lnk.to/LordYouAreMySong-DeluxeEdition #CharityGayle #JoshSherman #StevenMusso #PeopleAndSongs #Psalms Shout Joyfully to the Lord, All the Earth Come Worshipping before the Throne of God For the Lord is good and His Love Endures Forever So we enter in, into His gates bringing words of praise and offerings of thanksgiving so we enter in, to bless His name lifting holy hands in honor of our King So heavenly to walk into Your courts Jesus, You're the One that we adore Your Majesty, we bow before You Lord For the Lord is good and His love endures forever Omnipotent Amazing Our God will reign forever Magnificent, breathtaking Our God will reign forever CCLI Song # 7099052 Charity Gayle | Joshua Sherman | Laurel Taylor | Steven Musso © 2017 Tent Peg Music (div. of New Nation Music [Admin. by Music Services, Inc.])
https://wn.com/Psalm_100_(Enter_In)_Feat_Joshua_Sherman,_Charity_Gayle,_Steven_Musso
Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)
1:04:40

Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)

  • Order:
  • Duration: 1:04:40
  • Uploaded Date: 23 Nov 2024
  • views: 282035
1. Kaya Pa Ba Natin - https://www.youtube.com/watch?v=MFpFH7G5hnI 2. Patawad Kung Minahal Kita - https://www.youtube.com/watch?v=WieSuz2q0E0 3. Kaso Ayoko Na - https://www.youtube.com/watch?v=cZgHFGiTLMw 4. Baka Di Pa Nayon - https://www.youtube.com/watch?v=0CjgLyQl_g8 5. Bibitawan Ka Na - https://www.youtube.com/watch?v=H9dm7s7u5r8 6. Di Mo Naiintindihan - https://www.youtube.com/watch?v=QYPm63fRl8s 7. Bakit Laging Ikaw - https://www.youtube.com/watch?v=lVF-T9z2pc4 8. Huling Yugto - https://www.youtube.com/watch?v=nWfYp8SUc-g 9. Darating Ang Panahon - https://www.youtube.com/watch?v=6jy_HYBOWLE 10. Daming Nangyari - https://www.youtube.com/watch?v=BkVmGniWUtY 11. Pagsuko - https://www.youtube.com/watch?v=NtMNDdlcMXw 12. Saktan Mo Lang Ako - https://www.youtube.com/watch?v=B46WGgnA98U 13. Hindi Ko Sadya - https://www.youtube.com/watch?v=qOt9o443MYw 14. Iniwan Mo - https://www.youtube.com/watch?v=3wNmrIEcsNg 15. Ano Ba Tayo - https://www.youtube.com/watch?v=UJjDjD742bw 16. Ayokong Maniwala - https://www.youtube.com/watch?v=X1rxQMNKgqU Like & Subscribe for more Music like this!!!
https://wn.com/Joshua_Mari_Nonstop_Broken_Hearted_Songs_2024_(1Hr_Playlist)
Spiritually Saturated Songs | Apostle Joshua Selman
57:48

Spiritually Saturated Songs | Apostle Joshua Selman

  • Order:
  • Duration: 57:48
  • Uploaded Date: 29 May 2024
  • views: 778514
Your atmosphere is really important for you to achieve anything tangible. This video contain a high tensed spiritual songs, which is sang at different occasions by Apostle Joshua Selman of Eternity Network International, aka Koinonia. Play this video anywhere and anytime and watch how impactful it will touch your soul. The songs also have lyrics for you proper understanding and so you can sing along.
https://wn.com/Spiritually_Saturated_Songs_|_Apostle_Joshua_Selman
Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16
56:27

Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16

  • Order:
  • Duration: 56:27
  • Uploaded Date: 09 Feb 2025
  • views: 112
* DAMILOLA JOSHUA OYEWOLE Music respects the intellectual property rights of others. All materials used on this channel, including but not limited to text, images, audio, and video content, are used for the purpose of commentary, criticism, and review. * DAMILOLA JOSHUA OYEWOLE believes that this constitutes a 'fair use' of any such copyrighted material as provided for in international copyright law. If you believe that any material on this channel infringes upon your copyright, please contact us at [Your Contact Email] and provide details about your concerns. * DAMILOLA JOSHUA OYEWOLE will respond to all inquiries in a timely manner and will take appropriate action, including but not limited to removing the allegedly infringing material if necessary. Please note that [Your YouTube Channel Name] cannot be held responsible for the actions of its users, as comments and content submitted by others are beyond our control. * DAMILOLA JOSHUA OYEWOLE makes no representations or warranties regarding the accuracy, completeness, or availability of third-party content linked or embedded on this channel. The inclusion of any such links or content does not imply endorsement or recommendation. * DAMILOLA JOSHUA OYEWOLE does not own the rights to any third-party content used on this channel unless expressly stated. All third-party content belongs to its respective owners and is used under the principles of fair use. * DAMILOLA JOSHUA OYEWOLE encourages viewers to support the original creators by purchasing or licensing their content where applicable. * This copyright disclaimer is subject to change without notice. Please check this page regularly for updates Thank you for understanding and for being a part of the DAMILOLA JOSHUA OYEWOLE YouTube community. ABOUT ME .... UK based Music  Minister Damilola Joshua Oyewole is an anointed psalmist, a songwriter and a producer. He has a proven ministry in Praise and Worship and he is specially called to be God’s voice of healing and encouragement through psalms, hymns and spiritual songs.   Damilola Joshua Oyewole' s passion  is to see God’s children having a deep intimacy in worship with their maker. He also loves to create an atmosphere of worship that encourages praying in tongues.  He launched his Debut album, “ Into His Presence” in June 2010. He has  also released other singles like Help Me, New Song in my heart and it's not by power. AfriEuromerican Praise 2019 and more coming. These are available on all major outlets online.  He is currently the Music Director of RCCG Victory House, London
https://wn.com/Deep_Soaking_Worship_By_Minister_Damilola_Joshua_Oyewole_Live_At_Rccg_The_Kings_Palace_Katy_Texas_16
What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]
4:15

What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]

  • Order:
  • Duration: 4:15
  • Uploaded Date: 08 Nov 2017
  • views: 19328080
Download and Listen to "What Mercy Did For Me" here: https://lnk.to/WhatMercyDidForMe-TheEmeringSoundVolume3 Charts: https://rebrand.ly/WhatMercyDidForMe-TESVolume3-Charts Follow us on Instagram: https://pands.video/insta Listen to us on Spotify: https://pands.video/psspotify Visit our Facebook: https://pands.video/Facebook ► SUBSCRIBE NOW - http://pands.video/subscribe ◄ Listen to "The Emerging Sound Volume 3" here: https://lnk.to/TheEmergingSoundVolume3 I was hopeless I knew i was lost Death and Darkness were my only songs I needed someone to come to rescue me And mercy heard my plea Lord, You found me You healed me You called me from the grave You gave me your real love I thank you Jesus You washed my sins away and now I'm living Like I'm forgiven You came to set me free and that's what Your mercy did for me You gave beauty for my guilty stains and now I'm living day to day by His grace so excuse me if I can't contain my praise cause I know that I've been saved Lord, You found me You healed me You called me from the grave You gave me your real love I thank you Jesus You washed my sins away and now I'm living Like I'm forgiven You came to set me free and that's what Your mercy did for me And every morning mercy will restore me I will proclaim and even if the world may fall before me I will proclaim Lord, You found me You healed me You called me from the grave You gave me your real love I thank you Jesus You washed my sins away and now I'm living Like I'm forgiven You came to set me free and that's what Your mercy did for me That's what Your mercy did for me CCLI Song # 7088252 Albert E. Brumley | Crystal Yates | Drew Ley | Joshua Sherman | Micah Tyler | The Emerging Sound © 2016 Albert E. Brumley And Sons (Admin. by ClearBox Rights, LLC) New Hope Road Music (div. of New Nation Music [Admin. by Music Services, Inc.]) Tent Peg Music (div. of New Nation Music [Admin. by Music Services, Inc.]) The Emerging Sound Publishing (div. of New Nation Music [Admin. by Music Services, Inc.]) Fair Trade Global Songs (Fair Trade Music Publishing [c/o Essential Music Publishing LLC]) #PeopleAndSongs #TheEmergingSound #MicahTyler #CrystalYates #JoshSherman
https://wn.com/What_Mercy_Did_For_Me_Feat._Crystal_Yates_Micah_Tyler_Joshua_Sherman
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys
    4:04
    Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guysremove from playlist
  • LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Sherman
    4:40
    LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Shermanremove from playlist
  • AMEN [feat. Charity Gayle & Joshua Sherman]
    6:29
    AMEN [feat. Charity Gayle & Joshua Sherman]remove from playlist
  • LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)
    6:12
    LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)remove from playlist
  • 50 POWERFUL Songs Composed by Prophet TB Joshua
    7:56:00
    50 POWERFUL Songs Composed by Prophet TB Joshuaremove from playlist
  • Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Musso
    4:21
    Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Mussoremove from playlist
  • Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)
    1:04:40
    Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)remove from playlist
  • Spiritually Saturated Songs | Apostle Joshua Selman
    57:48
    Spiritually Saturated Songs | Apostle Joshua Selmanremove from playlist
  • Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16
    56:27
    Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16remove from playlist
  • What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]
    4:15
    What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]remove from playlist
PLAYLIST TIME: 0:00 / 11:24:56

Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys

Sing along with the Good News Guys in this fun and action packed version of the classic Sunday school song “Joshua Fought the Battle of Jericho”! Listen and enjoy the exciting story of Joshua as he leads the Israelites around the walls of Jericho. Through faith, obedience, and God’s amazing power, those walls came tumbling down! Woohoo! Celebrate this beloved Bible story in a way that will have your whole family marching, shouting, and praising the Lord! 🔔 Subscribe for more videos and songs from the Good News Guys! 🎥 Watch our videos ad-free on Minno, the streaming service packed with Christian content for kids ► https://gominno.com ► Thank you to Luke Thompson of ActionVFX.com for providing great advice and the visual effects for this video! 🎶 Listen to our latest album, "Battles of the Bible," on all major music platforms ► https://found.ee/BattlesoftheBible Find merch 👕, learn about our story 📖, and see our upcoming live events 📅 on our website ► https://goodnewsguys.com 🌐 Follow us on socials for the latest updates, contests, and additional content: -Facebook► https://www.facebook.com/GoodNewsGuys -Instagram► https://www.instagram.com/good.news.guys -TikTok► https://www.tiktok.com/@goodnewsguys -X ► https://x.com/good_news_guys Learn the Good News about Jesus Christ with the Good News Guys! We create fun and engaging Christian content for children, featuring both new and classic Sunday school songs for kids' praise and worship. Our mission is to help children learn about Jesus, grow closer to God, and praise Him while having fun! Join us in spreading joy through music and engaging content. So come on, let’s praise the Lord together! 🎶🌟 Thank you for watching!
4:04
Joshua Fought the Battle of Jericho! 🗣️🎺🧱⚔️ | Good News Guys
Sing along with the Good News Guys in this fun and action packed version of the classic Su...
published: 15 Oct 2024
Play in Full Screen
4:40
LIVING IN THE OVERFLOW Ft Charity Gayle & Joshua Sherman
Download and Listen to "Living in the Overflow" here: https://lnk.to/LivingInTheOverflow-...
published: 13 Aug 2018
Play in Full Screen
6:29
AMEN [feat. Charity Gayle & Joshua Sherman]
Download and Listen to "Amen" here: https://lnk.to/Amen-TheEmergingSoundVolume3 Charts: h...
published: 10 Feb 2017
Play in Full Screen
6:12
LET REVIVAL COME (REVIVE ME) (Feat Kevin Jones, Joshua Sherman & The Emerging Sound)
Download and Listen to "Let Revival Come" here: https://lnk.to/LetRevivalCome-TheEmergingS...
published: 08 Nov 2017
Play in Full Screen
7:56:00
50 POWERFUL Songs Composed by Prophet TB Joshua
Greetings viewers all around the world. This video, produced by Fast Eddie, brings to you ...
published: 01 Feb 2024
Play in Full Screen
4:21
Psalm 100 (Enter In) feat Joshua Sherman, Charity Gayle, Steven Musso
Download and Listen to "Psalm 100" here: https://lnk.to/Psalm100-CharityGayle-JoshuaSherma...
published: 04 Dec 2017
Play in Full Screen
1:04:40
Joshua Mari NonStop Broken Hearted Songs 2024 (1HR Playlist)
1. Kaya Pa Ba Natin - https://www.youtube.com/watch?v=MFpFH7G5hnI 2. Patawad Kung Minahal ...
published: 23 Nov 2024
Play in Full Screen
57:48
Spiritually Saturated Songs | Apostle Joshua Selman
Your atmosphere is really important for you to achieve anything tangible. This video cont...
published: 29 May 2024
Play in Full Screen
56:27
Deep Soaking Worship by Minister Damilola Joshua Oyewole Live at RCCG The Kings Palace Katy Texas 16
* DAMILOLA JOSHUA OYEWOLE Music respects the intellectual property rights of others. All m...
published: 09 Feb 2025
Play in Full Screen
4:15
What Mercy Did For Me [feat. Crystal Yates Micah Tyler Joshua Sherman]
Download and Listen to "What Mercy Did For Me" here: https://lnk.to/WhatMercyDidForMe-TheE...
published: 08 Nov 2017
Play in Full Screen

Joshua

Joshua /ˈɒʃuə/ or Jehoshua (Hebrew: יְהוֹשֻׁעַ Yĕhôshúʿa or Hebrew: יֵשׁוּעַ Yĕshúʿa; Aramaic: ܝܫܘܥ Isho; Greek: Ἰησοῦς, Arabic: يوشع بن نون Yūshaʿ ibn Nūn; Latin: Iosue, Turkish: Yuşa), is a figure in the Torah, being one of the spies for Israel (Num 13–14) and identified in several passages as Moses' assistant. He is the central figure in the Hebrew Bible's Book of Joshua. According to the books of Exodus, Numbers and Joshua, he became the leader of the Israelite tribes after the death of Moses. His name was Hoshe'a (הוֹשֵׁעַ) the son of Nun, of the tribe of Ephraim, but Moses called him Yehoshu'a (יְהוֹשֻעַ; Joshua in English) (Numbers 13:16) the name by which he is commonly known. The name is shortened to Yeshua in Nehemiah (Nehemiah 8:17). According to the Bible he was born in Egypt prior to the Exodus.

He was one of the twelve spies of Israel sent by Moses to explore the land of Canaan. (Numbers 13:1-16) After the death of Moses, he led the Israelite tribes in the conquest of Canaan, and allocated the land to the tribes. According to Biblical chronology, Joshua lived between 1355-1245 BCE, or sometime in the late Bronze Age. According to Joshua 24:29, Joshua died at the age of 110.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×