'+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:

  • Top 10 Greatest Scientific Discoveries of All Time

    These are the scientific discoveries that changed the world. For this list, we’ll be looking at the most impactful scientific breakthroughs of all time. Our countdown includes The Human Genome Project, Quantum Mechanics, Germs, and more! Which scientific discovery do you think is the most significant? Let us know in the comments! Watch more great science videos here: Top 10 Things We Wish Science Would Figure Out: https://youtu.be/t4Rw0xLNz-Y Top 10 Biggest Scientific Discoveries of 2020: https://youtu.be/2WxR_2-faYY Top 20 Biggest Scientific Discoveries of the Decade: https://youtu.be/tIvtkMRFj-Q Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://ww...

    published: 29 Mar 2023
  • The Forgotten Origin of the Scientific Method

    SUBSCRIBE so you don’t miss a video! ►► http://bit.ly/iotbs_sub We’re on PATREON! Join the community https://www.patreon.com/itsokaytobesmart ↓↓↓ More info and sources below ↓↓↓ 500 years before the Scientific Revolution, the mathematician Al-Hassan Ibn al-Haytham spent hours in a dark room studying the light that filtered in. Not only did he revolutionize how we literally see the world, he pioneered the scientific method that is now the backbone of modern science. Sources: https://sites.google.com/view/sci-method-sources/home 0:00 Introduction 0:41 What is a camera obscura? 1:48 The mathematician who tried to dam the Nile 3:08 The origin of optics 3:56 Ancient ways of knowing 6:39 The birth of modern science 7:38 From hypothesis to experiment 8:44 How al-Haytham changed science histor...

    published: 14 Feb 2023
  • Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUE

    You'll be shocked when you learn how many famous conspiracy theories turned out to be real! For this list, we’ll be looking at the times scientific conspiracy theories ended up having an inkling of truth. Our countdown includes The Sugar Industry Paid Off Scientists, Breakfast Is Not the Most Important Meal of the Day, The CIA Drugged Citizens Without Their Knowledge, Bayer Spread HIV, and more! Which unproven conspiracies could you see on this list in the future? Let us know in the comments. Watch more great conspiracy videos here: Top 10 Conspiracy Theories That Turned Out to Be True: https://youtu.be/bldBqtgAX2o Top 20 Biggest Conspiracy Theories of All Time: https://youtu.be/z1feVpZrjtk Top 10 Scientific Conspiracy Theories That Turned Out to Be True: https://youtu.be/NB2f37nDdPo...

    published: 17 Mar 2023
  • ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalam

    SCIENTIFIC MALAYALI by Anish Mohan എന്റെ പുസ്തകം 'ജനാലകൾ (Janalakal)' വാങ്ങാൻ link-ൽ click ചെയ്യുക https://amzn.eu/d/ezXdSJY Email: scientificmalayali@gmail.com Seventh Fleet is the largest of the U.S. Navy's forward-deployed fleets. At any given time there are 50-70 ships and submarines, 150 aircraft, and more than 27,000 Sailors and Marines in Seventh Fleet. Commanded by a 3-star Navy Flag officer, Vice Adm. Karl Thomas, since July 8, 2021. Seventh Fleet’s area of operations spans more than 124-million square kilometers, stretching from the International Date Line to the western border of India; and from the Kuril Islands in the North to the Antarctic in the South. Seventh Fleet’s area of operations encompasses 36 maritime countries and 50% of the world’s population, including: The...

    published: 25 Mar 2023
  • 29 SCIENCE TRICKS that look like real MAGIC

    Timestamps: 0:05 Corn flakes and magnet 0:29 Watering cans trick 1:28 Fade out tricks 1:47 Jelly bears 2:09 Milk and cola 2:35 Water and magnets 3:17 Balance 3:39 Ferromagnetic fluid This video is made for entertainment purposes. We do not make any warranties about the completeness, safety and reliability. Any action you take upon the information on this video is strictly at your own risk, and we will not be liable for any damages or losses. It is the viewer's responsibility to use judgment, care and precautions if one plans to replicate. The following video might feature activity performed by our actors within controlled environment- please use judgment, care, and precaution if you plan to replicate. All product and company names shown in the video are trademarks™ or registered® tradema...

    published: 28 Jan 2021
  • 10 Scientific Discoveries You Should Be Worried About

    Just when you thought you had enough to worry about, here comes all the science. For this list, we’ll be looking at the most shocking scientific discoveries with potentially harmful long-term effects that you may not have heard (or heard enough) about. Our countdown includes Microplastics in Water, Lingering Radioactivity, The Supervolcano Under Yellowstone, and more! Which of these scares you the most? Let us know in the comments below! Watch more great science videos here: Top 10 Things We Wish Science Would Figure Out: https://youtu.be/t4Rw0xLNz-Y Top 10 Biggest Scientific Discoveries of 2020: https://youtu.be/2WxR_2-faYY Top 20 Biggest Scientific Discoveries of the Decade: https://youtu.be/tIvtkMRFj-Q Become a channel member to get access to special perks: https://www.youtub...

    published: 13 Mar 2023
  • 50 UNBELIEVABLE Scientific Discoveries Of The Decade

    Technology is advancing so rapidly that it's almost impossible to keep up with the ever-changing landscape of innovation. That's why we've compiled the 50 most insane new scientific discoveries of the last decade into one epic video! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfographicsshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/svGVM0TN All videos are based on publicly available information unless otherwise noted.

    published: 30 Oct 2022
  • Math Antics - Scientific Notation

    Learn More at mathantics.com Visit http://www.mathantics.com for more Free math videos and additional subscription based content!

    published: 01 May 2019
  • Feynman on Scientific Method.

    Physicist Richard Feynman explains the scientific and unscientific methods of understanding nature.

    published: 18 Feb 2011
