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

Weizmann Institute of Science

The Weizmann Institute of Science (Hebrew: מכון ויצמן למדע Machon Weizmann LeMada) is a public research university in Rehovot, Israel, south of Tel Aviv. It differs from other Israeli universities in that it offers only graduate and postgraduate tutelage in the natural and exact sciences.

It is a multidisciplinary research center, with around 2,500 scientists, postdoctoral fellows, Ph.D. and M.Sc. students, and scientific, technical, and administrative staff working at the Institute.

Three Nobel laureates and three Turing Award laureates have been associated with the Weizmann Institute of Science.

History

Founded in 1934 by Chaim Weizmann and his first team, among them Benjamin M. Bloch, as the Daniel Sieff Research Institute. Weizmann had offered the post of director to Nobel Prize laureate Fritz Haber, but took over the directorship himself after Haber's death en route to Palestine. Before he became President of the State of Israel in February 1949, Weizmann pursued his research in organic chemistry at its laboratories. The institute was renamed the Weizmann Institute of Science in his honor on November 2, 1949, in agreement with the Sieff family.

Podcasts:

  • 24 Hours of the Weizmann Institute of Science

    published: 15 Nov 2017
  • Humans Vs. Ants: The Maze

    Ants and humans share a rare ability: each can work together in groups to mobilize oversized objects. In a new study, Prof. Ofer Feinerman's team from the Weizmann Institute of Science, led by Tabea Dreyer, drew upon this unique trait to conduct a fascinating evolutionary competition: Who is better at maneuvering a large load through a maze? The surprising results, published today, shed new light on group decision-making and the pros and cons of cooperation versus going it alone. #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #physics #WeizmannInstituteofScience #מכוןויצמןלמדע

    published: 23 Dec 2024
  • Undercover Investigation at the Weizmann Institute

    An undercover investigation at the Weizmann Institute of Science in Rehovot, Israel revealed extremely abusive neuroscience experiments on cats and monkeys. Subscribe to #PETA: https://bit.ly/2Qu3mOO .    🔔Turn on ALL push notifications 🔔 PETA's mission statement is that animals are not ours to experiment on, eat, wear, use for entertainment, or abuse in any other way: https://www.peta.org/about-peta/   The website the meat industry doesn't want you to see: https://www.meat.org/   How to go vegan: https://how-to-go-vegan.peta.org/   PETA Saves: https://spotlight.peta.org/petasaves/   PETA: https://www.PETA.org/   FAQs: https://www.peta.org/about-peta/faq/

    published: 04 Nov 2008
  • Weizmann Introduction to Physics - Touching Something No One Found

    Touching Something No One Found. Weizmann Institute of Science Introduces New Innovations in Physics.

    published: 29 Nov 2012
  • The Weizmann Institute - Where Science is a Lifestyle

    Israel's Weizmann Institute is consistently cited as one of the best places in the world for academics to work. Why did The Scientist magazine name the Weizmann Institute of Science (www.weizmann.ac.il) in Rehovot, Israel, the "best place to work in academia" outside the United States -- for the third time? Here we take a look at just three of the many innovations under development at this institute for graduate study: Dr. Michal Sharon's mass spectrometer, which vaporizes large molecules to analyze their shapes and compositions -- with implications for correcting damaged proteins that lead to diseases like Alzheimer's or Parkinson's; Dr. Avishai Gal-Yam's research into exploding stars; and Dr. Maya Schuldiner's custom-made robotic microscope. Schuldiner stresses that the Weizmann was ...

    published: 29 Nov 2012
  • Student life at the Weizmann Institute of Science

    מה הסטודנטים שלנו אוהבים במכון ויצמן למדע? רוצים לשמוע עוד? בואו אלינו ליום הפתוח לתואר שני ולדוקטורט ב-1 במארס. הקליקו לפרטים נוספים ולהרשמה: https://lp.vp4.me/eo4h Come to the Postgraduate Open Day hosted by the Feinberg Graduate School – the academic arm of the Weizmann Institute – to find out what benefits you can expect as a Weizmann Institute of Science student: 1 March 2019. Click on the link for more details and registration - in Hebrew: https://lp.vp4.me/eo4h #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #studentlife #WeizmannInstituteofScience #מכוןויצמןלמדע

    published: 23 Jan 2019
  • Virtual Tour of the Weizmann Institute of Science

    At the Weizmann Institute of Science, research takes place all along the frontier of the natural and exact sciences: the life sciences, chemistry, physics, mathematics and computer science. Over the years, work by Institute scientists has widely expanded our knowledge in these areas, created new research fields, and combined traditional scientific disciplines in multidisciplinary studies that steer research into new, exciting and often surprising paths.

    published: 29 Nov 2012
  • Scientists of Tomorrow: Vishnu Mohan

    Meet Vishnu Mohan, a postdoctoral fellow in the lab of Prof. Tamar Geiger of Weizmann Institute of Science’s Molecular Cell Biology Department, who is conducting research into cancer #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #WeizmannInstituteofScience #מכוןויצמןלמדע

    published: 21 Feb 2022
  • Why do lung cancer cells become resilient to treatment?

    Terry the bacteria discovered that lung cancer cells outsmart drugs and become resistant. His brilliant plan? Sit back and let cancer finish off humanity! But Prof. Yosef Yarden’s team at the Weizmann Institute found how to block this resistance. Another evil scheme foiled!

    published: 23 Jan 2025
