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

Podcasts:

  • Ashkenazi Jews and Khazar Theory | Unpacked

    New channel alert https://youtube.com/@todayunpacked In this video we look at a long-standing theory that claims that Ashkenazi Jews are descendants of the Khazars. If it were true, that would make Ashkenazim offshoots of a multi-ethnic conglomerate of Turkic people who converted en masse in the eighth century in the kingdom of Khazaria. Turns out, it’s totally false. Unlike other conspiracy theories, though, it’s not just a fringe few who are pushing this idea. It has the backing of academics, including some in Israel - with dangerous implications. The hypothesis has been disproved, so why does it continue to resonate and how did an attempt to use the theory to fight back against antisemitism in the 1970s end up fueling anti-Israel rhetoric to this day? Let us know what you think of...

    published: 24 Feb 2020
  • THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?

    THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?

    published: 06 Oct 2024
  • The Ashkenazi Ancestry of the Jewish People

    Would you guess that the 10 million Ashkenazi Jews living today descend from ??? who lived 600-800 years ago? -- Follow us: FB: @jewishlifetv Twitter: @jewishlifetv IG:@jewishlifetv TikTok: @jltvtok -- JLTV is the only English language television network in the world that provides high-quality, Jewish-inspired programming for audiences of all faiths who share an interest in the Jewish experience and the State of Israel. JLTV is the destination for Jewish and Israeli Americans seeking news and information about the Jewish Community in the U.S., as well as Christian and other supporters of Jews and the State of Israel, offering cultural and religious Jewish content across genres. JLTV provides an array of programs across genres inspired by the Jewish experience and Israel. JLTV entertains a...

    published: 22 Dec 2020
  • Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcast

    AF-229: Ashkenazi Jewish | Are You Related to Them? | Ancestral Findings Podcast https://ancestralfindings.com/ashkenazi-jewish-people-related/ Do you have Ashkenazi Jewish DNA? This can be an exciting journey for you. Today, I’ll discuss who the Ashkenazi people are and what this means for your family history. Genealogy Clips Podcast https://ancestralfindings.com/podcast Free Genealogy Lookups https://ancestralfindings.com/lookups Genealogy Giveaway https://ancestralfindings.com/giveaway Genealogy eBooks https://ancestralfindings.com/ebooks Follow Along https://www.facebook.com/AncestralFindings https://www.instagram.com/ancestralfindings https://www.youtube.com/ancestralfindings Support Ancestral Findings https://ancestralfindings.com/support #Genealogy #AncestralFindings #Ge...

    published: 08 Mar 2019
  • Are Ashkenazic Jews the Real Khazars?

    The "Khazar Theory" has become very popular in some circles in recent years. I've done some extensive research over the last few months to investigate whether this theory holds any weight or not. You can investigate the sources I used in my research here: https://shorturl.at/oqzK3 Follow the "I'm All Over the Place" podcast here: https://allovertheplace.buzzsprout.com Purchase tickets to my D.C. Show (October 15th at Blues Alley) here: https://www.instantseats.com/index.cfm?fuseaction=buy.event&eventID=8447C911-9FED-BF69-D9F6F842015C3CE1 Be sure to join the Patreon at http://www.patreon.com/darastarrtucker Learn more about my music and how you can support this channel below: https://www.linktr.ee/daratuckerb https://www.patreon.com/darastarrtucker https://www.tiktok.com/@darastarr...

    published: 10 Sep 2023
  • THE GENETIC ORIGINS OF THE ASHKENAZI JEWS

    This video unravels the DNA History of the Ashkenazi Jewish people.

    published: 06 Nov 2023
  • Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)

    Origins of the medieval Jewish community of Ashkenaz. First of twelve lectures for The Ashkenazium (www.ashkenazium.eu). Lecture is also available in the course: A Thousand Years of Ashkenaz! Course information and registration here: https://henryabramson.com/course/a-thousand-years-of-ashkenaz/ For recommended reading, please visit: https://henryabramson.com/recommended-reading/ Interested in studying more deeply? Join our learning community of students, researchers and colleagues by becoming a Channel Member: https://www.youtube.com/channel/UCeNr6gwqin_7e_atjVnJcCQ/join Other Online Courses: Biblical Jewish History: From Abraham to Bar Kochba Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ The Holocaust Course information and regi...

    published: 27 Mar 2022
  • ashkenazi jews and the jewish community in the u.s.

    published: 08 Jan 2023
  • Cancer genes ten times more common among Ashkenazi Jewish people

    A B.C. initiative is aiming to expand genetic screening for Ashkenazi Jewish people at risk of hereditary cancers. About one in 40 individuals with Ashkenazi heritage carry genetic mutations, according to the U.S. Centre for Disease Control, which increase the likelihood of women developing ovarian cancer, for example, from one per cent to 30 per cent before age 70. As Janella Hamilton reports, the pilot project will study the prevalence of the BRCA mutations in B.C. #Cancer #Ashkenazi #jewish Connect with CBC Vancouver online: Website: https://www.cbc.ca/bc TikTok: https://www.tiktok.com/@cbcvancouver Instagram: https://www.instagram.com/cbcvancouver Facebook: https://www.facebook.com/CBCVancouver Twitter: https://twitter.com/cbcnewsbc #CBCVancouver #CBCNews #BritishColumbia

    published: 29 May 2023
  • Are All Israelis Ashkenazi Jews?? #israel #culture #history

    Not all Israelis are Jews who returned to their ancestral homeland from European countries. In fact, about half of Israeli Jews emigrated from other countries all over the world. And many Israelis are not Jewish at all. Over 1/4 of Israelis identify as Arabs, Christians, Bahai's, Samaritans, Seventh Day Adventists, Jehovah's Witnesses, Circassians, Druze, and more. #israel #israeli #jewish #arabs #islamic #muslim #islam #druze #bedouin #christian #christianity #judaism #bhai #samaritan #seventhdayadventist #middleeast #middle_east #indian #india #ethiopia #iran #syria #morocco #algeria #tunisia #yemen #southamerica #china #iranian #syrian #moroccan #algerian #tunisian #chinese #russian #ethiopian #race #ethnicity #democracy #nation #national #nationalism #nationality #family #sephardic #a...

    published: 14 Nov 2023