Top 10 Greatest Scientific Discoveries of All Time
10:09

Top 10 Greatest Scientific Discoveries of All Time

  • Order:
  • Duration: 10:09
  • Uploaded Date: 29 Mar 2023
  • views: 100305
These are the scientific discoveries that changed the world. For this list, we’ll be looking at the most impactful scientific breakthroughs of all time. Our countdown includes The Human Genome Project, Quantum Mechanics, Germs, and more! Which scientific discovery do you think is the most significant? Let us know in the comments! Watch more great science videos here: Top 10 Things We Wish Science Would Figure Out: https://youtu.be/t4Rw0xLNz-Y Top 10 Biggest Scientific Discoveries of 2020: https://youtu.be/2WxR_2-faYY Top 20 Biggest Scientific Discoveries of the Decade: https://youtu.be/tIvtkMRFj-Q Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://www.watchmojo.com/play/id/62184 Have your idea become a video! https://wmojo.com/suggest Subscribe for more great content! https://wmojo.com/watchmojo-subscribe Visit our shop for awesome merch! https://shop.watchmojo.com/ Your trusted authority for Top 10 lists, reviews, tips and tricks, biographies, origins, and entertainment news #Science #ScientificDiscoveries #Discoveries #Scientific #Scientist #Education #History #AllTime #ChangedTheWorld #Breakthroughs
https://wn.com/Top_10_Greatest_Scientific_Discoveries_Of_All_Time
The Forgotten Origin of the Scientific Method
12:29

The Forgotten Origin of the Scientific Method

  • Order:
  • Duration: 12:29
  • Uploaded Date: 14 Feb 2023
  • views: 940764