developed with YouTube
24 Hours of the Weizmann Institute of Science
6:18

24 Hours of the Weizmann Institute of Science

  • Order:
  • Duration: 6:18
  • Uploaded Date: 15 Nov 2017
  • views: 20095
https://wn.com/24_Hours_Of_The_Weizmann_Institute_Of_Science
Humans Vs. Ants: The Maze
0:40

Humans Vs. Ants: The Maze

  • Order:
  • Duration: 0:40
  • Uploaded Date: 23 Dec 2024
  • views: 365656
Ants and humans share a rare ability: each can work together in groups to mobilize oversized objects. In a new study, Prof. Ofer Feinerman's team from the Weizmann Institute of Science, led by Tabea Dreyer, drew upon this unique trait to conduct a fascinating evolutionary competition: Who is better at maneuvering a large load through a maze? The surprising results, published today, shed new light on group decision-making and the pros and cons of cooperation versus going it alone. #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #physics #WeizmannInstituteofScience #מכוןויצמןלמדע
https://wn.com/Humans_Vs._Ants_The_Maze
Undercover Investigation at the Weizmann Institute
3:40

Undercover Investigation at the Weizmann Institute

  • Order:
  • Duration: 3:40
  • Uploaded Date: 04 Nov 2008
  • views: 45982
An undercover investigation at the Weizmann Institute of Science in Rehovot, Israel revealed extremely abusive neuroscience experiments on cats and monkeys. Subscribe to #PETA: https://bit.ly/2Qu3mOO .    🔔Turn on ALL push notifications 🔔 PETA's mission statement is that animals are not ours to experiment on, eat, wear, use for entertainment, or abuse in any other way: https://www.peta.org/about-peta/   The website the meat industry doesn't want you to see: https://www.meat.org/   How to go vegan: https://how-to-go-vegan.peta.org/   PETA Saves: https://spotlight.peta.org/petasaves/   PETA: https://www.PETA.org/   FAQs: https://www.peta.org/about-peta/faq/
https://wn.com/Undercover_Investigation_At_The_Weizmann_Institute
Weizmann Introduction to Physics - Touching Something No One Found
6:03

Weizmann Introduction to Physics - Touching Something No One Found

  • Order:
  • Duration: 6:03
  • Uploaded Date: 29 Nov 2012
  • views: 2021
Touching Something No One Found. Weizmann Institute of Science Introduces New Innovations in Physics.
https://wn.com/Weizmann_Introduction_To_Physics_Touching_Something_No_One_Found
The Weizmann Institute - Where Science is a Lifestyle
3:39

The Weizmann Institute - Where Science is a Lifestyle

  • Order:
  • Duration: 3:39
  • Uploaded Date: 29 Nov 2012
  • views: 119
Israel's Weizmann Institute is consistently cited as one of the best places in the world for academics to work. Why did The Scientist magazine name the Weizmann Institute of Science (www.weizmann.ac.il) in Rehovot, Israel, the "best place to work in academia" outside the United States -- for the third time? Here we take a look at just three of the many innovations under development at this institute for graduate study: Dr. Michal Sharon's mass spectrometer, which vaporizes large molecules to analyze their shapes and compositions -- with implications for correcting damaged proteins that lead to diseases like Alzheimer's or Parkinson's; Dr. Avishai Gal-Yam's research into exploding stars; and Dr. Maya Schuldiner's custom-made robotic microscope. Schuldiner stresses that the Weizmann was founded by scientists and is run by scientists. "And it therefore has a spirit, or an understanding, that science is not a profession. Science is a lifestyle. It's something that you take with you, to whatever you do." Downloads: Videos Hi Res Narration - http://www.megaupload.com/?d=Y6QUDGGU Hi Res No Narration - http://www.megaupload.com/?d=SHXHL5PH Streaming Narration - http://www.megaupload.com/?d=7BJ4F9OU Streaming No Narration - http://www.megaupload.com/?d=DG1L2ID4 Docs Intro - http://www.megaupload.com/?d=3P8JS9PZ Script - http://www.megaupload.com/?d=AB3F5QHP Please credit the Ministry of Foreign Affairs of the State of Israel for any use of these videos
https://wn.com/The_Weizmann_Institute_Where_Science_Is_A_Lifestyle
Student life at the Weizmann Institute of Science
1:16