Ashkenazi Jews and Khazar Theory | Unpacked
5:24

Ashkenazi Jews and Khazar Theory | Unpacked

  • Order:
  • Duration: 5:24
  • Uploaded Date: 24 Feb 2020
  • views: 1418433
New channel alert https://youtube.com/@todayunpacked In this video we look at a long-standing theory that claims that Ashkenazi Jews are descendants of the Khazars. If it were true, that would make Ashkenazim offshoots of a multi-ethnic conglomerate of Turkic people who converted en masse in the eighth century in the kingdom of Khazaria. Turns out, it’s totally false. Unlike other conspiracy theories, though, it’s not just a fringe few who are pushing this idea. It has the backing of academics, including some in Israel - with dangerous implications. The hypothesis has been disproved, so why does it continue to resonate and how did an attempt to use the theory to fight back against antisemitism in the 1970s end up fueling anti-Israel rhetoric to this day? Let us know what you think of the video in the comments below. Sources: https://Unpacked.media/the-conspiracy-of-the-origin-of-ashkenazi-jews/ Chapters 00:00 Intro 00:23 Origin of Ashkenazi Jews 00:58 Khazar Theory 01:56 DNA tests of Ashkenazi Jews 02:07 Linguistic origins of Yiddish 02:32 Who is supporting the Khazar Theory? 03:41 Delegitimization of Jewish claims to Israel 04:03 Discounting Sephardic, Mizrahi, and other Jewish communities 04:18 Anti-Semitic conspiracy theories 05:09 Outro --------- Subscribe and turn on your notifications so you don’t miss future uploads! https://www.youtube.com/UNPACKED?sub_confirmation=1 Let’s connect: Website — https://www.Unpacked.media Instagram — https://www.instagram.com/jewishunpacked Twitter — https://twitter.com/jewishunpacked TikTok — https://www.tiktok.com/@jewishunpacked Facebook — https://www.facebook.com/jewishunpacked About Explainers: From ancient Jewish traditions to the modern State of Israel, we explain it all. Diving into anything and everything related to Jewish culture, history, and even religion. Understand Jewish holidays, Israeli politics, Jewish diasporic communities, and more. Learn about Judaism in pop culture, debunking myths about Jews, and explore obscure Israeli landmarks. We’re asking questions as basic as “What is the Talmud?”, and as obscure as “How did hip-hop boost Kosher wine sales?”, and everything in between. About Unpacked: We provide nuanced insights by unpacking all things Jewish. People are complex and complicated — yet we’re constantly being pushed to oversimplify our world. At Unpacked we know that being complex makes us more interesting. Because of this, we break the world down with nuance and insight to drive your curiosity and challenge your thinking. #europe #jewish #conspiracy
https://wn.com/Ashkenazi_Jews_And_Khazar_Theory_|_Unpacked
THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?
12:16

THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?

  • Order:
  • Duration: 12:16
  • Uploaded Date: 06 Oct 2024
  • views: 33786
THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?
https://wn.com/The_Origin_Of_Ashkenazi_Jews_–_Are_They_Pure_Jews
The Ashkenazi Ancestry of the Jewish People
2:39

The Ashkenazi Ancestry of the Jewish People

  • Order:
  • Duration: 2:39
  • Uploaded Date: 22 Dec 2020
  • views: 91022
Would you guess that the 10 million Ashkenazi Jews living today descend from ??? who lived 600-800 years ago? -- Follow us: FB: @jewishlifetv Twitter: @jewishlifetv IG:@jewishlifetv TikTok: @jltvtok -- JLTV is the only English language television network in the world that provides high-quality, Jewish-inspired programming for audiences of all faiths who share an interest in the Jewish experience and the State of Israel. JLTV is the destination for Jewish and Israeli Americans seeking news and information about the Jewish Community in the U.S., as well as Christian and other supporters of Jews and the State of Israel, offering cultural and religious Jewish content across genres. JLTV provides an array of programs across genres inspired by the Jewish experience and Israel. JLTV entertains audiences of all faiths.
https://wn.com/The_Ashkenazi_Ancestry_Of_The_Jewish_People
Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcast
6:11

Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcast

  • Order:
  • Duration: 6:11
  • Uploaded Date: 08 Mar 2019
  • views: 211302
AF-229: Ashkenazi Jewish | Are You Related to Them? | Ancestral Findings Podcast https://ancestralfindings.com/ashkenazi-jewish-people-related/ Do you have Ashkenazi Jewish DNA? This can be an exciting journey for you. Today, I’ll discuss who the Ashkenazi people are and what this means for your family history. Genealogy Clips Podcast https://ancestralfindings.com/podcast Free Genealogy Lookups https://ancestralfindings.com/lookups Genealogy Giveaway https://ancestralfindings.com/giveaway Genealogy eBooks https://ancestralfindings.com/ebooks Follow Along https://www.facebook.com/AncestralFindings https://www.instagram.com/ancestralfindings https://www.youtube.com/ancestralfindings Support Ancestral Findings https://ancestralfindings.com/support #Genealogy #AncestralFindings #GenealogyClips NOTE: • This description includes affiliate links to products and services that I believe you, my audience, might find valuable. If you purchase through one of these links, I receive a small commission at no extra cost to you.
https://wn.com/Ashkenazi_Jewish_Are_You_Related_To_Them_|_Ancestral_Findings_Podcast
Are Ashkenazic Jews the Real Khazars?
12:30

Are Ashkenazic Jews the Real Khazars?

  • Order:
  • Duration: 12:30
  • Uploaded Date: 10 Sep 2023
  • views: 220474
The "Khazar Theory" has become very popular in some circles in recent years. I've done some extensive research over the last few months to investigate whether this theory holds any weight or not. You can investigate the sources I used in my research here: https://shorturl.at/oqzK3 Follow the "I'm All Over the Place" podcast here: https://allovertheplace.buzzsprout.com Purchase tickets to my D.C. Show (October 15th at Blues Alley) here: https://www.instantseats.com/index.cfm?fuseaction=buy.event&eventID=8447C911-9FED-BF69-D9F6F842015C3CE1 Be sure to join the Patreon at http://www.patreon.com/darastarrtucker Learn more about my music and how you can support this channel below: https://www.linktr.ee/daratuckerb https://www.patreon.com/darastarrtucker https://www.tiktok.com/@darastarrtucker https://www.facebook.com/darastarrtucker https://www.instagram.com/daratuckerb https://www.twitter.com/darastarrtucker https://www.darastarrtucker.com
https://wn.com/Are_Ashkenazic_Jews_The_Real_Khazars
THE GENETIC ORIGINS OF THE ASHKENAZI JEWS
2:59

