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

January 17

January 17 is the 17th day of the year in the Gregorian calendar. There are 348 days remaining until the end of the year (349 in leap years).

Events

  • 38 BC Octavian divorces his wife Scribonia and marries Livia Drusilla, ending the fragile peace between the Second Triumvirate and Sextus Pompey.
  • 395 Upon the death of Emperor Theodosius I, the Roman Empire is permanently divided into the Eastern Roman Empire under Arcadius, and the Western Roman Empire under Honorius.
  • 1287 King Alfonso III of Aragon invades Minorca.
  • 1377 Pope Gregory XI moves the Papacy back to Rome from Avignon.
  • 1524 Giovanni da Verrazzano sets sail westward from Madeira to find a sea route to the Pacific Ocean.
  • 1562 France recognizes the Huguenots by the Edict of Saint-Germain.
  • 1595 Henry IV of France declares war on Spain.
  • 1608 Emperor Susenyos I of Ethiopia surprises an Oromo army at Ebenat; his army reportedly kills 12,000 Oromo at the cost of 400 of his men.
  • 1648 England's Long Parliament passes the "Vote of No Addresses", breaking off negotiations with King Charles I and thereby setting the scene for the second phase of the English Civil War.
  • January 17 (Eastern Orthodox liturgics)

    Jan. 16 - Eastern Orthodox Church calendar - Jan. 18

    All fixed commemorations below are observed on January 30 by Orthodox Churches on the Old Calendar.

    For January 17th, Orthodox Churches on the Old Calendar commemorate the Saints listed on January 4.

    Saints

  • Venerable Anthony the Great, God-bearing father of monasticism (356)
  • Martyr Jonilla and her infant son Turbo (c. 161-180)(see also: January 16)
  • Saint Theodosius the Great, Roman Emperor (395)
  • Venerable Achilles the Confessor, hermit of Egypt (5th century)
  • Venerable Anthony the New Wonderworker, of Veria in Greece, near the Haliacmon river (11th century)
  • Pre-Schism Western Saints

  • Saints Genulfus (Genou) and Genitus, two monks who lived in Celle-sur-Nahon in France (c. 3rd century)
  • Venerable Antony, Merulus and John, three monks at St Andrew's on the Coelian Hill in Rome (6th century)
  • Saint Nennius (Ninnidh), disciple of St Finian of Clonard, reckoned as one of the 'Twelve Apostles of Ireland' (6th century)
  • Twelfth Night (holiday)

    Twelfth Night is a festival in some branches of Christianity marking the coming of the Epiphany. Different traditions mark the date of Twelfth Night on either 5 January or 6 January; the Church of England, Mother Church of the Anglican Communion, celebrates Twelfth Night on the 5th and "refers to the night before Epiphany, the day when the nativity story tells us that the wise men visited the infant Jesus". In Western Church traditions the Twelfth Night concludes the Twelve Days of Christmas, although in others the Twelfth Night can precede the Twelfth Day.Bruce Forbes wrote that " "In 567 the Council of Tours proclaimed that the entire period between Christmas and Epiphany should be considered part of the celebration, creating what became known as the twelve days of Christmas, or what the English called Christmastide. On the last of the twelve days, called Twelfth Night, various cultures developed a wide range of additional special festivities. The variation extends even to the issue of how to count the days. If Christmas Day is the first of the twelve days, then Twelfth Night would be on January 5, the eve of Epiphany. If December 26, the day after Christmas, is the first day, then Twelfth Night falls on January 6, the evening of Epiphany itself."

    Podcasts:

    • Born On January 17 | Numerology and Astrology Analysis

      🔥 Complete birthday analysis and more at https://linktr.ee/yourlifereadings ❤ 🔥 Visit our Community Tab for all offerings. ❤ VIDEO CREDITS Music copyright Filmora Wondershare Images courtesy of https://www.pexels.com/ #birthday #birthdaysong #birthdaycelebration #birthdayparty #birthdaywishes #birthdaycake #birthdaycard #happybirthdaysong #happybirthday #astrology #numerology #numerologyprediction

      published: 06 Oct 2016
    • January 17 - This Day in History

      This video will explain historical events that occurred on January 17. Thanks for watching, I hope you had Fun with Education!!

      published: 17 Jan 2020
    • Born on the 17th of January | Uncover the secrets behind your birthday | Happy Birthday

      If you are born on the 17th Of January this video is specially made for you. This video will show why your birth date is important and how is your personality. Happy BirthDay Please don't forget to subscribe #17january #birthday Bring positive vibes by using affirmations from https://magicaffirmations.org

      published: 10 Jul 2021
    • Discovering the Personality Traits of January 17 Zodiac: Capricorn Sign

      Are you curious about the zodiac sign associated with January 17th? If yes, then this video is for you. In this video, we will explore the world of astrology and discuss the unique traits, strengths, weaknesses, and compatibility of individuals born on the 17th of January under the Capricorn sign. Read more about January 17 Zodiac here: https://birthdossier.com/january-17-zodiac/

      published: 24 May 2023
    • The Rarest Birthdays

      Join the Hat Gang! https://www.youtube.com/channel/UCWBWgCD4oAqT3hUeq40SCUw/join Subscribe and you'll have good luck forever :) Check out my other socials! 🙌🏼 Instagram ► https://www.instagram.com/sambuchalul Twitter ► https://www.twitter.com/sambucha TikTok ► https://www.tiktok.com/@sambucha #shorts​ #birthday #age #rare #rarest #birthdays #facts #education #fun #sambucha

      published: 19 Jan 2023
    • Jaan Nisar Ep 17 - [Eng Sub] - Digitally Presented by Happilac Paints - 15th June 2024 - Har Pal Geo

      Thanks for watching Har Pal Geo. Please click here https://bit.ly/3rCBCYN to Subscribe and hit the bell icon to enjoy Top Pakistani Dramas and satisfy all your entertainment needs. Do you know Har Pal Geo is now available in the US? Share the News. Spread the word. Jaan Nisar Episode 17 - [Eng Sub] - Digitally Presented by Happilac Paints - Danish Taimoor - Hiba Bukhari - Haroon Shahid - 15th June 2024 - Har Pal Geo Jaan Nisar Digitally Presented by Happilac Paints 7th Sky Entertainment’s mega project, Jaan Nisar, is the most awaited drama serial of the year. The highly anticipated project marks the return of the successful on-screen couple of Danish Taimoor and Hiba Bukhari in an unforgettable love story that will steal your heart. Nosherwan Ghaznavi, a wealthy young man, faces a pivo...

      published: 15 Jun 2024
    • Today in History for January 17th

      Highlights of Today in History: Benjamin Franklin born; Soviet and Polish forces liberate Warsaw; Eisenhower farewell address; Japan earthquake; Al Capone is born;Muhammad Ali born. Subscribe for more Breaking News: http://smarturl.it/AssociatedPress Website: https://apnews.com Twitter: https://twitter.com/AP Facebook: https://facebook.com/APNews Instagram: https://www.instagram.com/APNews/ ​ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/685d634cad294d8faac185d35d59e5ac

      published: 17 Jan 2022
    • January 17 - Birthday Horoscope Personality

      ♈♉♊♋♌♍♎♏♐♑♒♓ Your Free Birthday Horoscopes and Predictions Personality in January. If your Birthday is January 17 and your Zodiac Sign is Capricorn. Birthday Horoscope for January 17th. Subscribe our youtube channel!

      published: 16 Jan 2018
    • Road trip 2023 january 17 - ANVIL

      Road trip 2023 january 17 - ANVIL Join us : https://www.instagram.com/anvilsandtoolsforsale https://www.facebook.com/anvilsandtoolsforsale https://www.youtube.com/@anvilsandtoolsforsale https://www.anvilsandtoolsforsale.com https://www.pinterest.fr/anvilsandtoolsforsale email to anvilsandtoolsforsale@gmail.com

      published: 04 Aug 2024
    • Paddington In Peru - Teaser | In Cinemas January 17 2025

      Passport? Marmalade sandwich? #PaddingtonMovie is exclusively in cinemas January 17 2025. Join us on: https://www.facebook.com/sonypicturesofindia https://www.twitter.com/SonyPicsIndia https://www.instagram.com/sonypicturesin https://plus.google.com/+SonyPicturesIndia

      published: 06 Aug 2024
    Born On January 17 | Numerology and Astrology Analysis
    4:56

    Born On January 17 | Numerology and Astrology Analysis

    • Order:
    • Duration: 4:56
    • Uploaded Date: 06 Oct 2016
    • views: 15940
    🔥 Complete birthday analysis and more at https://linktr.ee/yourlifereadings ❤ 🔥 Visit our Community Tab for all offerings. ❤ VIDEO CREDITS Music copyright Filmora Wondershare Images courtesy of https://www.pexels.com/ #birthday #birthdaysong #birthdaycelebration #birthdayparty #birthdaywishes #birthdaycake #birthdaycard #happybirthdaysong #happybirthday #astrology #numerology #numerologyprediction
    https://wn.com/Born_On_January_17_|_Numerology_And_Astrology_Analysis
    January 17 - This Day in History
    1:48

    January 17 - This Day in History

    • Order:
    • Duration: 1:48
    • Uploaded Date: 17 Jan 2020
    • views: 541
    This video will explain historical events that occurred on January 17. Thanks for watching, I hope you had Fun with Education!!
    https://wn.com/January_17_This_Day_In_History
    Born on the 17th of January | Uncover the secrets behind your birthday | Happy Birthday
    8:14

    Born on the 17th of January | Uncover the secrets behind your birthday | Happy Birthday

    • Order:
    • Duration: 8:14
    • Uploaded Date: 10 Jul 2021
    • views: 6736
    If you are born on the 17th Of January this video is specially made for you. This video will show why your birth date is important and how is your personality. Happy BirthDay Please don't forget to subscribe #17january #birthday Bring positive vibes by using affirmations from https://magicaffirmations.org
    https://wn.com/Born_On_The_17Th_Of_January_|_Uncover_The_Secrets_Behind_Your_Birthday_|_Happy_Birthday
    Discovering the Personality Traits of January 17 Zodiac: Capricorn Sign
    2:32

    Discovering the Personality Traits of January 17 Zodiac: Capricorn Sign

    • Order:
    • Duration: 2:32
    • Uploaded Date: 24 May 2023
    • views: 765
    Are you curious about the zodiac sign associated with January 17th? If yes, then this video is for you. In this video, we will explore the world of astrology and discuss the unique traits, strengths, weaknesses, and compatibility of individuals born on the 17th of January under the Capricorn sign. Read more about January 17 Zodiac here: https://birthdossier.com/january-17-zodiac/
    https://wn.com/Discovering_The_Personality_Traits_Of_January_17_Zodiac_Capricorn_Sign
    The Rarest Birthdays
    0:49

    The Rarest Birthdays

    • Order:
    • Duration: 0:49
    • Uploaded Date: 19 Jan 2023
    • views: 6668588
    Join the Hat Gang! https://www.youtube.com/channel/UCWBWgCD4oAqT3hUeq40SCUw/join Subscribe and you'll have good luck forever :) Check out my other socials! 🙌🏼 Instagram ► https://www.instagram.com/sambuchalul Twitter ► https://www.twitter.com/sambucha TikTok ► https://www.tiktok.com/@sambucha #shorts​ #birthday #age #rare #rarest #birthdays #facts #education #fun #sambucha
    https://wn.com/The_Rarest_Birthdays
    Jaan Nisar Ep 17 - [Eng Sub] - Digitally Presented by Happilac Paints - 15th June 2024 - Har Pal Geo
    36:18

    Jaan Nisar Ep 17 - [Eng Sub] - Digitally Presented by Happilac Paints - 15th June 2024 - Har Pal Geo

    • Order:
    • Duration: 36:18
    • Uploaded Date: 15 Jun 2024
    • views: 30887736
    Thanks for watching Har Pal Geo. Please click here https://bit.ly/3rCBCYN to Subscribe and hit the bell icon to enjoy Top Pakistani Dramas and satisfy all your entertainment needs. Do you know Har Pal Geo is now available in the US? Share the News. Spread the word. Jaan Nisar Episode 17 - [Eng Sub] - Digitally Presented by Happilac Paints - Danish Taimoor - Hiba Bukhari - Haroon Shahid - 15th June 2024 - Har Pal Geo Jaan Nisar Digitally Presented by Happilac Paints 7th Sky Entertainment’s mega project, Jaan Nisar, is the most awaited drama serial of the year. The highly anticipated project marks the return of the successful on-screen couple of Danish Taimoor and Hiba Bukhari in an unforgettable love story that will steal your heart. Nosherwan Ghaznavi, a wealthy young man, faces a pivotal moment in his life after his brother's death. This tragedy burdens Nosherwan Ghaznavi with numerous responsibilities, which he reluctantly accepts, only to find them later proving detrimental. However, his life takes a transformative turn upon meeting Dua, falling in love with her at first sight, but it places him at a critical juncture with his responsibilities. Dua, a beautiful girl from a humble background, is raised by her parents alongside her two sisters. Despite her innocence, fate subjects Dua to a string of misfortunes before encountering Nosherwan Ghaznavi. However, their meeting completely changes their lives. Will Nowsherwan Ghaznavi find love? What challenges will he face in balancing his duties and his love for Dua? Will his responsibilities jeopardize his love for Dua? What past events have shaped Dua's life, and will they resurface to trouble her? Will Dua return Nowsherwan Ghaznavi’s love? 7th Sky Entertainment Presentation Producers: Abdullah Kadwani & Asad Qureshi Director: Mohsin Mirza Writer: Rehana Aftab Cast: Danish Taimoor as Nosherwan Ghaznavi Hiba Bukhari as Dua Haroon Shahid as Faraz Sajid Hasan as Aslam Hina Bayat as Amma Saeein Mahmood Aslam as Baba Saeein Dania Enwer as Fiza Kinza Malik as Fehmida Hiba Ali as Kashmala Sajeeruddin Khalifa as Naseer Shazia Gohar as Kausar Humaira Bano as Zunaira Ellie Zaid as Sumbul Nain Sukh as Sania Mehboob Sultan as Jaffar Faiza Khan as Rumi Sarah Ali as Rida HappilacPaints ColorsofHappiness #jaannisar #hibabukhari #danishtaimoor https://youtu.be/0UX7rMh6LZk https://youtu.be/3oJ0WQebEtI https://youtu.be/nnAlOJ5VB-Q https://youtu.be/FcRzvUGkszM
    https://wn.com/Jaan_Nisar_Ep_17_Eng_Sub_Digitally_Presented_By_Happilac_Paints_15Th_June_2024_Har_Pal_Geo
    Today in History for January 17th
    1:33

    Today in History for January 17th

    • Order:
    • Duration: 1:33
    • Uploaded Date: 17 Jan 2022
    • views: 1767
    Highlights of Today in History: Benjamin Franklin born; Soviet and Polish forces liberate Warsaw; Eisenhower farewell address; Japan earthquake; Al Capone is born;Muhammad Ali born. Subscribe for more Breaking News: http://smarturl.it/AssociatedPress Website: https://apnews.com Twitter: https://twitter.com/AP Facebook: https://facebook.com/APNews Instagram: https://www.instagram.com/APNews/ ​ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/685d634cad294d8faac185d35d59e5ac
    https://wn.com/Today_In_History_For_January_17Th
    January 17 - Birthday Horoscope Personality
    3:27

    January 17 - Birthday Horoscope Personality

    • Order:
    • Duration: 3:27
    • Uploaded Date: 16 Jan 2018
    • views: 3212
    ♈♉♊♋♌♍♎♏♐♑♒♓ Your Free Birthday Horoscopes and Predictions Personality in January. If your Birthday is January 17 and your Zodiac Sign is Capricorn. Birthday Horoscope for January 17th. Subscribe our youtube channel!
    https://wn.com/January_17_Birthday_Horoscope_Personality
    Road trip 2023 january 17 - ANVIL
    0:53

    Road trip 2023 january 17 - ANVIL

    • Order:
    • Duration: 0:53
    • Uploaded Date: 04 Aug 2024
    • views: 9
    Road trip 2023 january 17 - ANVIL Join us : https://www.instagram.com/anvilsandtoolsforsale https://www.facebook.com/anvilsandtoolsforsale https://www.youtube.com/@anvilsandtoolsforsale https://www.anvilsandtoolsforsale.com https://www.pinterest.fr/anvilsandtoolsforsale email to anvilsandtoolsforsale@gmail.com
    https://wn.com/Road_Trip_2023_January_17_Anvil
    Paddington In Peru - Teaser | In Cinemas January 17 2025
    1:14

    Paddington In Peru - Teaser | In Cinemas January 17 2025

    • Order:
    • Duration: 1:14
    • Uploaded Date: 06 Aug 2024
    • views: 1424
    Passport? Marmalade sandwich? #PaddingtonMovie is exclusively in cinemas January 17 2025. Join us on: https://www.facebook.com/sonypicturesofindia https://www.twitter.com/SonyPicsIndia https://www.instagram.com/sonypicturesin https://plus.google.com/+SonyPicturesIndia
    https://wn.com/Paddington_In_Peru_Teaser_|_In_Cinemas_January_17_2025
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    Born On January 17 | Numerology and Astrology Analysis

    🔥 Complete birthday analysis and more at https://linktr.ee/yourlifereadings ❤ 🔥 Visit our Community Tab for all offerings. ❤ VIDEO CREDITS Music copyright Filmora Wondershare Images courtesy of https://www.pexels.com/ #birthday #birthdaysong #birthdaycelebration #birthdayparty #birthdaywishes #birthdaycake #birthdaycard #happybirthdaysong #happybirthday #astrology #numerology #numerologyprediction
    4:56
    Born On January 17 | Numerology and Astrology Analysis
    🔥 Complete birthday analysis and more at https://linktr.ee/yourlifereadings ❤ 🔥 Visit ou...
    published: 06 Oct 2016
    Play in Full Screen
    1:48
    January 17 - This Day in History
    This video will explain historical events that occurred on January 17. Thanks for watchin...
    published: 17 Jan 2020
    Play in Full Screen
    8:14
    Born on the 17th of January | Uncover the secrets behind your birthday | Happy Birthday
    If you are born on the 17th Of January this video is specially made for you. This video wi...
    published: 10 Jul 2021
    Play in Full Screen
    2:32
    Discovering the Personality Traits of January 17 Zodiac: Capricorn Sign
    Are you curious about the zodiac sign associated with January 17th? If yes, then this vide...
    published: 24 May 2023
    Play in Full Screen
    0:49
    The Rarest Birthdays
    Join the Hat Gang! https://www.youtube.com/channel/UCWBWgCD4oAqT3hUeq40SCUw/join Subscrib...
    published: 19 Jan 2023
    Play in Full Screen
    36:18
    Jaan Nisar Ep 17 - [Eng Sub] - Digitally Presented by Happilac Paints - 15th June 2024 - Har Pal Geo
    Thanks for watching Har Pal Geo. Please click here https://bit.ly/3rCBCYN to Subscribe and...
    published: 15 Jun 2024
    Play in Full Screen
    1:33
    Today in History for January 17th
    Highlights of Today in History: Benjamin Franklin born; Soviet and Polish forces liberate ...
    published: 17 Jan 2022
    Play in Full Screen
    3:27
    January 17 - Birthday Horoscope Personality
    ♈♉♊♋♌♍♎♏♐♑♒♓ Your Free Birthday Horoscopes and Predictions Personality in January. If your...
    published: 16 Jan 2018
    Play in Full Screen
    0:53
    Road trip 2023 january 17 - ANVIL
    Road trip 2023 january 17 - ANVIL Join us : https://www.instagram.com/anvilsandtoolsforsa...
    published: 04 Aug 2024
    Play in Full Screen
    1:14
    Paddington In Peru - Teaser | In Cinemas January 17 2025
    Passport? Marmalade sandwich? #PaddingtonMovie is exclusively in cinemas January 17 2025...
    published: 06 Aug 2024
    Play in Full Screen

    January 17

    January 17 is the 17th day of the year in the Gregorian calendar. There are 348 days remaining until the end of the year (349 in leap years).

    Events

  • 38 BC Octavian divorces his wife Scribonia and marries Livia Drusilla, ending the fragile peace between the Second Triumvirate and Sextus Pompey.
  • 395 Upon the death of Emperor Theodosius I, the Roman Empire is permanently divided into the Eastern Roman Empire under Arcadius, and the Western Roman Empire under Honorius.
  • 1287 King Alfonso III of Aragon invades Minorca.
  • 1377 Pope Gregory XI moves the Papacy back to Rome from Avignon.
  • 1524 Giovanni da Verrazzano sets sail westward from Madeira to find a sea route to the Pacific Ocean.
  • 1562 France recognizes the Huguenots by the Edict of Saint-Germain.
  • 1595 Henry IV of France declares war on Spain.
  • 1608 Emperor Susenyos I of Ethiopia surprises an Oromo army at Ebenat; his army reportedly kills 12,000 Oromo at the cost of 400 of his men.
  • 1648 England's Long Parliament passes the "Vote of No Addresses", breaking off negotiations with King Charles I and thereby setting the scene for the second phase of the English Civil War.
  • '); } 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)); } }); }); }); // -->

    Latest News for: january 17

    Edit

    Pascal Siakam out vs. Nuggets with elbow bursitis

    IndyStar 06 Apr 2025
    Siakam has missed just one game before this one since being acquired by the Pacers from the Raptors in January, 2024.
    Edit

    ‘Keep on pushing’: tech founders share secrets of their success

    The Times/The Sunday Times 06 Apr 2025
    People, relationships, persistence and serendipity are key drivers in building successful tech businesses, according to the co-founder of one of Britain’s leading medical devices groups ...The Sunday Times view ... FINTECH ... January 17 2025, 6.00am ... .
    Edit

    How to watch ‘SNL’ Season 50, Episode 17 free live stream with Jack Black, Elton ...

    The Post-Standard 06 Apr 2025
    "Saturday Night Live" Season 50, Episode 17 airs Saturday, April 5 on NBC.NBC ... “Saturday Night Live’s” 50th season continues with episode 17, hosted by Jack Black and musical guests Elton John and Brandi Carlile.
    Edit

    James R. Baker

    Santa Cruz Sentinel 06 Apr 2025
    James R. (Jim) Baker died March 27, 2025 at home in Santa Cruz, He was 96 years old. Jim was born in Burlington, Iowa on January 17, 1929 to Russell E. and Helen B. (Dehn) Baker ... Jim entered the United States Army in January 1951 ... Jim and Eunice Y ... Rev.
    Edit

    Sadiq Umar’s Valencia Earns First Win over Madrid in 17 Years

    This Day 06 Apr 2025
    Super Eagles forward, Umar Sadiq, ended his personal hoodoo against Real Madrid yesterday as Valenciaearned a dramatic 2-1 victory at the Santiago Bernabéu – their first win at the iconic ground in 17 years.
    Edit

    Kangana Ranaut gets silk saree, letter from fan for making Emergency, calls it ‘so much ...

    Hindustan Times 06 Apr 2025
    Actor Kangana Ranaut has shared that she received a saree from a fan who watched her latest film, Emergency ... (Also Read . Hansal Mehta praises Kangana Ranaut after fight, says he is fond of her ... (ANI) ... The film was released in theatres on January 17 ... ....
    Edit

    BJP leader files complaint against ‘illegal loudspeakers’ at 72 mosques in Mumbai

    The Siasat Daily 06 Apr 2025
    New Delhi ... He said, “I have lodged a complaint at the police station ... Also Read. Video ... It also asked as to how many mosques had the police station allowed to use loudspeakers between January 1, 2024 and February 17, 2025 ... .
    Edit

    Israeli strikes on Gaza kill 19, mostly women and children

    The Call 06 Apr 2025
    Netanyahu on Monday will meet with Trump for the second time since Trump began his latest term in January. The prime minister said they would discuss the war and the new 17% tariff imposed on Israel, part of a sweeping global decision by the new U.S ... .
    Edit

    Israeli strikes on Gaza kill at least 19

    Stars and Stripes 06 Apr 2025
    Netanyahu on Monday will meet with Trump for the second time since Trump began his latest term in January. The prime minister said they would discuss the war and the new 17% tariff imposed on Israel, part of a sweeping global decision by the new U.S ... .
    Edit

    Israeli strikes on Gaza kill 24, mostly women and children

    The Call 06 Apr 2025
    Netanyahu on Monday will meet with Trump for the second time since Trump began his latest term in January. The prime minister said they would discuss the war and the new 17% tariff imposed on Israel, part of a sweeping global decision by the new U.S ... .
    Edit

    Central Bank of Egypt announces increase in net foreign assets

    Egypt Independent 05 Apr 2025
    The net foreign assets of the Egyptian banking system jumped by approximately US$1.5 billion during February, reaching $10.17 billion, compared to $8.7 billion at the end of January – an ...
    Edit

    Angeles National Forest is reopening trails and campsites in time for spring break. Here’s where.

    The Los Angeles Times 05 Apr 2025
    ... January's firestorm have reopened for visitors, U.S ... At one point, about 17% of the 700,000-acre forest was closed due to fire damage from both the Eaton fire in January and Bridge fire in September.
    Edit

    ZAB’s death anniversary: Canals project review by CCI a constitutional need, says Murad

    The News International 05 Apr 2025
    ... in Karachi on January 27, 2025 ... The chief minister also criticised the Indus River System Authority (IRSA) for issuing, what he called, a misleading water availability certificate on January 17, 2024.
    ×