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

Commune

A commune (the French word appearing in the 12th century from Medieval Latin communia, meaning a large gathering of people sharing a common life; from Latin communis, things held in common) is an intentional community of people living together, sharing common interests, property, possessions, resources, and, in some communes, work and income and assets. In addition to the communal economy, consensus decision-making, non-hierarchical structures and ecological living have become important core principles for many communes. Andrew Jacobs of The New York Times wrote that, contrary to popular misconceptions, "most communes of the '90s are not free-love refuges for flower children, but well-ordered, financially solvent cooperatives where pragmatics, not psychedelics, rule the day." There are many contemporary intentional communities all over the world, a list of which can be found at the Fellowship for Intentional Community (FIC).

For the usually larger-scale, political entities in communist political theory, see socialist communes, which are similar but distinct social organizations.

Commune (disambiguation)

Commune may refer to:

  • Commune, a human community in which resources are shared
  • A type of township or municipality
  • One of the Communes of France
  • One of the Communes of Chile
  • One of the Communes of Benin
  • An Italian comune
  • A Polish gmina (generally translated as "commune")
  • Kommunen in Germany (sing. eine Kommune) are the municipalities (Gemeinden) and the districts (Landkreise). A formal name is kommunale Gebietskörperschaften (~ regional public bodies).
  • Medieval commune, a form of mutual defense alliance
  • Commune (socialism), a leftist model for society
  • the Paris Commune (French Revolution) (1789–1795)
  • the Paris Commune (1871)
  • Medieval commune

    Medieval communes in the European Middle Ages had sworn allegiances of mutual defense (both physical defense and of traditional freedoms) among the citizens of a town or city. They took many forms, and varied widely in organization and makeup. Communes are first recorded in the late 11th and early 12th centuries, thereafter becoming a widespread phenomenon. They had the greater development in central-northern Italy, where they were real city-states based on partial democracy, while in Germany they became free cities, independent from local nobility.

    Etymology

    The English and French word "commune" appears in Latin records in various forms. The classical Latin communio means an association. In some cases the classical Latin commune was used to mean people with a common interest. Ultimately, the roots are cum (with or together) and munire (to wall), literally 'to wall together' (i.e., a shared fortification). More frequently the Low Latin communia was used from which the Romance commune was derived. When independence of rule was won through violent uprising and overthrow, they were often called conspiratio.

    Podcasts:

    • Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1

      Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News In our new series, Outliers, VICE explores worlds beyond the economic mainstream, meeting people who’ve chosen unusual and sometimes radical relationships to money, commerce and capitalism. For our first episode we headed to Virginia, where a cluster of communes thrives in rural, conservative Louisa County. In exchange for working around 40 hours a week, Twin Oaks’ roughly 100 residents get everything taken care of, free of charge, from food to housing to health insurance. But the community is able to provide so generously because of their successful businesses; for over thirty years, they produced every hammock sold at Pier One and today, they sell tofu to Whole Foods. We traveled to Twin Oaks to learn what life is like ...

      published: 06 Oct 2017
    • Inside America's LARGEST HIPPIE COMMUNE

      Join our Facebook to stay connected: https://www.facebook.com/groups/431551270816107/ The Rainbow Family of Living Light is a worldwide countercultural movement of hippies, living by the Native American prophesy that one day, when the Earth is dying, a family of different colors, creeds, and backgrounds will come together in the name of restoring peace and harmony between each other and between humanity and the Earth. To learn more about the movement, we visited their temporary commune in the forest where they gathered this year in Wisconsin to pray for peace, and work together to create a temporary city in the forest.

      published: 24 Jul 2019
    • Why did the Paris Commune Fail? (Short Animated Documentary)

      The Paris Commune holds a special place in history for some and discussions surrounding it are still heated to this day. But given this impact, you'd think it lasted longer than 2 months. Given that it didn't, this raises the question why? Why did the Paris Commune fail? To find out why watch this short and simple animated history documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Daniel Galgano Fox2012 Sergio M. Vela Heath Robertson Ethan Godden Southside Mitch Hasmuffin John Azlow the Lion Ryan Schindeler Andrew Partington Michael Kram Franco La Bruna Robyn Kitchen Chase Labiste Christopher ...

      published: 10 Jul 2021
    • Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes

      ថ្មីចែសគម្រោងដេញថ្លៃផ្លូវបេតុង និងស្ពានឃុំកោះទន្ទឹម ប្លែក​ពីឃុំផ្សេងៗ រដ្ឋបាលខេត្ត ហាមមិនឱ្យ Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes

      published: 22 Jun 2024
    • Inside New Zealand's Lost Hippy Commune

      Hidden at the very top of New Zealand’s Coromandel Peninsula and accessible only by off-road track is the Mahana commune. Founded in 1978, for nearly 40 years its inhabitants have been elusive. Their story has gone largely unreported. But now, parts of the utopian dream are turning sour. We visit Arthur, one of the remaining members of Mahana, to learn about his reclusive life, his battles with other residents, and his hopes of seeing the valley returned to its past glory. Click here to SUBSCRIBE to VICE Asia: https://bit.ly/2LhqAR9

      published: 22 Oct 2018
    • The Commune - Official Trailer

      Like on Facebook: https://www.facebook.com/TheCommuneFilm Erik and Anna are a professional couple with a dream. Along with their daughter Freja, they set up a commune in Erik’s huge villa in the upmarket district of Copenhagen. With the family in the center of the story, we are invited into the dream of a real commune; we participate in the house meetings, dinners and parties. It is friendship, love and togetherness under one roof until an earth-shattering love affair puts the community and the commune to its greatest test. In theaters, On Demand, on Amazon Video and iTunes May 19th http://www.magpictures.com/thecommune

      published: 09 Mar 2017
    • COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survival

      Thanks for watching! If you enjoy my videos consider: ► JOINING OUR DISCORD! ▸ https://discord.gg/Zae8tQz ► SUBSCRIBING ▸ https://goo.gl/KR1oEe ► TWITCH ▸ https://goo.gl/TrMCn9 #ldoe #lastdayonearth #lastdayonearthsurvival

      published: 15 Mar 2024
    • Welcome to COMMUNE.

      Who are we? Why the name? Meet our CEO, Jeff Krasno, as he gives a quick but detailed synopsis on who we are and what we do. We make courses online with the worlds leading teachers. We host epic retreats at our 10 acre property in the Santa Monica Mountains. Jeff host's our Commune Podcast. And we have more surprises up our sleeve to share with you on this journey. To learn more, visit https://ww2.onecommune.com/upcoming-events/ We are new to Youtube, but now new to amazing content. We are so excited to begin sharing it all with you. Out of many, one. Let's do this together. ABOUT COMMUNE Commune is a course platform for personal and societal well- being. We create video courses with the world’s leading teachers across yoga and fitness, mindfulness, food and health, sustainability, an...

      published: 31 Oct 2019
    • Terre commune (feat. Rabsalah)

      Provided to YouTube by DistroKid Terre commune (feat. Rabsalah) · Sansblaz · Rabsalah Terre commune (feat. Rabsalah) ℗ Arkham Record'z Released on: 2021-03-16 Auto-generated by YouTube.

      published: 21 Jun 2024
    • Cult or Commune: Inside 'The Garden' | My Life Online

      In this episode of My Life Online, Vice dives into the world of “Culttok" - Tiktok’s obsession with cults. After more than a decade of operating as a small off-the-grid farm, The Garden decided to try to attract more people to their commune by using Tiktok and they went viral. A few days later, Tiktok is filled with amateur detectives dedicated to exposing The Garden as a dangerous cult. But was The Garden a cult? Or was it just an online witch hunt? Vice takes a close look behind the hysteria. Read more: https://www.vice.com/en/article/5db358/heres-what-happened-at-the-tiktok-commune-the-garden-after-it-closed-tree-julia-interview Click here to subscribe to VICE: http://bit.ly/Subscribe-to-VICE About VICE: The Definitive Guide To Enlightening Information. From every corner of the pl...

      published: 23 May 2021
    Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1
    7:08

    Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1

    • Order:
    • Duration: 7:08
    • Uploaded Date: 06 Oct 2017
    • views: 1567410
    Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News In our new series, Outliers, VICE explores worlds beyond the economic mainstream, meeting people who’ve chosen unusual and sometimes radical relationships to money, commerce and capitalism. For our first episode we headed to Virginia, where a cluster of communes thrives in rural, conservative Louisa County. In exchange for working around 40 hours a week, Twin Oaks’ roughly 100 residents get everything taken care of, free of charge, from food to housing to health insurance. But the community is able to provide so generously because of their successful businesses; for over thirty years, they produced every hammock sold at Pier One and today, they sell tofu to Whole Foods. We traveled to Twin Oaks to learn what life is like at the communal fringes of capitalism. Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News Check out VICE News for more: http://vicenews.com Follow VICE News here: Facebook: https://www.facebook.com/vicenews Twitter: https://twitter.com/vicenews Tumblr: http://vicenews.tumblr.com/ Instagram: http://instagram.com/vicenews More videos from the VICE network: https://www.fb.com/vicevideo
    https://wn.com/Have_You_Ever_Wanted_To_Drop_Out_Of_Capitalism_|_Outliers_Ep._1
    Inside America's LARGEST HIPPIE COMMUNE
    5:53

    Inside America's LARGEST HIPPIE COMMUNE

    • Order:
    • Duration: 5:53
    • Uploaded Date: 24 Jul 2019
    • views: 1831831
    Join our Facebook to stay connected: https://www.facebook.com/groups/431551270816107/ The Rainbow Family of Living Light is a worldwide countercultural movement of hippies, living by the Native American prophesy that one day, when the Earth is dying, a family of different colors, creeds, and backgrounds will come together in the name of restoring peace and harmony between each other and between humanity and the Earth. To learn more about the movement, we visited their temporary commune in the forest where they gathered this year in Wisconsin to pray for peace, and work together to create a temporary city in the forest.
    https://wn.com/Inside_America's_Largest_Hippie_Commune
    Why did the Paris Commune Fail? (Short Animated Documentary)
    4:36

    Why did the Paris Commune Fail? (Short Animated Documentary)

    • Order:
    • Duration: 4:36
    • Uploaded Date: 10 Jul 2021
    • views: 1604071
    The Paris Commune holds a special place in history for some and discussions surrounding it are still heated to this day. But given this impact, you'd think it lasted longer than 2 months. Given that it didn't, this raises the question why? Why did the Paris Commune fail? To find out why watch this short and simple animated history documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Daniel Galgano Fox2012 Sergio M. Vela Heath Robertson Ethan Godden Southside Mitch Hasmuffin John Azlow the Lion Ryan Schindeler Andrew Partington Michael Kram Franco La Bruna Robyn Kitchen Chase Labiste Christopher Lichtenberg sharpie660 Dan Reiher Brian Giordano Robert Brockway Phil and Lisa Toland kevinh Alex Teplyakov Juan Castillo Hedrin Jeremy Arghhhhh Ian Smith Paul Franche Scott P Leena Al-Souki Porkmeister Mickey Landen Oliver Jenner David Brown So long, john Tino James Nile Ian Jensen Richard Wolfe Kevin Phoenix Nicholas Menghini Aaron Conaway אורי פרקש Adrian Marine Tyler Jenkins Shawn Morse Victor Warmflash Chris Weisel Andreas Mosand Clayton Schuman Alex G. Dexter_McAaron Pat Stahl Dana Spurgeon Dullis anon Curt Helmerich zockotron Joseph Reinsch Dragan KNSTRKTVST Alexander Washofsky Burt Clothier Marty Myers Ainar Garipov John Garcia Mantodea Qi Xiao Benjamin Bowring Wolf Andrew Niedbala Tat Tvam Asi Alex Kihurani SirAlpaka Ryan Haber Jeremy Riley davidson Heytun Joel Cromwell Justin Pratt epic4 Cody Yarger Robert Mitchell Matthew Hogan Scott O'Donnell Bernardo Santos Wilhelm Screamer Mik Scheper Steven Gibson Matthew Toles Yuichiro Kakutani Käs Zach Rust Hexapuma Roan Haggerty Snowdon BattleGoat Studios Nathan Snyder Keith A. Layton Tristan Kreller Mars Project Jane Sumpter Stefan Møller Justin Pearson Magdalena Reinberg-Leibel Phoenix Fats Warren Rudkin Allen Rines Mark Alexander Mednikov Matt Conger Ricardo Salcedo Christopher Godfrey Keith Garvey Pierre Le Mouel Joseph Kerckhoff Yick Chung Danny Anstess Perry Gagne Robert Woodward Andrew F Adam Rabung bas mensink blaZzinG_FurY Vance Christiaanse Zachary Oertel Tim Stumbaugh David van Reyk Joshua A Bishop Mathew H. Tim Lane Thomas McGill Franklin Sousa Andrew Patane Michael Myers Vincent Rose Joooooshhhhhh Alen Gregory Priebe Christian & Penny Gray Michael Wagner Michael Galloway Matthew Literovich Jackson Mehr Coolin Castleman John Orr Steven Mastronardo Matt Reed Phil Simmons Mark Littlehale Vilelmus_veliki Chach Joker 54 Hunter Quintero Philip Yip William Wold David Johnston I'm Not In The Description Jack Nelson Proxy Eddie Sean D. Anthony McCann Parth S Bartosz Zasada Vegard Tønnessen Layne Nielsen D. Mahlik Travis Mount Ellen Teapot Aaron Larrow JAY ALAN EDELMAN Ken Warner Bradley Backoff Liam Gilleece Ciege Engine Clay Carroll No way ARandomPaperClip David Silverman Alex Slepak Kinfe85 Jeffrey Schneider Andrea Dekrout LambOfLeg James Mark Ploegstra James Bisonette Fan #1 Bryan Linsley Palavro Erik Hare James Anthony Imperial Pony Matthew O'Connor Baste Sahni Colm Boyle Now Seibert Joerg Schiemann Dr. Howard Dr. Fine Dr. Howard Thomas Wang Andy Pottkotter Joseph Hutchins Phillip Gathright HelloAgain Ron Johnson Windischgraetz Colm Byrne Christian Vasquez Leon Sethars Melissa Prober Matthew Trimborn Léon M. Serius_Loyola Harley Raptopoulos Vilena5 Tactical_Jackal William Adderholdt Arthur Hosey Jr. Peter A Titov Sean Long Gerald Armstrong The Roger Luna Mathew Glen Williams Gabriel Lunde Piotr Wojnowski Tailsdoll Nick Davies Dima Volodin Chris Winther Konstantin Bredyuk David Patrick Bucko Abhijeeth Steve Bonds Joshua Rackstraw mohd Colonel Oneill João Santos Richard Manklow Nathan Ngumi Donald Weaver Peter Konieczny The bleeding edge James Fouts Yossi Vainshtein Isabel Harrison Eugene Delacroix Christine Purvis Seth Reeves nullptr Mirza Ahmed Peter Marino Luke Peterson Dakota Brunell SmythProductions Daniel Bith Heraclius Alpha Raymond He Erik Carlsson Erik Hall Olaf Michael Coates Gezza The Masked Reviewer Abdallah Al-Ammari Froilan Legaspi Paul McGee Luis Caetano Ben L Daniel O'Reilly Laura Jeal Gina Service Rhys Little James Ling Roberticus1992 zemnmez Friedrich Demmer George Gremo
    https://wn.com/Why_Did_The_Paris_Commune_Fail_(Short_Animated_Documentary)
    Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes
    6:29

    Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes

    • Order:
    • Duration: 6:29
    • Uploaded Date: 22 Jun 2024
    • views: 251
    ថ្មីចែសគម្រោងដេញថ្លៃផ្លូវបេតុង និងស្ពានឃុំកោះទន្ទឹម ប្លែក​ពីឃុំផ្សេងៗ រដ្ឋបាលខេត្ត ហាមមិនឱ្យ Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes
    https://wn.com/Bidding_Of_Concrete_Roads_And_Bridges_In_Koh_Tontum_Commune_Is_Different_From_Other_Communes
    Inside New Zealand's Lost Hippy Commune
    13:52

    Inside New Zealand's Lost Hippy Commune

    • Order:
    • Duration: 13:52
    • Uploaded Date: 22 Oct 2018
    • views: 4583093
    Hidden at the very top of New Zealand’s Coromandel Peninsula and accessible only by off-road track is the Mahana commune. Founded in 1978, for nearly 40 years its inhabitants have been elusive. Their story has gone largely unreported. But now, parts of the utopian dream are turning sour. We visit Arthur, one of the remaining members of Mahana, to learn about his reclusive life, his battles with other residents, and his hopes of seeing the valley returned to its past glory. Click here to SUBSCRIBE to VICE Asia: https://bit.ly/2LhqAR9
    https://wn.com/Inside_New_Zealand's_Lost_Hippy_Commune
    The Commune - Official Trailer
    2:40

    The Commune - Official Trailer

    • Order:
    • Duration: 2:40
    • Uploaded Date: 09 Mar 2017
    • views: 23377
    Like on Facebook: https://www.facebook.com/TheCommuneFilm Erik and Anna are a professional couple with a dream. Along with their daughter Freja, they set up a commune in Erik’s huge villa in the upmarket district of Copenhagen. With the family in the center of the story, we are invited into the dream of a real commune; we participate in the house meetings, dinners and parties. It is friendship, love and togetherness under one roof until an earth-shattering love affair puts the community and the commune to its greatest test. In theaters, On Demand, on Amazon Video and iTunes May 19th http://www.magpictures.com/thecommune
    https://wn.com/The_Commune_Official_Trailer
    COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survival
    21:25

    COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survival

    • Order:
    • Duration: 21:25
    • Uploaded Date: 15 Mar 2024
    • views: 26162
    Thanks for watching! If you enjoy my videos consider: ► JOINING OUR DISCORD! ▸ https://discord.gg/Zae8tQz ► SUBSCRIBING ▸ https://goo.gl/KR1oEe ► TWITCH ▸ https://goo.gl/TrMCn9 #ldoe #lastdayonearth #lastdayonearthsurvival
    https://wn.com/Commune_Event_For_Beginners_Should_You_Do_It_Last_Day_On_Earth_Survival
    Welcome to COMMUNE.
    2:10

    Welcome to COMMUNE.

    • Order:
    • Duration: 2:10
    • Uploaded Date: 31 Oct 2019
    • views: 2420
    Who are we? Why the name? Meet our CEO, Jeff Krasno, as he gives a quick but detailed synopsis on who we are and what we do. We make courses online with the worlds leading teachers. We host epic retreats at our 10 acre property in the Santa Monica Mountains. Jeff host's our Commune Podcast. And we have more surprises up our sleeve to share with you on this journey. To learn more, visit https://ww2.onecommune.com/upcoming-events/ We are new to Youtube, but now new to amazing content. We are so excited to begin sharing it all with you. Out of many, one. Let's do this together. ABOUT COMMUNE Commune is a course platform for personal and societal well- being. We create video courses with the world’s leading teachers across yoga and fitness, mindfulness, food and health, sustainability, and civic engagement. Commune courses are designed for people to learn together, connect, and bring their best selves into the world. CONNECT WITH US Instagram: https://www.instagram.com/onecommune/ Facebook: https://www.facebook.com/wecommune Twitter: https://twitter.com/onecommune ABOUT COMMUNE Commune is a course platform for personal and societal well-being. We create video courses with the world’s leading teachers across yoga and fitness, mindfulness, food and health, sustainability, and civic engagement. 14-DAY FREE TRIAL Start today: https://www.onecommune.com/try-commune-membership #commune #onecommune #community
    https://wn.com/Welcome_To_Commune.
    Terre commune (feat. Rabsalah)
    3:45

    Terre commune (feat. Rabsalah)

    • Order:
    • Duration: 3:45
    • Uploaded Date: 21 Jun 2024
    • views: 6
    Provided to YouTube by DistroKid Terre commune (feat. Rabsalah) · Sansblaz · Rabsalah Terre commune (feat. Rabsalah) ℗ Arkham Record'z Released on: 2021-03-16 Auto-generated by YouTube.
    https://wn.com/Terre_Commune_(Feat._Rabsalah)
    Cult or Commune: Inside 'The Garden' | My Life Online
    29:47

    Cult or Commune: Inside 'The Garden' | My Life Online

    • Order:
    • Duration: 29:47
    • Uploaded Date: 23 May 2021
    • views: 2532637
    In this episode of My Life Online, Vice dives into the world of “Culttok" - Tiktok’s obsession with cults. After more than a decade of operating as a small off-the-grid farm, The Garden decided to try to attract more people to their commune by using Tiktok and they went viral. A few days later, Tiktok is filled with amateur detectives dedicated to exposing The Garden as a dangerous cult. But was The Garden a cult? Or was it just an online witch hunt? Vice takes a close look behind the hysteria. Read more: https://www.vice.com/en/article/5db358/heres-what-happened-at-the-tiktok-commune-the-garden-after-it-closed-tree-julia-interview Click here to subscribe to VICE: http://bit.ly/Subscribe-to-VICE About VICE: The Definitive Guide To Enlightening Information. From every corner of the planet, our immersive, caustic, ground-breaking and often bizarre stories have changed the way people think about culture, crime, art, parties, fashion, protest, the internet and other subjects that don't even have names yet. Browse the growing library and discover corners of the world you never knew existed. Welcome to VICE. Connect with VICE: Check out our full video catalog: http://bit.ly/VICE-Videos Videos, daily editorial and more: http://vice.com More videos from the VICE network: https://www.fb.com/vicevideo Click here to get the best of VICE daily: http://bit.ly/1SquZ6v Like VICE on Facebook: http://fb.com/vice Follow VICE on Twitter: http://twitter.com/vice Follow us on Instagram: http://instagram.com/vice The VICE YouTube Network: VICE: https://www.youtube.com/VICE MUNCHIES: https://www.youtube.com/MUNCHIES VICE News: https://www.youtube.com/VICENews VICELAND: https://www.youtube.com/VICELANDTV Broadly: https://www.youtube.com/Broadly Noisey: https://www.youtube.com/Noisey Motherboard: https://www.youtube.com/MotherboardTV VICE Sports: https://www.youtube.com/NOC i-D: http://www.youtube.com/iDmagazine Waypoint: https://www.youtube.com/WaypointVICE
    https://wn.com/Cult_Or_Commune_Inside_'The_Garden'_|_My_Life_Online
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1
      7:08
      Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1remove from playlist
    • Inside America's LARGEST HIPPIE COMMUNE
      5:53
      Inside America's LARGEST HIPPIE COMMUNEremove from playlist
    • Why did the Paris Commune Fail? (Short Animated Documentary)
      4:36
      Why did the Paris Commune Fail? (Short Animated Documentary)remove from playlist
    • Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes
      6:29
      Bidding of concrete roads and bridges in Koh Tontum commune is different from other communesremove from playlist
    • Inside New Zealand's Lost Hippy Commune
      13:52
      Inside New Zealand's Lost Hippy Communeremove from playlist
    • The Commune - Official Trailer
      2:40
      The Commune - Official Trailerremove from playlist
    • COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survival
      21:25
      COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survivalremove from playlist
    • Welcome to COMMUNE.
      2:10
      Welcome to COMMUNE.remove from playlist
    • Terre commune (feat. Rabsalah)
      3:45
      Terre commune (feat. Rabsalah)remove from playlist
    • Cult or Commune: Inside 'The Garden' | My Life Online
      29:47
      Cult or Commune: Inside 'The Garden' | My Life Onlineremove from playlist
    PLAYLIST TIME:

    Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1

    Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News In our new series, Outliers, VICE explores worlds beyond the economic mainstream, meeting people who’ve chosen unusual and sometimes radical relationships to money, commerce and capitalism. For our first episode we headed to Virginia, where a cluster of communes thrives in rural, conservative Louisa County. In exchange for working around 40 hours a week, Twin Oaks’ roughly 100 residents get everything taken care of, free of charge, from food to housing to health insurance. But the community is able to provide so generously because of their successful businesses; for over thirty years, they produced every hammock sold at Pier One and today, they sell tofu to Whole Foods. We traveled to Twin Oaks to learn what life is like at the communal fringes of capitalism. Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News Check out VICE News for more: http://vicenews.com Follow VICE News here: Facebook: https://www.facebook.com/vicenews Twitter: https://twitter.com/vicenews Tumblr: http://vicenews.tumblr.com/ Instagram: http://instagram.com/vicenews More videos from the VICE network: https://www.fb.com/vicevideo
    7:08
    Have You Ever Wanted To Drop Out Of Capitalism? | Outliers Ep. 1
    Subscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News In our new series, Outl...
    published: 06 Oct 2017
    Play in Full Screen
    5:53
    Inside America's LARGEST HIPPIE COMMUNE
    Join our Facebook to stay connected: https://www.facebook.com/groups/431551270816107/ The...
    published: 24 Jul 2019
    Play in Full Screen
    4:36
    Why did the Paris Commune Fail? (Short Animated Documentary)
    The Paris Commune holds a special place in history for some and discussions surrounding it...
    published: 10 Jul 2021
    Play in Full Screen
    6:29
    Bidding of concrete roads and bridges in Koh Tontum commune is different from other communes
    ថ្មីចែសគម្រោងដេញថ្លៃផ្លូវបេតុង និងស្ពានឃុំកោះទន្ទឹម ប្លែក​ពីឃុំផ្សេងៗ រដ្ឋបាលខេត្ត ហាមមិនឱ...
    published: 22 Jun 2024
    Play in Full Screen
    13:52
    Inside New Zealand's Lost Hippy Commune
    Hidden at the very top of New Zealand’s Coromandel Peninsula and accessible only by off-ro...
    published: 22 Oct 2018
    Play in Full Screen
    2:40
    The Commune - Official Trailer
    Like on Facebook: https://www.facebook.com/TheCommuneFilm Erik and Anna are a professiona...
    published: 09 Mar 2017
    Play in Full Screen
    21:25
    COMMUNE EVENT FOR BEGINNERS! SHOULD YOU DO IT?! - Last Day on Earth Survival
    Thanks for watching! If you enjoy my videos consider: ► JOINING OUR DISCORD! ▸ https://di...
    published: 15 Mar 2024
    Play in Full Screen
    2:10
    Welcome to COMMUNE.
    Who are we? Why the name? Meet our CEO, Jeff Krasno, as he gives a quick but detailed syno...
    published: 31 Oct 2019
    Play in Full Screen
    3:45
    Terre commune (feat. Rabsalah)
    Provided to YouTube by DistroKid Terre commune (feat. Rabsalah) · Sansblaz · Rabsalah Te...
    published: 21 Jun 2024
    Play in Full Screen
    29:47
    Cult or Commune: Inside 'The Garden' | My Life Online
    In this episode of My Life Online, Vice dives into the world of “Culttok" - Tiktok’s obses...
    published: 23 May 2021
    Play in Full Screen

    Commune

    A commune (the French word appearing in the 12th century from Medieval Latin communia, meaning a large gathering of people sharing a common life; from Latin communis, things held in common) is an intentional community of people living together, sharing common interests, property, possessions, resources, and, in some communes, work and income and assets. In addition to the communal economy, consensus decision-making, non-hierarchical structures and ecological living have become important core principles for many communes. Andrew Jacobs of The New York Times wrote that, contrary to popular misconceptions, "most communes of the '90s are not free-love refuges for flower children, but well-ordered, financially solvent cooperatives where pragmatics, not psychedelics, rule the day." There are many contemporary intentional communities all over the world, a list of which can be found at the Fellowship for Intentional Community (FIC).

    For the usually larger-scale, political entities in communist political theory, see socialist communes, which are similar but distinct social organizations.

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

    Edit

    I Visited Off-Grid 'Hippie' Communes To See If They Have Life Figured Out. Here's What ...

    Huffington Post 25 Apr 2025
    Despite the risks, I had to see whether these experiments in alternative lifestyles might offer answers to some of the most pressing issues of our time.” ... .
    Edit

    Naming of new wards and communes in HCM City should consider history and cultural value: experts

    Vietnam News 23 Apr 2025
    ... communes ... Similarly, by the end of March 2025, Bình Chánh District proposed restructuring its current 16 communes and townships into four communes named numerically from Commune 1 to Commune 4.&nbsp;.
    Edit

    HCMC to slash commune-level administrative units by 62.64%

    The Saigon Times 15 Apr 2025
    ... the number of commune-level administrative units by 62.64%, from 273 to 102 ... At the commune level, wards, communes, and special zones will each have their own people’s councils and people’s committees.
    • 1
    ×