SUBSCRIBE so you don’t miss a video! ►► http://bit.ly/iotbs_sub We’re on PATREON! Join the community https://www.patreon.com/itsokaytobesmart ↓↓↓ More info and sources below ↓↓↓ 500 years before the Scientific Revolution, the mathematician Al-Hassan Ibn al-Haytham spent hours in a dark room studying the light that filtered in. Not only did he revolutionize how we literally see the world, he pioneered the scientific method that is now the backbone of modern science. Sources: https://sites.google.com/view/sci-method-sources/home 0:00 Introduction 0:41 What is a camera obscura? 1:48 The mathematician who tried to dam the Nile 3:08 The origin of optics 3:56 Ancient ways of knowing 6:39 The birth of modern science 7:38 From hypothesis to experiment 8:44 How al-Haytham changed science history 10:13 Conclusion 11:40 Extras! ----------- High fives to all our Brain Trust Patrons: paul andre bouis Mark Littlehale Ali Freiburger Mehdi Damou Barbora Bei Burt Humburg Roy Lasris dani bowman David Johnston Salih Arslan Baerbel Winkler Robert Young Eric Meer Dustin Karen Haskell Join us on Patreon! https://patreon.com/itsokaytobesmart Twitter http://www.twitter.com/DrJoeHanson http://www.twitter.com/okaytobesmart Instagram http://www.instagram.com/DrJoeHanson http://www.instagram.com/okaytobesmart Merch https://store.dftba.com/collections/its-okay-to-be-smart Facebook https://www.facebook.com/itsokaytobesmartpbs/
https://wn.com/The_Forgotten_Origin_Of_The_Scientific_Method
Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUE
26:14

Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUE

  • Order:
  • Duration: 26:14
  • Uploaded Date: 17 Mar 2023
  • views: 834931
You'll be shocked when you learn how many famous conspiracy theories turned out to be real! For this list, we’ll be looking at the times scientific conspiracy theories ended up having an inkling of truth. Our countdown includes The Sugar Industry Paid Off Scientists, Breakfast Is Not the Most Important Meal of the Day, The CIA Drugged Citizens Without Their Knowledge, Bayer Spread HIV, and more! Which unproven conspiracies could you see on this list in the future? Let us know in the comments. Watch more great conspiracy videos here: Top 10 Conspiracy Theories That Turned Out to Be True: https://youtu.be/bldBqtgAX2o Top 20 Biggest Conspiracy Theories of All Time: https://youtu.be/z1feVpZrjtk Top 10 Scientific Conspiracy Theories That Turned Out to Be True: https://youtu.be/NB2f37nDdPo Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://www.watchmojo.com/play/id/60616 Have your idea become a video! https://wmojo.com/suggest Subscribe for more great content! https://wmojo.com/watchmojo-subscribe Visit our shop for awesome merch! https://shop.watchmojo.com/ Your trusted authority for Top 10 lists, reviews, tips and tricks, biographies, origins, and entertainment news #Science #Scientific #ScientificConspiracies #Conspiracies #ConspiracyTheories #Conspiracy #History #Experiments #Scientists
https://wn.com/Top_20_Scientific_Conspiracy_Theories_That_Turned_Out_To_Be_True
ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalam
14:38

ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalam

  • Order:
  • Duration: 14:38
  • Uploaded Date: 25 Mar 2023
  • views: 285959