THE GENETIC ORIGINS OF THE ASHKENAZI JEWS

  • Order:
  • Duration: 2:59
  • Uploaded Date: 06 Nov 2023
  • views: 331007
This video unravels the DNA History of the Ashkenazi Jewish people.
https://wn.com/The_Genetic_Origins_Of_The_Ashkenazi_Jews
Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)
51:12

Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)

  • Order:
  • Duration: 51:12
  • Uploaded Date: 27 Mar 2022
  • views: 166107
Origins of the medieval Jewish community of Ashkenaz. First of twelve lectures for The Ashkenazium (www.ashkenazium.eu). Lecture is also available in the course: A Thousand Years of Ashkenaz! Course information and registration here: https://henryabramson.com/course/a-thousand-years-of-ashkenaz/ For recommended reading, please visit: https://henryabramson.com/recommended-reading/ Interested in studying more deeply? Join our learning community of students, researchers and colleagues by becoming a Channel Member: https://www.youtube.com/channel/UCeNr6gwqin_7e_atjVnJcCQ/join Other Online Courses: Biblical Jewish History: From Abraham to Bar Kochba Course information and registration here: https://henryabramson.com/course/biblical-jewish-history/ The Holocaust Course information and registration here: https://henryabramson.com/course/the-holocaust/
https://wn.com/Origins_Of_Ashkenazi_Jews_(Ashkenazium_Lectures_Part_1)
ashkenazi jews and the jewish community in the u.s.
0:15

ashkenazi jews and the jewish community in the u.s.

  • Order:
  • Duration: 0:15
  • Uploaded Date: 08 Jan 2023
  • views: 40214
https://wn.com/Ashkenazi_Jews_And_The_Jewish_Community_In_The_U.S.
Cancer genes ten times more common among Ashkenazi Jewish people
2:26

Cancer genes ten times more common among Ashkenazi Jewish people

  • Order:
  • Duration: 2:26
  • Uploaded Date: 29 May 2023
  • views: 6081
A B.C. initiative is aiming to expand genetic screening for Ashkenazi Jewish people at risk of hereditary cancers. About one in 40 individuals with Ashkenazi heritage carry genetic mutations, according to the U.S. Centre for Disease Control, which increase the likelihood of women developing ovarian cancer, for example, from one per cent to 30 per cent before age 70. As Janella Hamilton reports, the pilot project will study the prevalence of the BRCA mutations in B.C. #Cancer #Ashkenazi #jewish Connect with CBC Vancouver online: Website: https://www.cbc.ca/bc TikTok: https://www.tiktok.com/@cbcvancouver Instagram: https://www.instagram.com/cbcvancouver Facebook: https://www.facebook.com/CBCVancouver Twitter: https://twitter.com/cbcnewsbc #CBCVancouver #CBCNews #BritishColumbia
https://wn.com/Cancer_Genes_Ten_Times_More_Common_Among_Ashkenazi_Jewish_People
Are All Israelis Ashkenazi Jews?? #israel #culture #history
0:50

Are All Israelis Ashkenazi Jews?? #israel #culture #history

  • Order:
  • Duration: 0:50
  • Uploaded Date: 14 Nov 2023
  • views: 34674