Student life at the Weizmann Institute of Science

  • Order:
  • Duration: 1:16
  • Uploaded Date: 23 Jan 2019
  • views: 1698
מה הסטודנטים שלנו אוהבים במכון ויצמן למדע? רוצים לשמוע עוד? בואו אלינו ליום הפתוח לתואר שני ולדוקטורט ב-1 במארס. הקליקו לפרטים נוספים ולהרשמה: https://lp.vp4.me/eo4h Come to the Postgraduate Open Day hosted by the Feinberg Graduate School – the academic arm of the Weizmann Institute – to find out what benefits you can expect as a Weizmann Institute of Science student: 1 March 2019. Click on the link for more details and registration - in Hebrew: https://lp.vp4.me/eo4h #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #studentlife #WeizmannInstituteofScience #מכוןויצמןלמדע
https://wn.com/Student_Life_At_The_Weizmann_Institute_Of_Science
Virtual Tour of the Weizmann Institute of Science
3:14

Virtual Tour of the Weizmann Institute of Science

  • Order:
  • Duration: 3:14
  • Uploaded Date: 29 Nov 2012
  • views: 286
At the Weizmann Institute of Science, research takes place all along the frontier of the natural and exact sciences: the life sciences, chemistry, physics, mathematics and computer science. Over the years, work by Institute scientists has widely expanded our knowledge in these areas, created new research fields, and combined traditional scientific disciplines in multidisciplinary studies that steer research into new, exciting and often surprising paths.
https://wn.com/Virtual_Tour_Of_The_Weizmann_Institute_Of_Science
Scientists of Tomorrow: Vishnu Mohan
2:26

Scientists of Tomorrow: Vishnu Mohan

  • Order:
  • Duration: 2:26
  • Uploaded Date: 21 Feb 2022
  • views: 2087
Meet Vishnu Mohan, a postdoctoral fellow in the lab of Prof. Tamar Geiger of Weizmann Institute of Science’s Molecular Cell Biology Department, who is conducting research into cancer #ויצמן #מכוןויצמן #weizmann #weizmanninstitute #מדע #science #research #מחקר #scientist #WeizmannInstituteofScience #מכוןויצמןלמדע
https://wn.com/Scientists_Of_Tomorrow_Vishnu_Mohan
Why do lung cancer cells become resilient to treatment?
2:14

Why do lung cancer cells become resilient to treatment?

  • Order:
  • Duration: 2:14
  • Uploaded Date: 23 Jan 2025
  • views: 100
Terry the bacteria discovered that lung cancer cells outsmart drugs and become resistant. His brilliant plan? Sit back and let cancer finish off humanity! But Prof. Yosef Yarden’s team at the Weizmann Institute found how to block this resistance. Another evil scheme foiled!
https://wn.com/Why_Do_Lung_Cancer_Cells_Become_Resilient_To_Treatment
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

24 Hours of the Weizmann Institute of Science

6:18
24 Hours of the Weizmann Institute of Science
published: 15 Nov 2017
Play in Full Screen
0:40
Humans Vs. Ants: The Maze
Ants and humans share a rare ability: each can work together in groups to mobilize oversiz...
published: 23 Dec 2024
Play in Full Screen
3:40
Undercover Investigation at the Weizmann Institute
An undercover investigation at the Weizmann Institute of Science in Rehovot, Israel reveal...
published: 04 Nov 2008
Play in Full Screen
6:03
Weizmann Introduction to Physics - Touching Something No One Found
Touching Something No One Found. Weizmann Institute of Science Introduces New Innovations ...
published: 29 Nov 2012
Play in Full Screen
3:39
The Weizmann Institute - Where Science is a Lifestyle
Israel's Weizmann Institute is consistently cited as one of the best places in the world f...
published: 29 Nov 2012
Play in Full Screen
1:16
Student life at the Weizmann Institute of Science
מה הסטודנטים שלנו אוהבים במכון ויצמן למדע? רוצים לשמוע עוד? בואו אלינו ליום הפתוח לתואר שנ...
published: 23 Jan 2019
Play in Full Screen
3:14
Virtual Tour of the Weizmann Institute of Science
At the Weizmann Institute of Science, research takes place all along the frontier of the n...
published: 29 Nov 2012
Play in Full Screen
2:26
Scientists of Tomorrow: Vishnu Mohan
Meet Vishnu Mohan, a postdoctoral fellow in the lab of Prof. Tamar Geiger of Weizmann Inst...
published: 21 Feb 2022
Play in Full Screen
2:14
Why do lung cancer cells become resilient to treatment?
Terry the bacteria discovered that lung cancer cells outsmart drugs and become resistant. ...
published: 23 Jan 2025
Play in Full Screen

Weizmann Institute of Science