SCIENTIFIC MALAYALI by Anish Mohan എന്റെ പുസ്തകം 'ജനാലകൾ (Janalakal)' വാങ്ങാൻ link-ൽ click ചെയ്യുക https://amzn.eu/d/ezXdSJY Email: scientificmalayali@gmail.com Seventh Fleet is the largest of the U.S. Navy's forward-deployed fleets. At any given time there are 50-70 ships and submarines, 150 aircraft, and more than 27,000 Sailors and Marines in Seventh Fleet. Commanded by a 3-star Navy Flag officer, Vice Adm. Karl Thomas, since July 8, 2021. Seventh Fleet’s area of operations spans more than 124-million square kilometers, stretching from the International Date Line to the western border of India; and from the Kuril Islands in the North to the Antarctic in the South. Seventh Fleet’s area of operations encompasses 36 maritime countries and 50% of the world’s population, including: The five largest foreign militaries: China, Russia, India, North Korea, and the Republic of Korea. Five U.S. Mutual Defense Treaty Allies: the Philippines, Australia, the Republic of Korea, Japan, and Thailand. For more than 75 years, Seventh Fleet has maintained a continuous forward presence in the Indo-Pacific, providing security and stability to the region. മനുഷ്യൻ അവന്റെ പൈത്രികം എന്ന് വിളിക്കുന്ന മിഥ്യാ ധാരാണകൾക്ക്‌ പകിട്ട്‌ നൽകാൻ ചമഞ്ഞ നിറം പിടിപ്പിച്ച കഥകളല്ലേ ചരിത്രം. കാലം മാറുമ്പോൾ, ദേശങ്ങൾ മാറുമ്പോൾ, ഭരണാധീകാരിക്കൾ മാറുമ്പോൾ ചരിത്രവും മാറും.. അതിന്റെ രൂപം മാറും, ഭാവം മാറും, നിറങ്ങൾ ആകെ മാറും അതിലുപരി അതിലെ കഥാപാത്രങ്ങൾ വേഷങ്ങൾ പരസ്പരം വച്ചുമാറും... പക്ഷേ മനുഷ്യൻ എന്ന ജീവിയുടെ യഥാർത്ഥ ചരിത്രം ഈ പുരാവൃത്തകഥകളിൽ എങ്ങും ഇല്ല എന്നത്താണ്‌ സത്യം. കാരണം അത്‌ രേഖപ്പെടുത്തിയിട്ടുള്ളത്‌ എന്റെയും നിങ്ങളുടെയും ശരീരങ്ങളിൽ തന്നെയാണ്‌. ജീനുകളിലും ക്രോമസോമുകളിലും എഴുതിയ ചരിത്രം... ശിലായുഗത്തിനും അപ്പുറത്തെവിടെയോ എഴുതിത്തുടങ്ങിയ ചരിത്രം…. #scientificmalayali #AnishMohan വല്ലാത്തൊരു കഥ | Vallathoru Katha, വല്ലാത്തൊരു കഥ | Vallathoru Katha, വല്ലാത്തൊരു കഥ | Vallathoru Katha, വല്ലാത്തൊരു കഥ | Vallathoru Katha സിംഹങ്ങളുടെ പോരാട്ടങ്ങൾ 1 | Marsh Lions | Lion of Masai Mara | Julius Manuel Julius Manuel, Julius Manuel, Julius Manuel, Julius Manuel, Julius Manuel¸ Julius Manuel അവസാനമായി പറഞ്ഞ വാക്കുകളും മോഷ്ടിക്കപ്പെട്ട തലച്ചോറും ! Untold Story of Albert Einstein In Malayalam Anurag Talks, Anurag Talks, Anurag Talks, Anurag Talks, Anurag Talks, Anurag Talks, ലോകത്ത് ഇന്ത്യ ഒന്നാമത്! പൂജ്യം മാത്രമല്ല മുഴുവന്‍ 1-9 വരെ കണ്ടെത്തിയതും ഇന്ത്യ തന്നെ! 15 സത്യങ്ങള്‍ One Nation Media One Nation Media, One Nation Media, One Nation Media, One Nation Media, One Nation Media India wonder the world ,ലോകത്തെ ഞെട്ടിച്ച് ഇന്ത്യ The Article19 The Article19, The Article19, The Article19, The Article19, The Article19, The Article19 JR STUDIO-Sci Talk Malayalam JR STUDIO-Sci Talk Malayalam, JR STUDIO-Sci Talk Malayalam, JR STUDIO-Sci Talk Malayalam, JR STUDIO-Sci Talk Malayalam, JR STUDIO-Sci Talk Malayalam, JR STUDIO-Sci Talk Malayalam PCD people call me dude PCD people call me dude, PCD people call me dude, PCD people call me dude
https://wn.com/ഏഴാം_കപ്പൽപട_|_Incredible_Story_Of_United_States_Seventh_Fleet_|_In_Malayalam
29 SCIENCE TRICKS that look like real MAGIC
14:09

29 SCIENCE TRICKS that look like real MAGIC

  • Order:
  • Duration: 14:09
  • Uploaded Date: 28 Jan 2021
  • views: 28542601