Not all Israelis are Jews who returned to their ancestral homeland from European countries. In fact, about half of Israeli Jews emigrated from other countries all over the world. And many Israelis are not Jewish at all. Over 1/4 of Israelis identify as Arabs, Christians, Bahai's, Samaritans, Seventh Day Adventists, Jehovah's Witnesses, Circassians, Druze, and more. #israel #israeli #jewish #arabs #islamic #muslim #islam #druze #bedouin #christian #christianity #judaism #bhai #samaritan #seventhdayadventist #middleeast #middle_east #indian #india #ethiopia #iran #syria #morocco #algeria #tunisia #yemen #southamerica #china #iranian #syrian #moroccan #algerian #tunisian #chinese #russian #ethiopian #race #ethnicity #democracy #nation #national #nationalism #nationality #family #sephardic #ashkenazi #soviet #minorities #minority #refugees #refugee #identity #shorts #youtubeshorts #short #shortvideo #shortsfeed #shortsyoutube #shortsviral
https://wn.com/Are_All_Israelis_Ashkenazi_Jews_Israel_Culture_History
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Ashkenazi Jews and Khazar Theory | Unpacked
    5:24
    Ashkenazi Jews and Khazar Theory | Unpackedremove from playlist
  • The Ashkenazi Ancestry of the Jewish People
    2:39
    The Ashkenazi Ancestry of the Jewish Peopleremove from playlist
  • Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcast
    6:11
    Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcastremove from playlist
  • Are Ashkenazic Jews the Real Khazars?
    12:30
    Are Ashkenazic Jews the Real Khazars?remove from playlist
  • Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)
    51:12
    Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)remove from playlist
  • Cancer genes ten times more common among Ashkenazi Jewish people
    2:26
    Cancer genes ten times more common among Ashkenazi Jewish peopleremove from playlist
  • Are All Israelis Ashkenazi Jews?? #israel #culture #history
    0:50
    Are All Israelis Ashkenazi Jews?? #israel #culture #historyremove from playlist
PLAYLIST TIME: 0:00 / 1:36:42

Ashkenazi Jews and Khazar Theory | Unpacked

New channel alert https://youtube.com/@todayunpacked In this video we look at a long-standing theory that claims that Ashkenazi Jews are descendants of the Khazars. If it were true, that would make Ashkenazim offshoots of a multi-ethnic conglomerate of Turkic people who converted en masse in the eighth century in the kingdom of Khazaria. Turns out, it’s totally false. Unlike other conspiracy theories, though, it’s not just a fringe few who are pushing this idea. It has the backing of academics, including some in Israel - with dangerous implications. The hypothesis has been disproved, so why does it continue to resonate and how did an attempt to use the theory to fight back against antisemitism in the 1970s end up fueling anti-Israel rhetoric to this day? Let us know what you think of the video in the comments below. Sources: https://Unpacked.media/the-conspiracy-of-the-origin-of-ashkenazi-jews/ Chapters 00:00 Intro 00:23 Origin of Ashkenazi Jews 00:58 Khazar Theory 01:56 DNA tests of Ashkenazi Jews 02:07 Linguistic origins of Yiddish 02:32 Who is supporting the Khazar Theory? 03:41 Delegitimization of Jewish claims to Israel 04:03 Discounting Sephardic, Mizrahi, and other Jewish communities 04:18 Anti-Semitic conspiracy theories 05:09 Outro --------- Subscribe and turn on your notifications so you don’t miss future uploads! https://www.youtube.com/UNPACKED?sub_confirmation=1 Let’s connect: Website — https://www.Unpacked.media Instagram — https://www.instagram.com/jewishunpacked Twitter — https://twitter.com/jewishunpacked TikTok — https://www.tiktok.com/@jewishunpacked Facebook — https://www.facebook.com/jewishunpacked About Explainers: From ancient Jewish traditions to the modern State of Israel, we explain it all. Diving into anything and everything related to Jewish culture, history, and even religion. Understand Jewish holidays, Israeli politics, Jewish diasporic communities, and more. Learn about Judaism in pop culture, debunking myths about Jews, and explore obscure Israeli landmarks. We’re asking questions as basic as “What is the Talmud?”, and as obscure as “How did hip-hop boost Kosher wine sales?”, and everything in between. About Unpacked: We provide nuanced insights by unpacking all things Jewish. People are complex and complicated — yet we’re constantly being pushed to oversimplify our world. At Unpacked we know that being complex makes us more interesting. Because of this, we break the world down with nuance and insight to drive your curiosity and challenge your thinking. #europe #jewish #conspiracy
5:24
Ashkenazi Jews and Khazar Theory | Unpacked
New channel alert https://youtube.com/@todayunpacked In this video we look at a long-stan...
published: 24 Feb 2020
Play in Full Screen
12:16
THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?
THE ORIGIN OF ASHKENAZI JEWS – ARE THEY PURE JEWS?
published: 06 Oct 2024
Play in Full Screen
2:39
The Ashkenazi Ancestry of the Jewish People
Would you guess that the 10 million Ashkenazi Jews living today descend from ??? who lived...
published: 22 Dec 2020
Play in Full Screen
6:11
Ashkenazi Jewish: Are You Related to Them? | Ancestral Findings Podcast
AF-229: Ashkenazi Jewish | Are You Related to Them? | Ancestral Findings Podcast https://a...
published: 08 Mar 2019
Play in Full Screen
12:30
Are Ashkenazic Jews the Real Khazars?
The "Khazar Theory" has become very popular in some circles in recent years. I've done som...
published: 10 Sep 2023
Play in Full Screen
2:59
THE GENETIC ORIGINS OF THE ASHKENAZI JEWS
This video unravels the DNA History of the Ashkenazi Jewish people.
published: 06 Nov 2023
Play in Full Screen
51:12
Origins of Ashkenazi Jews (Ashkenazium Lectures Part 1)
Origins of the medieval Jewish community of Ashkenaz. First of twelve lectures for The Ash...
published: 27 Mar 2022
Play in Full Screen
0:15
ashkenazi jews and the jewish community in the u.s.
published: 08 Jan 2023
Play in Full Screen
2:26
Cancer genes ten times more common among Ashkenazi Jewish people
A B.C. initiative is aiming to expand genetic screening for Ashkenazi Jewish people at ris...
published: 29 May 2023
Play in Full Screen
0:50
Are All Israelis Ashkenazi Jews?? #israel #culture #history
Not all Israelis are Jews who returned to their ancestral homeland from European countries...
published: 14 Nov 2023
Play in Full Screen
'); } 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: ashkenazi jews

