<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://omnicommons.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dhorn</id>
	<title>Omni Commons - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://omnicommons.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dhorn"/>
	<link rel="alternate" type="text/html" href="https://omnicommons.org/wiki/Special:Contributions/Dhorn"/>
	<updated>2026-04-21T02:42:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.2</generator>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=Omnicommons.org&amp;diff=3572</id>
		<title>Omnicommons.org</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=Omnicommons.org&amp;diff=3572"/>
		<updated>2015-04-24T22:10:59Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: forgot to paste in the whole thing, whoops&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Omnicommons.org ([https://Omnicommons.org link]) is the main website for the Omni Commons.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
The best way to add changes to the website is to fork the main repository ([https://github.com/omnicommons/omnicommons.org github.com/omnicommons/omnicommons.org]) then clone your fork to your local machine and test your changes locally before committing a pull request.&lt;br /&gt;
&lt;br /&gt;
The following text will go over how to get the code on to your local machine and how to configure the machine to display the website, read on!&lt;br /&gt;
&lt;br /&gt;
=== Fork, Clone, and Configure the Upstream ===&lt;br /&gt;
&lt;br /&gt;
We assume you already know how to fork a github.com repository, if not please check out [https://help.github.com/articles/fork-a-repo/ github’s article on repo forking]&lt;br /&gt;
&lt;br /&gt;
==== Clone the Repo ====&lt;br /&gt;
&lt;br /&gt;
Once you have the repository forked you’ll want to clone it to your development machine using the clone command.&lt;br /&gt;
&lt;br /&gt;
Here’s the command that github user dhornbein used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;git clone git@github.com:dhornbein/omnicommons.org.git&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Note:&amp;#039;&amp;#039;&amp;#039; This command will be different for you as &amp;lt;code&amp;gt;dhornbein&amp;lt;/code&amp;gt; will be replaced by your github.com user name (or where ever you forked the repo)&lt;br /&gt;
&lt;br /&gt;
==== Configure Remote Upstream ====&lt;br /&gt;
&lt;br /&gt;
The “remote upstream” is a git remote repo that you pull from for the latest versions of the code. You will add the Omni Common’s omnicommons.org repository as the upstream remote location so you can perform &amp;lt;code&amp;gt;git pull upstream&amp;lt;/code&amp;gt; to pull down any changes to the site since you forked it.&lt;br /&gt;
&lt;br /&gt;
First we’ll add the upstream remote, you can copy and paste the line below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;git remote add upstream git@github.com:omnicommons/omnicommons.org.git&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now check that it worked by typing &amp;lt;code&amp;gt;git remote -v&amp;lt;/code&amp;gt; to see all remote repos, it should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;origin  git@github.com:dhornbein/omnicommons.org.git (fetch)&lt;br /&gt;
origin  git@github.com:dhornbein/omnicommons.org.git (push)&lt;br /&gt;
upstream  git@github.com:omnicommons/omnicommons.org.git (fetch)&lt;br /&gt;
upstream  git@github.com:omnicommons/omnicommons.org.git (push)&amp;lt;/pre&amp;gt;&lt;br /&gt;
Basically this is saying that the &amp;#039;&amp;#039;&amp;#039;origin&amp;#039;&amp;#039;&amp;#039; of the files is at your (show as dhornbein’s) forked repo and the &amp;#039;&amp;#039;&amp;#039;upstream&amp;#039;&amp;#039;&amp;#039; destination is the Omni Common’s repo.&lt;br /&gt;
&lt;br /&gt;
=== Setting up Server Side Includes on Localhost ===&lt;br /&gt;
&lt;br /&gt;
The Omni Commons website uses Server Side Includes (SSI) to pull in head, nav, and footer html from the &amp;lt;code&amp;gt;/includes&amp;lt;/code&amp;gt; folder. So we need to set up your local environment to handle this. Much of the following information is taken from [http://www.linuxtopia.org/HowToGuides/apache_ssi.html linuxtopia.org’s how to guide on apache ssi].&lt;br /&gt;
&lt;br /&gt;
The SSI strings look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;amp;lt;!--#include virtual=&amp;amp;quot;/includes/nav.html&amp;amp;quot; --&amp;amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once SSI is enabled this line will be replaced by the content of &amp;lt;code&amp;gt;/includes/nav.html&amp;lt;/code&amp;gt;. This allows us to edit the nav &amp;#039;&amp;#039;once&amp;#039;&amp;#039; and have those changes appear on all pages with the above snippet.&lt;br /&gt;
&lt;br /&gt;
==== Enable mod_include ====&lt;br /&gt;
&lt;br /&gt;
The first thing to do is ensure that your server has the mod_include module installed and enabled.&lt;br /&gt;
&lt;br /&gt;
The following instructions were tested on an Mac OS X (10.9) machine but should work on any Linux machine as well.&lt;br /&gt;
&lt;br /&gt;
First we will examine the Apache Config file &amp;lt;code&amp;gt;httpd.conf&amp;lt;/code&amp;gt; typically located at:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/etc/apache2/httpd.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure that the includes modual is present and active by searching for &amp;lt;code&amp;gt;mod_include&amp;lt;/code&amp;gt; within the &amp;lt;code&amp;gt;httpd.conf&amp;lt;/code&amp;gt; file, look for this line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;LoadModule include_module libexec/apache2/mod_include.so&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check that there isn’t a hash (#) in front of the above text (you’re text might differ slightly).&lt;br /&gt;
&lt;br /&gt;
==== Turn on Includes ====&lt;br /&gt;
&lt;br /&gt;
You’ll want to turn on the include option through your virtual host by adding:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Options +Includes&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here’s Drew’s vhost as an example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;Virtualhost *:80&amp;amp;gt;&lt;br /&gt;
    VirtualDocumentRoot &amp;amp;quot;/Users/drew/www/%-2/&amp;amp;quot;&lt;br /&gt;
    ServerName vhosts.localhost&lt;br /&gt;
    ServerAlias *.localhost&lt;br /&gt;
    ErrorLog &amp;amp;quot;/var/log/apache2/vhosts.localhost-error_log&amp;amp;quot;&lt;br /&gt;
    &amp;amp;lt;Directory &amp;amp;quot;/Users/drew/www/*&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
        Options Indexes FollowSymLinks +Includes&lt;br /&gt;
        AllowOverride All&lt;br /&gt;
        Order allow,deny&lt;br /&gt;
        Allow from all&lt;br /&gt;
    &amp;amp;lt;/Directory&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/Virtualhost&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;#039;&amp;#039;Side Note: Drew is using a nifty trick to automagically add folders in &amp;lt;code&amp;gt;/Users/drew/www/&amp;lt;/code&amp;gt; to their virtual host, you can read more about that on [http://www.glenscott.co.uk/blog/simple-development-hosts-on-mac/ Glen Scott’s blog post Simple Development Hosts on Mac]&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Pay attention to the line where &amp;lt;code&amp;gt;+Includes&amp;lt;/code&amp;gt; has been added:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Options Indexes FollowSymLinks +Includes&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we need to tell Apache to scan the proper files for includes. Typically, due to the extra server overhead, this is done only to files that are specified as having includes by using a special extension &amp;lt;code&amp;gt;.shtml&amp;lt;/code&amp;gt; to indicate to the system that they should be scanned.&lt;br /&gt;
&lt;br /&gt;
The OmniCommons website uses &amp;lt;code&amp;gt;.html&amp;lt;/code&amp;gt; throughout, so we simply need to tell our local apache server to scan all &amp;lt;code&amp;gt;.html&amp;lt;/code&amp;gt; files for includes.&lt;br /&gt;
&lt;br /&gt;
Go back to your &amp;lt;code&amp;gt;httpd.conf&amp;lt;/code&amp;gt; and find the line with &amp;lt;code&amp;gt;#AddOutputFilter INCLUDES .shtml&amp;lt;/code&amp;gt; now add under that line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;AddOutputFilter INCLUDES .html&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The hash (#) indicates that a line is commented out, because we want the config file to read our command we omit that hash. So this command is adding an output filter (&amp;lt;code&amp;gt;AddOutputFilter&amp;lt;/code&amp;gt;) that applies Includes (&amp;lt;code&amp;gt;INCLUDES&amp;lt;/code&amp;gt;) to all html files (&amp;lt;code&amp;gt;.html&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
You should now be able to visit your virtual host, in Drew’s case it is &amp;lt;code&amp;gt;omnicommons.localhost&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Remember:&amp;#039;&amp;#039;&amp;#039; The apache include will &amp;#039;&amp;#039;not&amp;#039;&amp;#039; run if you open the .html file directly in your browser, it must be served from the virtual host.&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=Omnicommons.org&amp;diff=3571</id>
		<title>Omnicommons.org</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=Omnicommons.org&amp;diff=3571"/>
		<updated>2015-04-24T21:45:35Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: added information about how to edit the main website&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Omnicommons.org ([https://Omnicommons.org link]) is the main website for the Omni Commons.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
The best way to add changes to the website is to fork the main repository ([https://github.com/omnicommons/omnicommons.org github.com/omnicommons/omnicommons.org]) then clone your fork to your local machine and test your changes locally before committing a pull request.&lt;br /&gt;
&lt;br /&gt;
The following text will go over how to get the code on to your local machine and how to configure the machine to display the website, read on!&lt;br /&gt;
&lt;br /&gt;
=== Fork, Clone, and Configure the Upstream ===&lt;br /&gt;
&lt;br /&gt;
We assume you already know how to fork a github.com repository, if not please check out [https://help.github.com/articles/fork-a-repo/ github’s article on repo forking]&lt;br /&gt;
&lt;br /&gt;
==== Clone the Repo ====&lt;br /&gt;
&lt;br /&gt;
Once you have the repository forked you’ll want to clone it to your development machine using the clone command.&lt;br /&gt;
&lt;br /&gt;
Here’s the command that github user dhornbein used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;git clone git@github.com:dhornbein/omnicommons.org.git&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Note:&amp;#039;&amp;#039;&amp;#039; This command will be different for you as &amp;lt;code&amp;gt;dhornbein&amp;lt;/code&amp;gt; will be replaced by your github.com user name (or where ever you forked the repo)&lt;br /&gt;
&lt;br /&gt;
==== Configure Remote Upstream ====&lt;br /&gt;
&lt;br /&gt;
The “remote upstream” is a git remote repo that you pull from for the latest versions of the code. You will add the Omni Common’s omnicommons.org repository as the upstream remote location so you can perform &amp;lt;code&amp;gt;git pull upstream&amp;lt;/code&amp;gt; to pull down any changes to the site since you forked it.&lt;br /&gt;
&lt;br /&gt;
First we’ll add the upstream remote, you can copy and paste the line below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;git remote add upstream git@github.com:omnicommons/omnicommons.org.git&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now check that it worked by typing &amp;lt;code&amp;gt;git remote -v&amp;lt;/code&amp;gt; to see all remote repos, it should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;origin  git@github.com:dhornbein/omnicommons.org.git (fetch)&lt;br /&gt;
origin  git@github.com:dhornbein/omnicommons.org.git (push)&lt;br /&gt;
upstream  git@github.com:omnicommons/omnicommons.org.git (fetch)&lt;br /&gt;
upstream  git@github.com:omnicommons/omnicommons.org.git (push)&amp;lt;/pre&amp;gt;&lt;br /&gt;
Basically this is saying that the &amp;#039;&amp;#039;&amp;#039;origin&amp;#039;&amp;#039;&amp;#039; of the files is at your (show as dhornbein’s) forked repo and the &amp;#039;&amp;#039;&amp;#039;upstream&amp;#039;&amp;#039;&amp;#039; destination is the Omni Common’s repo.&lt;br /&gt;
&lt;br /&gt;
=== Setting up Server Side Includes on Localhost ===&lt;br /&gt;
&lt;br /&gt;
The Omni Commons website uses Server Side Includes (SSI) to pull in head, nav, and footer html from the &amp;lt;code&amp;gt;/includes&amp;lt;/code&amp;gt; folder. So we need to set up your local environment to handle this. Much of the following information is taken from [http://www.linuxtopia.org/HowToGuides/apache_ssi.html linuxtopia.org’s how to guide on apache ssi].&lt;br /&gt;
&lt;br /&gt;
The SSI strings look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;amp;lt;!--#include virtual=&amp;amp;quot;/includes/nav.html&amp;amp;quot; --&amp;amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once SSI is enabled this line will be replaced by the content of &amp;lt;code&amp;gt;/includes/nav.html&amp;lt;/code&amp;gt;. This allows us to edit the nav &amp;#039;&amp;#039;once&amp;#039;&amp;#039; and have those changes appear on all pages with the above snippet.&lt;br /&gt;
&lt;br /&gt;
==== Enable mod_include ====&lt;br /&gt;
&lt;br /&gt;
The first thing to do is ensure that your server has the mod_include module installed and enabled.&lt;br /&gt;
&lt;br /&gt;
The following instructions were tested on an Mac OS X (10.9) machine but should work on any Linux machine as well.&lt;br /&gt;
&lt;br /&gt;
First we will examine the Apache Config file &amp;lt;code&amp;gt;httpd.conf&amp;lt;/code&amp;gt; typically located&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=User_talk:Dhorn&amp;diff=3469</id>
		<title>User talk:Dhorn</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=User_talk:Dhorn&amp;diff=3469"/>
		<updated>2015-04-03T21:06:25Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: /* Things Drew Could Work on */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Things Drew Could Work on ==&lt;br /&gt;
&lt;br /&gt;
I&amp;#039;ll be here for the month of April (2015) and am making a list of things I could potentially do.&lt;br /&gt;
&lt;br /&gt;
* Practicing the use of [[Change Up Meeting]]&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=Change_Up_Meeting&amp;diff=3468</id>
		<title>Change Up Meeting</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=Change_Up_Meeting&amp;diff=3468"/>
		<updated>2015-04-03T21:01:36Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: added bulk of information about the Change Up Meeting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to document a game called Change Up, or Change Up Meeting. The content here is adapted from [http://everett.agilelearningcenters.org/2015/03/19/alce-tools-change-up-meeting/ Drew Hornbein&amp;#039;s blog post title Change Up Meeting]&lt;br /&gt;
&lt;br /&gt;
Creating culture can be a difficult task. Lots of though and time goes into documents such as the [[Safer Space Policy]]. How, though, do we update our community agreements as the culture grows? When new and exciting opportunities and issues arise our culture needs to be able to adapt.&lt;br /&gt;
&lt;br /&gt;
== Currently ==&lt;br /&gt;
&lt;br /&gt;
Currently changes to community agreements are handled mostly though consensus processes. Let&amp;#039;s consider an abstract example, a few people wish to bring a [[Hoobaldada]] into the space, there are some costs associated with housing the Hoobladada and while people are generally fine with it, the location is disputed. The Hoobaldada proposal is brought to a consensus meeting, it&amp;#039;s location is discussed ad nauseum and the costs are broken down and also discussed quite a bit. Each location for the Hoobaldada is &amp;#039;&amp;#039;&amp;#039;imagined&amp;#039;&amp;#039;&amp;#039; by the group and the pro&amp;#039;s and con&amp;#039;s are considered &amp;#039;&amp;#039;&amp;#039;abstractly&amp;#039;&amp;#039;&amp;#039;. The aim, as you might know, of a consensus meeting is to come to an agreement and create a &amp;#039;&amp;#039;some what&amp;#039;&amp;#039; permanent decision and to &amp;#039;&amp;#039;&amp;#039;end discussion around the proposal&amp;#039;&amp;#039;&amp;#039;, hopefully in a way that leaves everyone feeling &amp;#039;&amp;#039;okay&amp;#039;&amp;#039; about it.&lt;br /&gt;
&lt;br /&gt;
So the proposal passes after a lot of discussion and time investment. We are left with a decision for where to put the Hoobaldada, it&amp;#039;s not exactly where people &amp;#039;&amp;#039;really&amp;#039;&amp;#039; wanted it, but it&amp;#039;s okay. As time goes by it&amp;#039;s seen that it doesn&amp;#039;t really work in it&amp;#039;s current configuration but the idea of making another proposal isn&amp;#039;t all that appealing and we are left with a Hoobaldada that isn&amp;#039;t making people as happy as it could.&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s consider another way, the Change Up Meeting.&lt;br /&gt;
&lt;br /&gt;
== How it Works ==&lt;br /&gt;
&lt;br /&gt;
The Change Up Meeting is a reoccurring gathering (weekly, monthly, etc.) where all invested members of the community meet and work on the [[Community Mastery Board]] (CMB). The CMB has four columns labeled:&lt;br /&gt;
&lt;br /&gt;
* Awareness&lt;br /&gt;
* Implementation&lt;br /&gt;
* Practice&lt;br /&gt;
* Mastery&lt;br /&gt;
&lt;br /&gt;
[[File:Change-up-cmb-columns.jpg|framed|center|Column names of the Community Mastery Board]]&lt;br /&gt;
&lt;br /&gt;
Topics enter into the process as an &amp;#039;&amp;#039;&amp;#039;awareness&amp;#039;&amp;#039;&amp;#039;. Community members share something they are aware of. This could be a problem or an opportunity available to the community. At any time anyone can leave a sticky note on the awareness column of the CMB.&lt;br /&gt;
&lt;br /&gt;
Each week (or month, etc.) in the Change Up Meeting items from the CMB are discussed as a group. As we reflect on each item in the awareness column the group attempts (if needed) to imagine a way to deal with the item and select one to try and move the note to &amp;#039;&amp;#039;&amp;#039;implement&amp;#039;&amp;#039;&amp;#039;. If we don’t have any ideas then the item stays in awareness.&lt;br /&gt;
&lt;br /&gt;
Once a solution is implemented we try it out for the week or two. The items in the implement column are limited in number because we don’t want to be introducing too many new rules or procedures at once. Each week we reflect on how well each particular solution is working. Are people abiding by the new procedure? Is the community happy with it?&lt;br /&gt;
&lt;br /&gt;
Rather than have a long processes driven meetings about the implemented solution where we voice concerns and attempt to codify a community agreement in one sitting we do rapid testing of our agreements. Over the course of the week new agreements are tested and community members can “vote with their feet” where if they like a particular agreement they can promote it during the implementation week, remind people that we are trying it out, and build support for it.&lt;br /&gt;
&lt;br /&gt;
Once an agreement has been implemented we revisit it at each Change Up Meeting where we either:&lt;br /&gt;
&lt;br /&gt;
* Demote it back to awareness if the implemented solution didn’t work&lt;br /&gt;
* Keep it implemented for another week to continue testing&lt;br /&gt;
* Change the implementation and try it again&lt;br /&gt;
* Promote it to practicingAgreements in the practicing column are both in practice and being practiced. Each week we quickly review all items in this column to determine if they need to be demoted because they aren’t working or if we have mastered them.&lt;br /&gt;
  &lt;br /&gt;
If an agreement has reached a point where it has passed a certain threshold defined by the community it can then be elevated to the &amp;#039;&amp;#039;&amp;#039;mastery&amp;#039;&amp;#039;&amp;#039; column.&lt;br /&gt;
&lt;br /&gt;
This diagram illustrates how a single item might move through the process:&lt;br /&gt;
&lt;br /&gt;
[[File:Change-up-cmb-process.jpg|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s go back to the absurd example from above. Someone becomes aware that a [[Hoobaldada]] is available and they put a note under &amp;#039;&amp;#039;&amp;#039;awareness&amp;#039;&amp;#039;&amp;#039; on the Community Mastery Board. At the next Change Up Meeting someone suggests putting the Hoobaldada in the front entry way, some people aren&amp;#039;t really into that idea but they are fine to try it out knowing that next Change Up Meeting it will be addressed if it isn&amp;#039;t working. So the Hoobaldada topic is moved to the implemented column and a note is added about moving it to the entry way.&lt;br /&gt;
&lt;br /&gt;
At the next Change Up Meeting it&amp;#039;s obvious that some members of the community aren&amp;#039;t happy with the Hoobaldada in the front entry way, they suggest moving it to the basement. It is agreed to give that a try and the process repeats. By the next meeting the community is feeling good about the placement and decides to move the topic to the &amp;#039;&amp;#039;&amp;#039;practicing&amp;#039;&amp;#039;&amp;#039; column. Now each week the topic will be briefly mentioned, if issues come up then further implementations can be experimented with. After a little more time the Hoobaldada feels quite at home in it&amp;#039;s location and the group decides to move the topic to &amp;#039;&amp;#039;&amp;#039;mastery&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
== Mastery ==&lt;br /&gt;
&lt;br /&gt;
The Hoobaldada example is dealing with a &amp;#039;&amp;#039;thing&amp;#039;&amp;#039; in the community. While this process could work very well with things it works really well with &amp;#039;&amp;#039;&amp;#039;community behavior&amp;#039;&amp;#039;&amp;#039;. As people become aware of issues the Change Up Meeting is a way to try, practice, then master behaviors to better the whole community. For instance one example of a practice already mastered by the Omni community is to abide by the [[Safer Space Policy]].&lt;br /&gt;
&lt;br /&gt;
All the items in the Mastery column make a complete list of community agreements. By using the Community Mastery Board the community develops and makes explicit what how the community opperates. This gives a very clear picture to new comers what their expected behavior is. &lt;br /&gt;
&lt;br /&gt;
The Change Up Meeting process gives all members of the community a clear means to &amp;#039;&amp;#039;change up&amp;#039;&amp;#039; the behavior of the whole community through a process that doesn&amp;#039;t require lots of &amp;#039;&amp;#039;&amp;#039;process&amp;#039;&amp;#039;&amp;#039; as seen in the consensus process.&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=Change_Up_Meeting&amp;diff=3467</id>
		<title>Change Up Meeting</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=Change_Up_Meeting&amp;diff=3467"/>
		<updated>2015-04-03T05:34:21Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: Just starting out a page about change up meeting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to document a game called Change Up, or Change Up Meeting. The content here is adapted from [http://everett.agilelearningcenters.org/2015/03/19/alce-tools-change-up-meeting/ Drew Hornbein&amp;#039;s blog post title Change Up Meeting]&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=File:Change-up-cmb-process.jpg&amp;diff=3466</id>
		<title>File:Change-up-cmb-process.jpg</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=File:Change-up-cmb-process.jpg&amp;diff=3466"/>
		<updated>2015-04-03T05:32:35Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: A typical Change Up Meeting process&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A typical Change Up Meeting process&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
	<entry>
		<id>https://omnicommons.org/mediawiki/index.php?title=File:Change-up-cmb-columns.jpg&amp;diff=3465</id>
		<title>File:Change-up-cmb-columns.jpg</title>
		<link rel="alternate" type="text/html" href="https://omnicommons.org/mediawiki/index.php?title=File:Change-up-cmb-columns.jpg&amp;diff=3465"/>
		<updated>2015-04-03T05:30:44Z</updated>

		<summary type="html">&lt;p&gt;Dhorn: The column headers for a Community Mastery Board&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The column headers for a Community Mastery Board&lt;/div&gt;</summary>
		<author><name>Dhorn</name></author>
	</entry>
</feed>