Timestamps: 0:05 Corn flakes and magnet 0:29 Watering cans trick 1:28 Fade out tricks 1:47 Jelly bears 2:09 Milk and cola 2:35 Water and magnets 3:17 Balance 3:39 Ferromagnetic fluid This video is made for entertainment purposes. We do not make any warranties about the completeness, safety and reliability. Any action you take upon the information on this video is strictly at your own risk, and we will not be liable for any damages or losses. It is the viewer's responsibility to use judgment, care and precautions if one plans to replicate. The following video might feature activity performed by our actors within controlled environment- please use judgment, care, and precaution if you plan to replicate. All product and company names shown in the video are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. ---------------------------------------------------------------------------------------- Our Social Media: Facebook: https://www.facebook.com/5-Minute-MAGIC-1983700165257683/ Instagram: https://www.instagram.com/5.min.crafts/ Twitter: https://twitter.com/5m_crafts 5-Minute Crafts PLAY: https://goo.gl/PEuLVt 5-Minute Crafts GIRLY: https://goo.gl/fWbJqz The Bright Side of Youtube: https://goo.gl/rQTJZz
https://wn.com/29_Science_Tricks_That_Look_Like_Real_Magic
10 Scientific Discoveries You Should Be Worried About
14:09

10 Scientific Discoveries You Should Be Worried About

  • Order:
  • Duration: 14:09
  • Uploaded Date: 13 Mar 2023
  • views: 57001
Just when you thought you had enough to worry about, here comes all the science. For this list, we’ll be looking at the most shocking scientific discoveries with potentially harmful long-term effects that you may not have heard (or heard enough) about. Our countdown includes Microplastics in Water, Lingering Radioactivity, The Supervolcano Under Yellowstone, and more! Which of these scares you the most? Let us know in the comments below! Watch more great science videos here: Top 10 Things We Wish Science Would Figure Out: https://youtu.be/t4Rw0xLNz-Y Top 10 Biggest Scientific Discoveries of 2020: https://youtu.be/2WxR_2-faYY Top 20 Biggest Scientific Discoveries of the Decade: https://youtu.be/tIvtkMRFj-Q Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://www.watchmojo.com/play/id/61733 Have your idea become a video! https://wmojo.com/suggest Subscribe for more great content! https://wmojo.com/watchmojo-subscribe Visit our shop for awesome merch! https://shop.watchmojo.com/ Your trusted authority for Top 10 lists, reviews, tips and tricks, biographies, origins, and entertainment news #Science #Discoveries #ScientificDiscoveries #Scariest #Scientist #Scary #ClimateChange #GlobalWarming #Supervolcano #MassExtinction
https://wn.com/10_Scientific_Discoveries_You_Should_Be_Worried_About
50 UNBELIEVABLE Scientific Discoveries Of The Decade
29:34

50 UNBELIEVABLE Scientific Discoveries Of The Decade

  • Order:
  • Duration: 29:34
  • Uploaded Date: 30 Oct 2022
  • views: 380491
Technology is advancing so rapidly that it's almost impossible to keep up with the ever-changing landscape of innovation. That's why we've compiled the 50 most insane new scientific discoveries of the last decade into one epic video! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfographicsshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/svGVM0TN All videos are based on publicly available information unless otherwise noted.
https://wn.com/50_Unbelievable_Scientific_Discoveries_Of_The_Decade
Math Antics - Scientific Notation
14:28

Math Antics - Scientific Notation

  • Order:
  • Duration: 14:28
  • Uploaded Date: 01 May 2019
  • views: 2223492
Learn More at mathantics.com Visit http://www.mathantics.com for more Free math videos and additional subscription based content!
https://wn.com/Math_Antics_Scientific_Notation
Feynman on Scientific Method.
9:59

Feynman on Scientific Method.

  • Order:
  • Duration: 9:59
  • Uploaded Date: 18 Feb 2011
  • views: 1987754