The Weizmann Institute of Science (Hebrew: מכון ויצמן למדע Machon Weizmann LeMada) is a public research university in Rehovot, Israel, south of Tel Aviv. It differs from other Israeli universities in that it offers only graduate and postgraduate tutelage in the natural and exact sciences.

It is a multidisciplinary research center, with around 2,500 scientists, postdoctoral fellows, Ph.D. and M.Sc. students, and scientific, technical, and administrative staff working at the Institute.

Three Nobel laureates and three Turing Award laureates have been associated with the Weizmann Institute of Science.

History

Founded in 1934 by Chaim Weizmann and his first team, among them Benjamin M. Bloch, as the Daniel Sieff Research Institute. Weizmann had offered the post of director to Nobel Prize laureate Fritz Haber, but took over the directorship himself after Haber's death en route to Palestine. Before he became President of the State of Israel in February 1949, Weizmann pursued his research in organic chemistry at its laboratories. The institute was renamed the Weizmann Institute of Science in his honor on November 2, 1949, in agreement with the Sieff family.

'); } 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: weizmann institute

Edit

Study reveals how certain proteins assemble as soon as they are synthesized

Phys Dot Org 27 Jan 2025
A study by the University of Geneva (UNIGE) and the Weizmann Institute, in collaboration with the Technion, reveals why this assembly often begins during the very process of protein synthesis or "birth.".
Edit

New method to map all the proteins secreted by the human body

Famagusta Gazette 25 Jan 2025
Israeli researchers have developed a new method to map all the proteins secreted by the human body, revealing insights into health and disease, the Weizmann Institute of Science (WIS) said in a statement this week ... ....
Edit

FD Flam: What longhorn crazy ants can teach us about groupthink

Pioneer Press 23 Jan 2025
That’s not to denigrate human intelligence — ants are smart, and their feats of coordinated activity are rare in nature ... Ants don’t choose a leader, said Feinerman, a professor at the Weizmann Institute of Science in Israel ... They did far worse ... F.D ... .
Edit

What longhorn crazy ants can teach us about groupthink

Grand Forks Herald 23 Jan 2025
That’s not to denigrate human intelligence — ants are smart, and their feats of coordinated activity are rare in nature ... ADVERTISEMENT ... Ants don’t choose a leader, said Feinerman, a professor at the Weizmann Institute of Science in Israel ... F.D ... Share ... .
Edit

We Know What You Ate: Detailed Protein Activity Maps Assess Intestinal Health (Weizmann Institute of Science)

Public Technologies 20 Jan 2025
Weizmann Institute of Science researchers have now given just this sort of "voice" to the intestine ... Weizmann Institute of Science published this content on January 20, 2025, and is solely responsible for the information contained herein.
Edit

We Know What You Ate: Detailed Protein Maps Assess Intestinal Health (Weizmann Institute of Science)

Public Technologies 20 Jan 2025
Weizmann Institute of Science researchers have now given just this sort of "voice" to the intestine ... Weizmann Institute of Science published this content on January 20, 2025, and is solely responsible for the information contained herein.
Edit

WEIRD STUFF

Jamaica Star 13 Jan 2025
Researchers at the Weizmann Institute of Science in Israel have claimed that boffins are closer to developing a jab that is able to ward off the "internal enemies" of ageing - including dementia - than many would suspect. The team said ... ------- ... .
Edit

Anti-ageing breakthrough: Doctors to invent 'Benjamin Button' vaccine that turns back body clock - may ...

The Daily Mail 09 Jan 2025
But the team, from the Weizmann Institute of Science, said experts are actually closer to making this a reality than you might think ... Experts, from the Weizmann Institute of Science in Israel, said ...
Edit

A ‘Holy Grail’ of Science Is Getting Closer

The Atlantic 09 Jan 2025
The human cell is a miserable thing to study ... And it’s beginning to happen ... “We’re at this tipping point” for AI in biology, Eran Segal, a computational biologist at the Weizmann Institute of Science and a collaborator of Xing’s, told me ... [Read ... [Read ... .
Edit

Ants vs. humans: Solving the piano-mover puzzle

Ars Technica 07 Jan 2025
Co-author Ofer Feinerman of the Weizmann Institute of Science and colleagues saw an opportunity to use the piano-mover puzzle to shed light on group decision-making, as well as the question of whether ...
Edit

Group decision-making better in ants compared to humans: Study

Deccan Herald 05 Jan 2025
... said researchers from the Weizmann Institute of Science, Israel.</p>.<p> .
Edit

Are ants smarter than us? New study explores

The Times of India 03 Jan 2025
Have you seen an ant alone? It’s very unlikely. You will always find them as colonies. They are highly social creatures, just like humans ... Ofer Feinerman and his team at the Weizmann Institute of Science conducted a fascinating study ... (Pic courtesy.

Most Viewed

×