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

Moss

Mosses are small flowerless plants that typically grow in dense green clumps or mats, often in damp or shady locations. The individual plants are usually composed of simple, one-cell thick leaves, attached to a stem that may be branched or unbranched and has only a limited role in conducting water and nutrients. Although some species have vascular tissue this is generally poorly developed and structurally different from similar tissue found in other plants. They do not have seeds and after fertilisation develop sporophytes (unbranched stalks topped with single capsules containing spores). They are typically 0.2–10 cm (0.1–3.9 in) tall, though some species are much larger, like Dawsonia, the tallest moss in the world, which can grow to 50 cm (20 in) in height.

Mosses are commonly confused with lichens, hornworts, and liverworts. Lichens may superficially look like mosses, and have common names that include the word "moss" (e.g., "reindeer moss" or "iceland moss"), but are not related to mosses. Mosses, hornworts, and liverworts are collectively called "bryophytes". Bryophytes share the property of having the haploid gametophyte generation as the dominant phase of the life cycle. This contrasts with the pattern in all "vascular" plants (seed plants and pteridophytes), where the diploid sporophyte generation is dominant.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Moss

Mossé

Mossé is a French family name:

  • Gérald Mossé (b. 1967) jockey
  • Claude Mossé, (b. 1924) female French historian of ancient Greece
  • fr:Claude Mossé (journaliste), (b. 1928) male French journalist

  • Mossø

    Mossø is Denmark's third largest freshwater lake and Jutland's largest, as measured by surface area. The lake is located just east of the city of Skanderborg in east Jutland, but is part of both Skanderborg Municipality and Horsens Municipality. Mossø lies in the middle of the area and landscape known as Søhøjlandet (English: The Lake-highland).

    There is a small lake named Mossø in the forest of Rold Skov in Himmerland.

    Nature

    Both ospreys and white-tailed eagle is regularly observed at Mossø and the later have recently established here as a breeding bird, which is rare in Denmark.

    Mossø is part of the 4,470 ha Natura 2000 protection area, designated as number 52. The lake is also designated as an international bird protection area, with number F35.

    References

    Sources

  • Statistical Yearbook 2013 Statistics Denmark
  • Mossø and surrounding lakes National Survey and Cadastre of Denmark (KMS) 2012. Basic numbers. (Danish)
  • Mossø Skanderborg Municipality, Horsens Municipality, Danish Ministry for the Environment, 2008 (Danish)
  • Podcasts:

    Moss

    ALBUMS

    Moss

    Released 2011

    Moss

    ALBUMS

    Moss

    ALBUMS

    Moss

    [moss]

    Moss

    ALBUMS

    Moss

    ALBUMS

    Moss

    ALBUMS

    • Moss released: 2001

    MoSS

    ALBUMS

    • The Hidden Superpowers of Moss

      You may not think much about moss, but it has a hidden super power, and it's been used to save countless lives. Hosted by: Stefan Chin SciShow has a spinoff podcast! It's called SciShow Tangents. Check it out at http://www.scishowtangents.org ---------- Support SciShow by becoming a patron on Patreon: https://www.patreon.com/scishow ---------- Huge thanks go to the following Patreon supporters for helping us keep SciShow free for everyone forever: Alisa Sherbow, Silas Emrys, Drew Hart. Jeffrey Mckishen, James Knight, Christoph Schwanke, Jacob, Matt Curls, Christopher R Boucher, Eric Jensen, Adam Brainard, Nazara, GrowingViolet, Ash, Sam Lutfi, Piya Shedden, KatieMarie Magnone, charles george, Alex Hackman, Chris Peters, Kevin Bealer, Jason A Saslow ---------- Looking for SciShow elsewh...

      published: 24 Jun 2021
    • MOSS 1: Something Along the Lines of a Rainy Day

      As a meteorite plunges towards the earth, the inhabitants encounter a machine that changed everything! --FULL Music Credits-- Individual Artists: Adronn Bomb Boy FearOfDark HOME ItzMichaelPhillips Jeremy Blake Kanro Kevin Macleod KOAN Sound Kubbi polysided Pac-Man CE 2 OST Shirobon YOYLECAKE TRACKS (In Order of Appearance): 1) Meanwhile, In The Future (Remixed) - KOAN Sound 2) Broken Knuckle - polysided 3) CONSY - YOYLECAKE 4) Track 35 - YOYLECAKE 5) Minutes - YOYLECAKE 6) Branchless - YOYLECAKE 7) Ignition, Set, Go! - Bomb Boy 8) Streetlight - YOYLECAKE 9) Funknitium-99 - FearOfDark 10) Carnivale Intrigue - Kevin Macleod 11) Cascade - Kubbi 12) This Will Pass - HOME 13) Climbing Out - HOME 14) Biggie Bones Has Drum Jam - polysided 15) SsabDuol - Kanro 16) Track 27a - YOYLECAKE 17) Trac...

      published: 15 Jun 2020
    • MOSSI - BLACK MARKET

      "BLACK MARKET" Beat/ LAYKX Mix.Master/ YAN • SEVENTHROOM7 SPOTIFY⬇️ https://open.spotify.com/track/0mSkG5az9CxSizcPaJyLRu?si=YBXZYCiOTamxVESAOQ2OSA HPS®️

      published: 15 Sep 2024
    • All About Mosses

      #moss #ngscience #plants https://ngscience.com Mosses are fascinating little plants that you've probably seen growing on tree trunks, rocks, or even pushing up through cracks in the pavement. Mosses are a type of plant known as a bryophyte, and they've been around for a really long time — over 400 million years! There are about 12,000 different kinds of moss, found all over the world, from damp forests to dry deserts. Unlike bigger plants, mosses are very simple. They don't have true roots, stems, or leaves like most plants. Instead, they have tiny leaf-like structures, called leaflets, and thin, thread-like structures called rhizoids that they use to attach themselves to surfaces and absorb water. Mosses are also unique because of how they reproduce. Instead of making seeds like many...

      published: 11 Aug 2023
    • How to Make Kokedama | tutorial and care, live moss ball houseplant

      Complete live moss kokedama guide. Everything you need to know to make kokedama 🌳 ❀ Materials mesh bag - https://amzn.to/3Z9QzDk akadama - https://amzn.to/4e6kl0c green thread - https://amzn.to/4e5nrRV fishing line - https://amzn.to/4cJ2IlW sphagnum moss - https://amzn.to/3XtJoUj fertilizer - https://amzn.to/4cPzCBe scissors - https://amzn.to/3AMT8kD cushion moss - https://tidd.ly/4dMaP2l sheet moss - https://tidd.ly/4dMaP2l ❀ Grow Lights soltech Grove Light (benji15 for 15% off) - https://soltech.com/products/grove-led-grow-light?srsltid=AfmBOopQ15BddDh3nd-1wd7Eldd6raOVmQEReyVSFn6Qg_Kk8uPTE0D_ soltech Vita Bulb (benji15 for 15% off) - https://soltech.com/products/vita-grow-light?_pos=1&_sid=3256ad7b3&_ss=r hiro Light - https://amzn.to/3MqMVO3 budget grow bulb - https://amzn.to/3z2cgum ...

      published: 01 Sep 2024
    • Cosmo Sheldrake - The Moss

      Stream the new album Eye To The Ear here: https://found.ee/eyetotheear My music, shows/tour dates, merch, socials and more can be found here https://linktr.ee/cosmosheldrake Lyrics: Well, legend has it that the moss grows on the north side of the trees, Well, legend has it that when the rain comes down, all the worms come up to breathe, Well, legend has it that when the sunbeams come, all the plants they eat them with their leaves, Well, legend has it that the world spins round on an axis of twenty-three degrees. But have you heard the story of the rabbit in the moon, Or the cow that hopped the planets, while straddling a spoon, Or she, who leapt up mountains, while whistling up a tune, And swapped her songs with swallows, while riding on a broom. Well we can all learn things both m...

      published: 05 Mar 2014
    • You Aren’t Paying Enough Attention to Moss

      Mosses were among the first land plants to evolve out of the ocean roughly 450 million years ago. It grows everywhere, from the world’s harshest landscapes to cracks in the sidewalk. This episode of Untold Earth gets up close and personal with the mosses of the Hoh Rainforest to understand their vital role in this ecosystem and potential to offer a glimpse into our planet’s future. Untold Earth explores the seeming impossibilities behind our planet’s strangest, most unique natural wonders. From fragile, untouched ecosystems to familiar but unexplained occurrences in our own backyard, this series chases insight into natural phenomena through the voices that know them best. Untold Earth is produced in partnership with Atlas Obscura and Nature. ***** PBS Member Stations rely on viewers li...

      published: 18 Jul 2023
    • How To Grow & Propagate Moss For Terrariums!

      published: 29 Nov 2023
    • My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardener

      1st one : https://youtube.com/shorts/nAkpJgmbeLo?si=RwDVblbceDfNx2YB 2nd one: https://youtube.com/shorts/HAas4rs7T_c?si=KVLE51JqGVLtbI0V 3rd one: https://youtube.com/shorts/ec1-vzCSGGg?si=AQOmYgT4uLd6OcrA 4th one: https://youtube.com/shorts/9SSbpJQz2Co?si=ez6sJT7mpYTVXIsF

      published: 17 Oct 2024
    • Moss & Lichen: Which One Is Actually a Plant?

      This video was sponsored by Skillshare. The first 1000 people to use the link will get a free trial of Skillshare Premium Membership: https://skl.sh/journeytothemicrocosmos01211 Follow Journey to the Microcosmos: Twitter: https://twitter.com/journeytomicro Facebook: https://www.facebook.com/JourneyToMicro Support the Microcosmos: http://www.patreon.com/journeytomicro More from Jam’s Germs: Instagram: https://www.instagram.com/jam_and_germs YouTube: https://www.youtube.com/channel/UCn4UedbiTeN96izf-CxEPbg Hosted by Hank Green: Twitter: https://twitter.com/hankgreen YouTube: https://www.youtube.com/vlogbrothers Music by Andrew Huang: https://www.youtube.com/andrewhuang Journey to the Microcosmos is a Complexly production. Find out more at https://www.complexly.com Stock video from: ht...

      published: 18 Jan 2021
    The Hidden Superpowers of Moss
    4:43

    The Hidden Superpowers of Moss

    • Order:
    • Duration: 4:43
    • Uploaded Date: 24 Jun 2021
    • views: 221443
    You may not think much about moss, but it has a hidden super power, and it's been used to save countless lives. Hosted by: Stefan Chin SciShow has a spinoff podcast! It's called SciShow Tangents. Check it out at http://www.scishowtangents.org ---------- Support SciShow by becoming a patron on Patreon: https://www.patreon.com/scishow ---------- Huge thanks go to the following Patreon supporters for helping us keep SciShow free for everyone forever: Alisa Sherbow, Silas Emrys, Drew Hart. Jeffrey Mckishen, James Knight, Christoph Schwanke, Jacob, Matt Curls, Christopher R Boucher, Eric Jensen, Adam Brainard, Nazara, GrowingViolet, Ash, Sam Lutfi, Piya Shedden, KatieMarie Magnone, charles george, Alex Hackman, Chris Peters, Kevin Bealer, Jason A Saslow ---------- Looking for SciShow elsewhere on the internet? Facebook: http://www.facebook.com/scishow Twitter: http://www.twitter.com/scishow Tumblr: http://scishow.tumblr.com Instagram: http://instagram.com/thescishow ---------- Sources: https://www.sciencemag.org/news/2013/12/scienceshot-eating-moss-survive https://www.sciencedaily.com/releases/2010/06/100610104551.htm https://onlinelibrary.wiley.com/doi/full/10.1002/ange.201000825?saml_referrer https://www.infezmed.it/media/journal/Vol_25_2_2017_16.pdf https://www.smithsonianmag.com/science-nature/how-humble-moss-helped-heal-wounds-thousands-WWI-180963081/ https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1584876/pdf/canmedaj00338-0031.pdf https://www.moorsforthefuture.org.uk/our-purpose/habitats-for-wildlife/boggy-facts-and-figures https://pubmed.ncbi.nlm.nih.gov/20957965/ http://nmsp.cals.cornell.edu/publications/factsheets/factsheet22.pdf https://www.britishbryologicalsociety.org.uk/wp-content/uploads/2020/12/FB110_Ayres_Sphagnum.pdf https://www.chemistryworld.com/podcasts/guncotton-or-nitrocellulose/9107.article https://www.utpjournals.press/doi/pdf/10.3138/cbmh.6.1.27 https://www.jstor.org/stable/3237483?seq=1#metadata_info_tab_contents https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6331942/ https://www.sciencedirect.com/science/article/pii/S1470160X18302838 https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2634003/ https://www.sciencedirect.com/science/article/pii/S2221618915000372 https://www.washingtonpost.com/lifestyle/home/should-sustainable-gardeners-use-peat-moss/2017/05/09/1fc746f0-3118-11e7-9534-00e4656c22aa_story.html https://www.sciencenews.org/article/bogs-peatlands-fire-climate-change http://www-plb.ucdavis.edu/courses/bis/1c/text/Chapter22nf.pdf https://link.springer.com/article/10.1007/s10661-008-0203-z https://www.ncbi.nlm.nih.gov/pmc/articles/PMC88973/ Images https://commons.wikimedia.org/wiki/File:Peat_fire_in_Selangor,_Malaysia_on_5_June_2013.JPG https://www.istockphoto.com/photo/sphagnum-moss-gm172952983-6616761 https://commons.wikimedia.org/wiki/File:Making_sphagnum_moss_dressings,_University_of_Toronto.jpg https://www.istockphoto.com/photo/bog-at-derrigimlagh-connemara-ireland-gm1074737772-287693178 https://www.istockphoto.com/photo/natural-background-of-green-lichen-moss-view-from-above-gm1263666933-369923159 https://www.istockphoto.com/photo/boggy-area-of-dartmoor-with-sphagnum-moss-gm91258927-7644359 https://commons.wikimedia.org/wiki/File:Planes_of_WW1.jpg https://commons.wikimedia.org/wiki/File:Nitrocellulose_02.ogv https://www.istockphoto.com/photo/sphagnum-moss-jersey-gm183363432-15259532 https://commons.wikimedia.org/wiki/File:American_Red_Cross_-_Classes_in_Red_Cross_Work_-_France_-_Picking_over_sphagnum_moss_which_comes_from_Scotland_and_Ireland_and_is_used_on_woulds_as_an_outer_absorbent_pad_in_the_A.R.C._workrooms_for_surgical_dres(...)_-_NARA_-_20803980.jpg https://www.storyblocks.com/video/stock/macro-footage-of-green-moss-in-nature-qpbt1ri
    https://wn.com/The_Hidden_Superpowers_Of_Moss
    MOSS 1: Something Along the Lines of a Rainy Day
    46:14

    MOSS 1: Something Along the Lines of a Rainy Day

    • Order:
    • Duration: 46:14
    • Uploaded Date: 15 Jun 2020
    • views: 4106421
    As a meteorite plunges towards the earth, the inhabitants encounter a machine that changed everything! --FULL Music Credits-- Individual Artists: Adronn Bomb Boy FearOfDark HOME ItzMichaelPhillips Jeremy Blake Kanro Kevin Macleod KOAN Sound Kubbi polysided Pac-Man CE 2 OST Shirobon YOYLECAKE TRACKS (In Order of Appearance): 1) Meanwhile, In The Future (Remixed) - KOAN Sound 2) Broken Knuckle - polysided 3) CONSY - YOYLECAKE 4) Track 35 - YOYLECAKE 5) Minutes - YOYLECAKE 6) Branchless - YOYLECAKE 7) Ignition, Set, Go! - Bomb Boy 8) Streetlight - YOYLECAKE 9) Funknitium-99 - FearOfDark 10) Carnivale Intrigue - Kevin Macleod 11) Cascade - Kubbi 12) This Will Pass - HOME 13) Climbing Out - HOME 14) Biggie Bones Has Drum Jam - polysided 15) SsabDuol - Kanro 16) Track 27a - YOYLECAKE 17) Track 31 - YOYLECAKE 18) Whimsy - ItzMichaelPhillips 19) Spaceship - ItzMichaelPhillips 20) Adronn - Hugs 21) Season Coming to an End - YOYLECAKE 22) Track 01 - YOYLECAKE 23) Delta - ItzMichaelPhillips 24) Night Swim - HOME 25) Head First - HOME 26) Shift 2 - polysided 27) Bingo Entry - polysided 28) Shift 3 - polysided 29) Pac Tronica - Pac-Man CE 2 OST 30) Galaga35;2281 - Pac-Man CE 2 OST 31) Ice Stinger - polysided 32) Foggy Overhead - polysided 33) Fox - Shirobon 34) Boss Battle - Pac-Man CE 2 OST 35) 2008 - Kanro 36) Sunspots - Jeremy Blake Intro) Shine - PIKASONIC & Couple N Video editing by neroyuno: https://www.youtube.com/channel/UCw2okTnIjn7vr6kL2cjIdhQ Discord Server: Poly House - https://discord.gg/CRb5QYG MOSS Server - https://discord.gg/5rtRzCb Twitter: https://twitter.com/polysided9
    https://wn.com/Moss_1_Something_Along_The_Lines_Of_A_Rainy_Day
    MOSSI - BLACK MARKET
    3:02

    MOSSI - BLACK MARKET

    • Order:
    • Duration: 3:02
    • Uploaded Date: 15 Sep 2024
    • views: 2158154
    "BLACK MARKET" Beat/ LAYKX Mix.Master/ YAN • SEVENTHROOM7 SPOTIFY⬇️ https://open.spotify.com/track/0mSkG5az9CxSizcPaJyLRu?si=YBXZYCiOTamxVESAOQ2OSA HPS®️
    https://wn.com/Mossi_Black_Market
    All About Mosses
    2:28

    All About Mosses

    • Order:
    • Duration: 2:28
    • Uploaded Date: 11 Aug 2023
    • views: 27256
    #moss #ngscience #plants https://ngscience.com Mosses are fascinating little plants that you've probably seen growing on tree trunks, rocks, or even pushing up through cracks in the pavement. Mosses are a type of plant known as a bryophyte, and they've been around for a really long time — over 400 million years! There are about 12,000 different kinds of moss, found all over the world, from damp forests to dry deserts. Unlike bigger plants, mosses are very simple. They don't have true roots, stems, or leaves like most plants. Instead, they have tiny leaf-like structures, called leaflets, and thin, thread-like structures called rhizoids that they use to attach themselves to surfaces and absorb water. Mosses are also unique because of how they reproduce. Instead of making seeds like many plants, mosses create tiny particles called spores. The spores are help is a container called a capsule. When the spores are mature, the capsule opens and the spores are released into the air. They float away in the wind or get carried off by water, and if they land in a spot that's just right (usually somewhere damp), they'll grow into a new moss plant. One of the coolest things about moss is that it can grow in places where many other plants can't. You can find mosses living on rocks, tree barks, and even in the harsh conditions of the Arctic! They don't need a lot of light, so you'll often find them in shady, moist places like the forest floor. Mosses are important for our environment. They help to prevent soil erosion by gripping onto the soil with their rhizoids. Mosses can also hold a lot of water, which helps keep the soil wet. This is helpful for other plants and some animals, especially when there's not a lot of rain. So, the next time you spot a patch of moss, take a closer look. These tiny plants have a lot to offer and are an important part of our natural world!
    https://wn.com/All_About_Mosses
    How to Make Kokedama | tutorial and care, live moss ball houseplant
    29:26

    How to Make Kokedama | tutorial and care, live moss ball houseplant

    • Order:
    • Duration: 29:26
    • Uploaded Date: 01 Sep 2024
    • views: 231218
    Complete live moss kokedama guide. Everything you need to know to make kokedama 🌳 ❀ Materials mesh bag - https://amzn.to/3Z9QzDk akadama - https://amzn.to/4e6kl0c green thread - https://amzn.to/4e5nrRV fishing line - https://amzn.to/4cJ2IlW sphagnum moss - https://amzn.to/3XtJoUj fertilizer - https://amzn.to/4cPzCBe scissors - https://amzn.to/3AMT8kD cushion moss - https://tidd.ly/4dMaP2l sheet moss - https://tidd.ly/4dMaP2l ❀ Grow Lights soltech Grove Light (benji15 for 15% off) - https://soltech.com/products/grove-led-grow-light?srsltid=AfmBOopQ15BddDh3nd-1wd7Eldd6raOVmQEReyVSFn6Qg_Kk8uPTE0D_ soltech Vita Bulb (benji15 for 15% off) - https://soltech.com/products/vita-grow-light?_pos=1&_sid=3256ad7b3&_ss=r hiro Light - https://amzn.to/3MqMVO3 budget grow bulb - https://amzn.to/3z2cgum [ my links ] shop: https://www.benjiplant.com/ patreon: https://www.patreon.com/benjiplant instagram: https://www.instagram.com/benji_plant?igsh=YzVkODRmOTdmMw%3D%3D&utm_source=qr tiktok: https://www.tiktok.com/@benjiplant business inquiries: benjiplantcontact@gmail.com ❀ Timestamps 0:00 - intro & what is kokedama? 1:48 - suitable plants & moss 4:22 - materials 4:43 - sheet moss kokedama 15:38 - cushion moss kokedama 19:57 - watering 23:24 - lighting 26:25 - fertilization Plants Cyperus papyrus, bellflower, blue eyed grass, ficus elastica, ficus retusa, tiger bark ficus, horsetail rush, white star grass, nandina bamboo, schefflera, serissa foetida, abutilon, pothos, philodendron, African violet, begonia, ferns, grape ivy, dracaenas, rabbit's foot fern, peperomia, prayer plant, creeping fig, and so many more!
    https://wn.com/How_To_Make_Kokedama_|_Tutorial_And_Care,_Live_Moss_Ball_Houseplant
    Cosmo Sheldrake - The Moss
    4:03

    Cosmo Sheldrake - The Moss

    • Order:
    • Duration: 4:03
    • Uploaded Date: 05 Mar 2014
    • views: 14934505
    Stream the new album Eye To The Ear here: https://found.ee/eyetotheear My music, shows/tour dates, merch, socials and more can be found here https://linktr.ee/cosmosheldrake Lyrics: Well, legend has it that the moss grows on the north side of the trees, Well, legend has it that when the rain comes down, all the worms come up to breathe, Well, legend has it that when the sunbeams come, all the plants they eat them with their leaves, Well, legend has it that the world spins round on an axis of twenty-three degrees. But have you heard the story of the rabbit in the moon, Or the cow that hopped the planets, while straddling a spoon, Or she, who leapt up mountains, while whistling up a tune, And swapped her songs with swallows, while riding on a broom. Well we can all learn things both many and a-few, From that old hunched woman who lived inside a shoe, Or the girl that sang all day and by night she ate tear soup, Or, the man who drank too much and got the brewers' droop. Come listen up all ye fair maids to how the moral goes, Nobody knew and nobody knows, How the pobble was robbed of his twice five toes, Or how the dong came to own a luminous nose, Or how the jumblies went to sea in a sieve that they rowed, And came to shore by the chankly bore, where the bong trees grow, Where the jabberwocky's small green tentacles do flow, And the quanglewangle plays, in the rain and the snow.
    https://wn.com/Cosmo_Sheldrake_The_Moss
    You Aren’t Paying Enough Attention to Moss
    5:42

    You Aren’t Paying Enough Attention to Moss

    • Order:
    • Duration: 5:42
    • Uploaded Date: 18 Jul 2023
    • views: 113585
    Mosses were among the first land plants to evolve out of the ocean roughly 450 million years ago. It grows everywhere, from the world’s harshest landscapes to cracks in the sidewalk. This episode of Untold Earth gets up close and personal with the mosses of the Hoh Rainforest to understand their vital role in this ecosystem and potential to offer a glimpse into our planet’s future. Untold Earth explores the seeming impossibilities behind our planet’s strangest, most unique natural wonders. From fragile, untouched ecosystems to familiar but unexplained occurrences in our own backyard, this series chases insight into natural phenomena through the voices that know them best. Untold Earth is produced in partnership with Atlas Obscura and Nature. ***** PBS Member Stations rely on viewers like you. To support your local station, go to: http://to.pbs.org/DonateTerra ***** Subscribe to PBS Terra so you never miss an episode! https://bit.ly/3mOfd77 And keep up with Untold Earth and PBS Terra on: Facebook: https://www.facebook.com/PBSDigitalStudios Twitter: https://twitter.com/pbsds Instagram: https://www.instagram.com/pbsds
    https://wn.com/You_Aren’T_Paying_Enough_Attention_To_Moss
    How To Grow & Propagate Moss For Terrariums!
    0:44

    How To Grow & Propagate Moss For Terrariums!

    • Order:
    • Duration: 0:44
    • Uploaded Date: 29 Nov 2023
    • views: 214894
    https://wn.com/How_To_Grow_Propagate_Moss_For_Terrariums
    My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardener
    0:21

    My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardener

    • Order:
    • Duration: 0:21
    • Uploaded Date: 17 Oct 2024
    • views: 569
    1st one : https://youtube.com/shorts/nAkpJgmbeLo?si=RwDVblbceDfNx2YB 2nd one: https://youtube.com/shorts/HAas4rs7T_c?si=KVLE51JqGVLtbI0V 3rd one: https://youtube.com/shorts/ec1-vzCSGGg?si=AQOmYgT4uLd6OcrA 4th one: https://youtube.com/shorts/9SSbpJQz2Co?si=ez6sJT7mpYTVXIsF
    https://wn.com/My_Terrariums_Are_Still_Doing_Well😇☘️_Shorts_Terrarium_Moss_Nanogardener
    Moss & Lichen: Which One Is Actually a Plant?
    8:05

    Moss & Lichen: Which One Is Actually a Plant?

    • Order:
    • Duration: 8:05
    • Uploaded Date: 18 Jan 2021
    • views: 183387
    This video was sponsored by Skillshare. The first 1000 people to use the link will get a free trial of Skillshare Premium Membership: https://skl.sh/journeytothemicrocosmos01211 Follow Journey to the Microcosmos: Twitter: https://twitter.com/journeytomicro Facebook: https://www.facebook.com/JourneyToMicro Support the Microcosmos: http://www.patreon.com/journeytomicro More from Jam’s Germs: Instagram: https://www.instagram.com/jam_and_germs YouTube: https://www.youtube.com/channel/UCn4UedbiTeN96izf-CxEPbg Hosted by Hank Green: Twitter: https://twitter.com/hankgreen YouTube: https://www.youtube.com/vlogbrothers Music by Andrew Huang: https://www.youtube.com/andrewhuang Journey to the Microcosmos is a Complexly production. Find out more at https://www.complexly.com Stock video from: https://www.videoblocks.com SOURCES: https://www.fs.fed.us/wildflowers/beauty/lichens/about.shtml https://www.thoughtco.com/non-vascular-plants-4126545 https://www.nps.gov/arch/learn/nature/mossesandliverworts.htm https://www.discovermagazine.com/the-sciences/lichens-fungi-that-have-discovered-agriculture https://science.sciencemag.org/content/353/6298/488 https://www.theatlantic.com/science/archive/2019/01/how-lichens-explain-and-re-explain-world/580681/ https://science.sciencemag.org/content/353/6297/337.summary https://www.fs.fed.us/wildflowers/beauty/lichens/habitat.shtml https://www.nytimes.com/2019/11/19/science/lichens-plants-evolution.html https://bsapubs.onlinelibrary.wiley.com/doi/full/10.3732/ajb.1000316 https://www.pnas.org/content/113/35/9704
    https://wn.com/Moss_Lichen_Which_One_Is_Actually_A_Plant
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Hidden Superpowers of Moss
      4:43
      The Hidden Superpowers of Mossremove from playlist
    • MOSS 1: Something Along the Lines of a Rainy Day
      46:14
      MOSS 1: Something Along the Lines of a Rainy Dayremove from playlist
    • MOSSI - BLACK MARKET
      3:02
      MOSSI - BLACK MARKETremove from playlist
    • All About Mosses
      2:28
      All About Mossesremove from playlist
    • How to Make Kokedama | tutorial and care, live moss ball houseplant
      29:26
      How to Make Kokedama | tutorial and care, live moss ball houseplantremove from playlist
    • Cosmo Sheldrake - The Moss
      4:03
      Cosmo Sheldrake - The Mossremove from playlist
    • You Aren’t Paying Enough Attention to Moss
      5:42
      You Aren’t Paying Enough Attention to Mossremove from playlist
    • My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardener
      0:21
      My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardenerremove from playlist
    • Moss & Lichen: Which One Is Actually a Plant?
      8:05
      Moss & Lichen: Which One Is Actually a Plant?remove from playlist
    PLAYLIST TIME: 0:00 / 1:44:48

    The Hidden Superpowers of Moss

    You may not think much about moss, but it has a hidden super power, and it's been used to save countless lives. Hosted by: Stefan Chin SciShow has a spinoff podcast! It's called SciShow Tangents. Check it out at http://www.scishowtangents.org ---------- Support SciShow by becoming a patron on Patreon: https://www.patreon.com/scishow ---------- Huge thanks go to the following Patreon supporters for helping us keep SciShow free for everyone forever: Alisa Sherbow, Silas Emrys, Drew Hart. Jeffrey Mckishen, James Knight, Christoph Schwanke, Jacob, Matt Curls, Christopher R Boucher, Eric Jensen, Adam Brainard, Nazara, GrowingViolet, Ash, Sam Lutfi, Piya Shedden, KatieMarie Magnone, charles george, Alex Hackman, Chris Peters, Kevin Bealer, Jason A Saslow ---------- Looking for SciShow elsewhere on the internet? Facebook: http://www.facebook.com/scishow Twitter: http://www.twitter.com/scishow Tumblr: http://scishow.tumblr.com Instagram: http://instagram.com/thescishow ---------- Sources: https://www.sciencemag.org/news/2013/12/scienceshot-eating-moss-survive https://www.sciencedaily.com/releases/2010/06/100610104551.htm https://onlinelibrary.wiley.com/doi/full/10.1002/ange.201000825?saml_referrer https://www.infezmed.it/media/journal/Vol_25_2_2017_16.pdf https://www.smithsonianmag.com/science-nature/how-humble-moss-helped-heal-wounds-thousands-WWI-180963081/ https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1584876/pdf/canmedaj00338-0031.pdf https://www.moorsforthefuture.org.uk/our-purpose/habitats-for-wildlife/boggy-facts-and-figures https://pubmed.ncbi.nlm.nih.gov/20957965/ http://nmsp.cals.cornell.edu/publications/factsheets/factsheet22.pdf https://www.britishbryologicalsociety.org.uk/wp-content/uploads/2020/12/FB110_Ayres_Sphagnum.pdf https://www.chemistryworld.com/podcasts/guncotton-or-nitrocellulose/9107.article https://www.utpjournals.press/doi/pdf/10.3138/cbmh.6.1.27 https://www.jstor.org/stable/3237483?seq=1#metadata_info_tab_contents https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6331942/ https://www.sciencedirect.com/science/article/pii/S1470160X18302838 https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2634003/ https://www.sciencedirect.com/science/article/pii/S2221618915000372 https://www.washingtonpost.com/lifestyle/home/should-sustainable-gardeners-use-peat-moss/2017/05/09/1fc746f0-3118-11e7-9534-00e4656c22aa_story.html https://www.sciencenews.org/article/bogs-peatlands-fire-climate-change http://www-plb.ucdavis.edu/courses/bis/1c/text/Chapter22nf.pdf https://link.springer.com/article/10.1007/s10661-008-0203-z https://www.ncbi.nlm.nih.gov/pmc/articles/PMC88973/ Images https://commons.wikimedia.org/wiki/File:Peat_fire_in_Selangor,_Malaysia_on_5_June_2013.JPG https://www.istockphoto.com/photo/sphagnum-moss-gm172952983-6616761 https://commons.wikimedia.org/wiki/File:Making_sphagnum_moss_dressings,_University_of_Toronto.jpg https://www.istockphoto.com/photo/bog-at-derrigimlagh-connemara-ireland-gm1074737772-287693178 https://www.istockphoto.com/photo/natural-background-of-green-lichen-moss-view-from-above-gm1263666933-369923159 https://www.istockphoto.com/photo/boggy-area-of-dartmoor-with-sphagnum-moss-gm91258927-7644359 https://commons.wikimedia.org/wiki/File:Planes_of_WW1.jpg https://commons.wikimedia.org/wiki/File:Nitrocellulose_02.ogv https://www.istockphoto.com/photo/sphagnum-moss-jersey-gm183363432-15259532 https://commons.wikimedia.org/wiki/File:American_Red_Cross_-_Classes_in_Red_Cross_Work_-_France_-_Picking_over_sphagnum_moss_which_comes_from_Scotland_and_Ireland_and_is_used_on_woulds_as_an_outer_absorbent_pad_in_the_A.R.C._workrooms_for_surgical_dres(...)_-_NARA_-_20803980.jpg https://www.storyblocks.com/video/stock/macro-footage-of-green-moss-in-nature-qpbt1ri
    4:43
    The Hidden Superpowers of Moss
    You may not think much about moss, but it has a hidden super power, and it's been used to ...
    published: 24 Jun 2021
    Play in Full Screen
    46:14
    MOSS 1: Something Along the Lines of a Rainy Day
    As a meteorite plunges towards the earth, the inhabitants encounter a machine that changed...
    published: 15 Jun 2020
    Play in Full Screen
    3:02
    MOSSI - BLACK MARKET
    "BLACK MARKET" Beat/ LAYKX Mix.Master/ YAN • SEVENTHROOM7 SPOTIFY⬇️ https://open.spotify....
    published: 15 Sep 2024
    Play in Full Screen
    2:28
    All About Mosses
    #moss #ngscience #plants https://ngscience.com Mosses are fascinating little plants that ...
    published: 11 Aug 2023
    Play in Full Screen
    29:26
    How to Make Kokedama | tutorial and care, live moss ball houseplant
    Complete live moss kokedama guide. Everything you need to know to make kokedama 🌳 ❀ Mater...
    published: 01 Sep 2024
    Play in Full Screen
    4:03
    Cosmo Sheldrake - The Moss
    Stream the new album Eye To The Ear here: https://found.ee/eyetotheear My music, shows/tou...
    published: 05 Mar 2014
    Play in Full Screen
    5:42
    You Aren’t Paying Enough Attention to Moss
    Mosses were among the first land plants to evolve out of the ocean roughly 450 million yea...
    published: 18 Jul 2023
    Play in Full Screen
    0:44
    How To Grow & Propagate Moss For Terrariums!
    published: 29 Nov 2023
    Play in Full Screen
    0:21
    My terrariums are still doing well😇☘️#shorts #terrarium #moss #nanogardener
    1st one : https://youtube.com/shorts/nAkpJgmbeLo?si=RwDVblbceDfNx2YB 2nd one: https://you...
    published: 17 Oct 2024
    Play in Full Screen
    8:05
    Moss & Lichen: Which One Is Actually a Plant?
    This video was sponsored by Skillshare. The first 1000 people to use the link will get a f...
    published: 18 Jan 2021
    Play in Full Screen

    Moss

    Mosses are small flowerless plants that typically grow in dense green clumps or mats, often in damp or shady locations. The individual plants are usually composed of simple, one-cell thick leaves, attached to a stem that may be branched or unbranched and has only a limited role in conducting water and nutrients. Although some species have vascular tissue this is generally poorly developed and structurally different from similar tissue found in other plants. They do not have seeds and after fertilisation develop sporophytes (unbranched stalks topped with single capsules containing spores). They are typically 0.2–10 cm (0.1–3.9 in) tall, though some species are much larger, like Dawsonia, the tallest moss in the world, which can grow to 50 cm (20 in) in height.

    Mosses are commonly confused with lichens, hornworts, and liverworts. Lichens may superficially look like mosses, and have common names that include the word "moss" (e.g., "reindeer moss" or "iceland moss"), but are not related to mosses. Mosses, hornworts, and liverworts are collectively called "bryophytes". Bryophytes share the property of having the haploid gametophyte generation as the dominant phase of the life cycle. This contrasts with the pattern in all "vascular" plants (seed plants and pteridophytes), where the diploid sporophyte generation is dominant.

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Moss
    '); } 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)); } }); }); }); // -->
    ×