Physicist Richard Feynman explains the scientific and unscientific methods of understanding nature.
https://wn.com/Feynman_On_Scientific_Method.
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Top 10 Greatest Scientific Discoveries of All Time
    10:09
    Top 10 Greatest Scientific Discoveries of All Timeremove from playlist
  • The Forgotten Origin of the Scientific Method
    12:29
    The Forgotten Origin of the Scientific Methodremove from playlist
  • Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUE
    26:14
    Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUEremove from playlist
  • ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalam
    14:38
    ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalamremove from playlist
  • 29 SCIENCE TRICKS that look like real MAGIC
    14:09
    29 SCIENCE TRICKS that look like real MAGICremove from playlist
  • 10 Scientific Discoveries You Should Be Worried About
    14:09
    10 Scientific Discoveries You Should Be Worried Aboutremove from playlist
  • 50 UNBELIEVABLE Scientific Discoveries Of The Decade
    29:34
    50 UNBELIEVABLE Scientific Discoveries Of The Decaderemove from playlist
  • Math Antics - Scientific Notation
    14:28
    Math Antics - Scientific Notationremove from playlist
  • Feynman on Scientific Method.
    9:59
    Feynman on Scientific Method.remove from playlist
PLAYLIST TIME: 0:00 / 2:25:49

Top 10 Greatest Scientific Discoveries of All Time

These are the scientific discoveries that changed the world. For this list, we’ll be looking at the most impactful scientific breakthroughs of all time. Our countdown includes The Human Genome Project, Quantum Mechanics, Germs, and more! Which scientific discovery do you think is the most significant? Let us know in the comments! Watch more great science videos here: Top 10 Things We Wish Science Would Figure Out: https://youtu.be/t4Rw0xLNz-Y Top 10 Biggest Scientific Discoveries of 2020: https://youtu.be/2WxR_2-faYY Top 20 Biggest Scientific Discoveries of the Decade: https://youtu.be/tIvtkMRFj-Q Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://www.watchmojo.com/play/id/62184 Have your idea become a video! https://wmojo.com/suggest Subscribe for more great content! https://wmojo.com/watchmojo-subscribe Visit our shop for awesome merch! https://shop.watchmojo.com/ Your trusted authority for Top 10 lists, reviews, tips and tricks, biographies, origins, and entertainment news #Science #ScientificDiscoveries #Discoveries #Scientific #Scientist #Education #History #AllTime #ChangedTheWorld #Breakthroughs
10:09
Top 10 Greatest Scientific Discoveries of All Time
These are the scientific discoveries that changed the world. For this list, we’ll be looki...
published: 29 Mar 2023
Play in Full Screen
12:29
The Forgotten Origin of the Scientific Method
SUBSCRIBE so you don’t miss a video! ►► http://bit.ly/iotbs_sub We’re on PATREON! Join th...
published: 14 Feb 2023
Play in Full Screen
26:14
Top 20 Scientific Conspiracy Theories That Turned Out To Be TRUE
You'll be shocked when you learn how many famous conspiracy theories turned out to be real...
published: 17 Mar 2023
Play in Full Screen
14:38
ഏഴാം കപ്പൽപട | Incredible story of United States Seventh Fleet | in Malayalam
SCIENTIFIC MALAYALI by Anish Mohan എന്റെ പുസ്തകം 'ജനാലകൾ (Janalakal)' വാങ്ങാൻ link-ൽ cl...
published: 25 Mar 2023
Play in Full Screen
14:09
29 SCIENCE TRICKS that look like real MAGIC
Timestamps: 0:05 Corn flakes and magnet 0:29 Watering cans trick 1:28 Fade out tricks 1:47...
published: 28 Jan 2021
Play in Full Screen
14:09
10 Scientific Discoveries You Should Be Worried About
Just when you thought you had enough to worry about, here comes all the science. For this ...
published: 13 Mar 2023
Play in Full Screen
29:34
50 UNBELIEVABLE Scientific Discoveries Of The Decade
Technology is advancing so rapidly that it's almost impossible to keep up with the ever-ch...
published: 30 Oct 2022
Play in Full Screen
14:28
Math Antics - Scientific Notation
Learn More at mathantics.com Visit http://www.mathantics.com for more Free math videos and...
published: 01 May 2019
Play in Full Screen
9:59
Feynman on Scientific Method.
Physicist Richard Feynman explains the scientific and unscientific methods of understandin...
published: 18 Feb 2011
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: scientific