Edit

BENJAMIN FULFORD MAY 9. 2025 - NEW POPE LEO THE 14TH IS AN ASHKENAZI JEW ...

Bitchute 10 May 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Conflating anti-Zionism with antisemitism makes Jews less safe, not more

The Real News Network 09 May 2025
And so the connection that I see is that Ashkenazi Jews, ... I mean, in my family, my bubby, my grandmother who’s also Ashkenazi, and folks who are listening, Ashkenazi means Eastern European Jews.
Edit

Think South Beach hotel and think, librarian? Yes, at The Betsy

Sun Sentinel 06 May 2025
Much of the librarian’s reading stems from her position as associate editor and book editor of the online journal, “Sephardic Horizons.” “This deals with Jews from the non-Ashkenazi, the non-Eastern European world,” she says.
Edit

Trashing Traumatized Trannies, by Tobias Langdon

The Unz Review 01 May 2025
Ashkenazi Jews are highly inbred, which accounts both for their intelligence and their insanity ... there by Ashkenazi Jews, who are highly inbred and suffer from some fascinating neurological diseases.
Edit

This Jewish teen is raising awareness about the cancer gene that killed his father

Jewish Telegraph Agency 30 Apr 2025
to warn fellow Ashkenazi Jews about the silent killer that took his dad far too early ... among Ashkenazi Jews, according to the Basser Center for BRCA at Penn Medicine’s Abramson Cancer Center.
Edit

Why Hamas will not surrender

PIC 28 Apr 2025
The Ashkenazi Jews of Tel Aviv live in a western bubble, sipping their morning cappuccinos and fretting about their yoga teachers just one hour’s drive away from the most appalling scenes the world has witnessed since Srebrenica, or Rwanda.
Edit

RFK Jr could be a disaster for American healthcare

X Index 23 Apr 2025
And during the Covid-19 pandemic he reportedly suggested that the coronavirus could have been “ethnically targeted” to spare Ashkenazi Jews and Chinese people – a claim that is both antisemitic and scientifically highly implausible ... ....
Edit

The One State

Dissident Voice 22 Apr 2025
The Middle East and North African Jews who came to Israel were Arabs; the Ashkenazi were European; the Beta Israel were Ethiopians; and the Yemenites were from the Arabian Peninsula.
Edit

International observers are defending Palestinians in the West Bank with their own bodies

The Real News Network 22 Apr 2025
And so this, in many ways, is the work of doing that cultural exchange and helping people understand that this is a terrible thing that is happening, but it doesn’t represent all Jews ... Mostly they’re Ashkenazi.
Edit

The bastards of neoliberalism

New Statesman 19 Apr 2025
The measures were a chaotic mix ... hardwired culture, hard money, and hard borders ... It draws racial lines placing Caucasians, East Asians, and Ashkenazi Jews on one side of the line with other Asians, Hispanics and people of African descent on the other.
  • 1
×