Edit

Semler Scientific: Wird diese Aktie den Bitcoin-Kurs �berbieten?

BitRSS 08 May 2025
Mit einer aggressiven Bitcoin-Strategie h�ufte Semler schon 3.634 BTC an. Zugleich ist die Aktie erstaunlich g�nstig. Wie Krypto-Anleger jetzt profitieren. � Source. BTC-ECHO BTC-ECHO ... .
Edit

As the US Cuts Scientific Talent, Europe Launches an Initiative to Attract It

Wired 08 May 2025
The Choose Europe for Science program will invest more than half a billion dollars between 2025 and 2027 to recruit researchers and scientists—especially from the United States ... .
Edit

HepaRegeniX Scientific Founder Covers HRX-215 Development and Clincial Data in Plenary at the European Association ...

Nasdaq Globe Newswire 08 May 2025
Prof. Lars Zender’s featured talk described HepaRegeniX’s lead candidate and its potential in increasing liver regeneration, from initial target discovery and drug development towards Phase Ia clinical trial results ... .
Edit

Lynch Regenerative Medicine Hires Hee as Chief Scientific Officer

Business Wire 08 May 2025
(LRMW), announced today that Charlie Hee, Ph.D., will join its team as Chief Scientific Officer ...
Edit

Core Scientific Announces Fiscal First Quarter 2025 Results

Business Wire 08 May 2025
AUSTIN, Texas--(BUSINESS WIRE)---- $CORZ #CORZ--Core Scientific, Inc. (NASDAQ.
Edit

The maths that tells us when a scientific discovery is real – or not

New Scientist 08 May 2025
When huge scientific discoveries are made, you may hear that they are “statistically significant” or pass a threshold called “5 sigma” – but those calculations can be manipulated to make claims seem grander than they are, finds Jacob Aron ... .
Edit

Core Scientific's Bitcoin Mining Revenue Falls Short Of Projections Despite $580M Q1 Profit

MENA FN 08 May 2025
(MENAFN - Crypto Breaking) Core Scientific, a prominent blockchain and AI company, reported a significant shortfall in Q1 revenue despite posting a remarkable $580 million profit for the same ... .
Edit

Core Scientific Reports $580M Q1 Profit but Misses Revenue Expectations

Crypto Economy 08 May 2025
TL;DR Core Scientific posted a $580.7M profit in Q1 2025, but revenue fell to $79.5M due to lower Bitcoin mining and a business shift ... Core Scientific Adapts to New Market Trends ... The move toward AI infrastructure wasn’t exclusive to Core Scientific.
Edit

May 8, 2025 - FDA Announces Completion of First AI-Assisted Scientific Review Pilot and Aggressive Agency-Wide AI Rollout Timeline (FDA - Food and Drug Administration)

Public Technologies 08 May 2025
Makary, M.D., M.P.H., today announced an aggressive timeline to scale use of artificial intelligence (AI) internally across all FDA centers by June 30, 2025, following the completion of a new generative AI pilot for scientific reviewers.
Edit

CB Scientific, Inc. (CBSC) Announces Corporate Name Change to Cardiac Biotech Solutions, Inc.

ACCESSWIRE 08 May 2025
LAS VEGAS, NV / ACCESS Newswire / May 8, 2025 / Cardiac Biotech Solutions, Inc ... "We believe the name Cardiac Biotech Solutions more accurately reflects our core mission of advancing heart health," said Charles Martin, Chief Executive Officer of CBSC.
Edit

Scientific Games Wins Three 2025 American Business Awards for Lottery Retail Technology Innovation and Instant Scratch Game Achievement

PR Newswire 08 May 2025
ATLANTA, May 8, 2025 /PRNewswire/ -- Scientific Games was recognized with three prestigious honors in the 23rd Annual American Business Awards ... Scientific Games was recognized with three 2025 American Business Awards ... ©2025 Scientific Games, LLC.
×