<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://bradleymonk.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Monakhos</id>
	<title>bradwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://bradleymonk.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Monakhos"/>
	<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Special:Contributions/Monakhos"/>
	<updated>2026-04-09T17:40:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3922</id>
		<title>Neural Nets</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3922"/>
		<updated>2020-05-04T12:20:15Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* Tensorflow Playground */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{SmallBox|float=right|clear=none|margin=0px 0px 8px 18px|width=170px|font-size=13px|Tutorial Pages|txt-size=11px|&lt;br /&gt;
1. [[Neural Nets|Intro]]&amp;lt;br&amp;gt;&lt;br /&gt;
2. [[Neural Nets 2|Network Inputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
3. [[Neural Nets 3|Network Activation]]&amp;lt;br&amp;gt;&lt;br /&gt;
4. [[Neural Nets 4|Network Outputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Below there is an embedded a neural network classifier, rendered using [https://www.tensorflow.org Tensorflow][http://playground.tensorflow.org Playground]. There are a variety of knobs and buttons on the interface; as we move along, more of these options will become available. Don&#039;t worry though, all these will be explained in detail, in due time. For now though, let&#039;s define our primary goal throughout this tutorial: &#039;&#039;&#039;classification&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The primary task is to train neural nets to classify items into categories, based on some limited information. Like fruit or vegetable; or undergrad major; or Alzheimer&#039;s Disease patient (CASE) or control participant (CTRL). In the Tensorflow playground below, you can see a bunch of orange and blue dots. Instead of simply thinking about these as dots at arbitrary spatial coordinates, it will be helpful to think of these as representing people in a clinical study. Let&#039;s define the blue dots are patients from the CASE group, and orange dots are CTRL participants. What is our &#039;limited information&#039; about them? Let&#039;s say we have collected information about their age and their score on a dementia screening exam (scores represent number of items forgotten). So the first thing we&#039;d probably want to do is make a scatter plot of these two variables. Let&#039;s define their respective dimensions on the plot axes as:&lt;br /&gt;
&lt;br /&gt;
* x-axis | dim1 | current age (&#039;&#039;&#039;&#039;&#039;AGE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
* y-axis | dim2 | exam score (&#039;&#039;&#039;&#039;&#039;SCORE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Notice that after plotting, the dots seem to form clusters. That very promising! If you were asked to draw a line on this plane, to separate these two clusters, it could be easily done. Our brain&#039;s neural nets have already solved the the spatial problem. Now let&#039;s see if an artificial neural net can solve the same problem. &lt;br /&gt;
&lt;br /&gt;
Click the blue &#039;&#039;start&#039;&#039; button below; let it run for about 500 epochs (~5 seconds), then click pause.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Tensorflow Playground===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe key=&amp;quot;tf&amp;quot; path=&amp;quot;#activation=tanh&amp;amp;regularization=L1&amp;amp;batchSize=15&amp;amp;dataset=gauss&amp;amp;regDataset=reg-plane&amp;amp;learningRate=0.003&amp;amp;regularizationRate=0.001&amp;amp;noise=0&amp;amp;networkShape=1&amp;amp;seed=0.73576&amp;amp;showTestData=false&amp;amp;discretize=false&amp;amp;percTrainData=40&amp;amp;x=true&amp;amp;y=false&amp;amp;xTimesY=false&amp;amp;xSquared=false&amp;amp;ySquared=false&amp;amp;cosX=false&amp;amp;sinX=false&amp;amp;cosY=false&amp;amp;sinY=false&amp;amp;collectStats=false&amp;amp;problem=classification&amp;amp;initZero=false&amp;amp;hideText=false&amp;amp;showTestData_hide=true&amp;amp;stepButton_hide=true&amp;amp;problem_hide=true&amp;amp;noise_hide=true&amp;amp;discretize_hide=true&amp;amp;regularization_hide=true&amp;amp;dataset_hide=true&amp;amp;batchSize_hide=true&amp;amp;percTrainData_hide=true&amp;amp;regularizationRate_hide=true&amp;amp;learningRate_hide=true&amp;amp;numHiddenLayers_hide=true&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
Is one neuron with input from &#039;&#039;a single feature&#039;&#039; (the dim1 data: AGE) performing well in the separation task? If so, an orange-colored background should have formed behind the orange dots, while a blue-colored background should have formed behind the blue dots. This colored surface gradient can be understood as the neural network&#039;s prediction value at that given coordinate. We will explore prediction values in more detail later on in the tutorial. First let&#039;s take a look at what the neural net is taking as inputs.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Inputs===&lt;br /&gt;
----&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=right &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=250px&lt;br /&gt;
|margin=5px 2%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File: Neural Net Features.png|250px]]&lt;br /&gt;
| Figure 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To assess the performance, take a look at the input options in &#039;&#039;Figure-1&#039;&#039;. There are a bunch of &#039;&#039;X&#039;&#039; variables with subscripts and superscripts, and next to each is a box with various color gradients. For now, let&#039;s focus on just two of those symbols, and what they mean to us...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
These are parsed such that subscripts (&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; , &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ,... &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; ) represent each predictor variable, like AGE and SCORE. As you can see, the first two input options &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; are just &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;AGE&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;SCORE&amp;lt;/sub&amp;gt;. Note that since &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; is plotted on the x-axis, it has a color gradient that changes horizontally, but is constant in the vertical dimension. Conversely the &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; feature plotted on the y-axis has a vertical color gradient. To clarify why this happens...&lt;br /&gt;
&lt;br /&gt;
If the only thing we know about these study participants is their AGE, &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;, we can only make a 1-D plot with each person&#039;s age along the x-axis, such that [ x = &#039;&#039;AGE&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; , y = 0 ]. If you take a look at Figure-2, it should be clear that when information is collapsed onto its single dimension and plotted along the x-axis, the best line we can draw to separate the dim-1 data will be orthogonal to the x-axis (a vertical line). As you move horizontally along the x-axis your categorical guess will likely change, along with the confidence in that guess, which is precisely what is being represented by the color gradient. On the other hand, knowing nothing about exam score, moving up and down on the y-axis will have no effect on your decision, which is why color is constant in the y-dimension. &lt;br /&gt;
&lt;br /&gt;
When the neural net only gets input about a single feature of each person in the dataset, its synaptic weights will only adapt output along that one dimension. Thus, if for example the network sees that a person is 3 years above the dataset average (considering the data has been &#039;&#039;mean deviated&#039;&#039; and centered), it won&#039;t matter what that person&#039;s cognitive SCORE was (since the neural net doesn&#039;t have access to that info), the network will always make the same guess for anyone 3 years above average age. This is why color is constant at &#039;&#039;x&#039;&#039;=3 for any &#039;&#039;y&#039;&#039; value.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=left &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=420px&lt;br /&gt;
|margin=15px 5%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File:NN NumberLine.png|400px]]&lt;br /&gt;
| Figure 2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a shortcoming of having just one single neuron in the entire network. You could add as many neurons and layers as you want (go ahead and try it)...... if the network only gets input about one feature dimension, the output will be the same, whether there is 1 neuron, or 1 billion. To realize this fact, pretend you can only see the dots as they are plotted in along the number line in 1D (in Figure 2); if we were unable to see the 2D cluster clouds above that line, the billions of neurons in our brain would tell us to draw the classification line in basically the same place as that one single neuron in our artificial neural net. This is a very interesting concept worth noting: neural net classifiers can fail for two very different reasons.&lt;br /&gt;
&lt;br /&gt;
(1) The neural network itself might be ill-formulated in such a way that, no matter how much information you provide, it cannot seem to learn to solve the classification problem. (2) On the other hand, you might have implemented an apposite deep neural network; yet if the input data is insufficient to solve the classification problem, it will appear to you that this potentially very good neural network performs like garbage. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that said, there are ways to help prevent that later scenario from happening. These involve doing things like you see for the rest of the input features. The next page will discuss the full set of possible network inputs we have here, which includes...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE × SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(AGE)&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(SCORE)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{SmallBox|&#039;&#039;&#039;[[Neural Nets 2|Continue to Neural Nets Tutorial Page 2]]&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;btn data-toggle=&amp;quot;tooltip&amp;quot;&amp;gt;Neural Nets 2&amp;lt;/btn&amp;gt; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3921</id>
		<title>Neural Nets</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3921"/>
		<updated>2020-05-04T11:52:29Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{SmallBox|float=right|clear=none|margin=0px 0px 8px 18px|width=170px|font-size=13px|Tutorial Pages|txt-size=11px|&lt;br /&gt;
1. [[Neural Nets|Intro]]&amp;lt;br&amp;gt;&lt;br /&gt;
2. [[Neural Nets 2|Network Inputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
3. [[Neural Nets 3|Network Activation]]&amp;lt;br&amp;gt;&lt;br /&gt;
4. [[Neural Nets 4|Network Outputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Below there is an embedded a neural network classifier, rendered using [https://www.tensorflow.org Tensorflow][http://playground.tensorflow.org Playground]. There are a variety of knobs and buttons on the interface; as we move along, more of these options will become available. Don&#039;t worry though, all these will be explained in detail, in due time. For now though, let&#039;s define our primary goal throughout this tutorial: &#039;&#039;&#039;classification&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The primary task is to train neural nets to classify items into categories, based on some limited information. Like fruit or vegetable; or undergrad major; or Alzheimer&#039;s Disease patient (CASE) or control participant (CTRL). In the Tensorflow playground below, you can see a bunch of orange and blue dots. Instead of simply thinking about these as dots at arbitrary spatial coordinates, it will be helpful to think of these as representing people in a clinical study. Let&#039;s define the blue dots are patients from the CASE group, and orange dots are CTRL participants. What is our &#039;limited information&#039; about them? Let&#039;s say we have collected information about their age and their score on a dementia screening exam (scores represent number of items forgotten). So the first thing we&#039;d probably want to do is make a scatter plot of these two variables. Let&#039;s define their respective dimensions on the plot axes as:&lt;br /&gt;
&lt;br /&gt;
* x-axis | dim1 | current age (&#039;&#039;&#039;&#039;&#039;AGE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
* y-axis | dim2 | exam score (&#039;&#039;&#039;&#039;&#039;SCORE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Notice that after plotting, the dots seem to form clusters. That very promising! If you were asked to draw a line on this plane, to separate these two clusters, it could be easily done. Our brain&#039;s neural nets have already solved the the spatial problem. Now let&#039;s see if an artificial neural net can solve the same problem. &lt;br /&gt;
&lt;br /&gt;
Click the blue &#039;&#039;start&#039;&#039; button below; let it run for about 500 epochs (~5 seconds), then click pause.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Tensorflow Playground===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe key=&amp;quot;tf&amp;quot; path=&amp;quot;#activation=tanh&amp;amp;regularization=L1&amp;amp;batchSize=15&amp;amp;dataset=gauss&amp;amp;regDataset=reg-plane&amp;amp;learningRate=0.003&amp;amp;regularizationRate=0.001&amp;amp;noise=0&amp;amp;networkShape=1&amp;amp;seed=0.73576&amp;amp;showTestData=false&amp;amp;discretize=false&amp;amp;percTrainData=40&amp;amp;x=true&amp;amp;y=false&amp;amp;xTimesY=false&amp;amp;xSquared=false&amp;amp;ySquared=false&amp;amp;cosX=false&amp;amp;sinX=false&amp;amp;cosY=false&amp;amp;sinY=false&amp;amp;collectStats=false&amp;amp;problem=classification&amp;amp;initZero=false&amp;amp;hideText=false&amp;amp;showTestData_hide=true&amp;amp;stepButton_hide=true&amp;amp;problem_hide=true&amp;amp;noise_hide=true&amp;amp;discretize_hide=true&amp;amp;regularization_hide=true&amp;amp;dataset_hide=true&amp;amp;batchSize_hide=true&amp;amp;percTrainData_hide=true&amp;amp;regularizationRate_hide=true&amp;amp;learningRate_hide=true&amp;amp;numHiddenLayers_hide=true&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://playground.tensorflow.org/#activation=tanh&amp;amp;regularization=L1&amp;amp;batchSize=15&amp;amp;dataset=gauss&amp;amp;regDataset=reg-plane&amp;amp;learningRate=0.003&amp;amp;regularizationRate=0.001&amp;amp;noise=0&amp;amp;networkShape=1&amp;amp;seed=0.73576&amp;amp;showTestData=false&amp;amp;discretize=false&amp;amp;percTrainData=40&amp;amp;x=true&amp;amp;y=false&amp;amp;xTimesY=false&amp;amp;xSquared=false&amp;amp;ySquared=false&amp;amp;cosX=false&amp;amp;sinX=false&amp;amp;cosY=false&amp;amp;sinY=false&amp;amp;collectStats=false&amp;amp;problem=classification&amp;amp;initZero=false&amp;amp;hideText=false&amp;amp;showTestData_hide=true&amp;amp;stepButton_hide=true&amp;amp;problem_hide=true&amp;amp;noise_hide=true&amp;amp;discretize_hide=true&amp;amp;regularization_hide=true&amp;amp;dataset_hide=true&amp;amp;batchSize_hide=true&amp;amp;percTrainData_hide=true&amp;amp;regularizationRate_hide=true&amp;amp;learningRate_hide=true&amp;amp;numHiddenLayers_hide=true&amp;quot; height=&amp;quot;1050&amp;quot; width=&amp;quot;1050&amp;quot; scrolling=&amp;quot;no&amp;quot; style=&amp;quot;border:none; overflow:hidden; padding-top:-220px; margin-top:-220px;&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt; &lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
Is one neuron with input from &#039;&#039;a single feature&#039;&#039; (the dim1 data: AGE) performing well in the separation task? If so, an orange-colored background should have formed behind the orange dots, while a blue-colored background should have formed behind the blue dots. This colored surface gradient can be understood as the neural network&#039;s prediction value at that given coordinate. We will explore prediction values in more detail later on in the tutorial. First let&#039;s take a look at what the neural net is taking as inputs.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Inputs===&lt;br /&gt;
----&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=right &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=250px&lt;br /&gt;
|margin=5px 2%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File: Neural Net Features.png|250px]]&lt;br /&gt;
| Figure 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To assess the performance, take a look at the input options in &#039;&#039;Figure-1&#039;&#039;. There are a bunch of &#039;&#039;X&#039;&#039; variables with subscripts and superscripts, and next to each is a box with various color gradients. For now, let&#039;s focus on just two of those symbols, and what they mean to us...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
These are parsed such that subscripts (&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; , &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ,... &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; ) represent each predictor variable, like AGE and SCORE. As you can see, the first two input options &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; are just &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;AGE&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;SCORE&amp;lt;/sub&amp;gt;. Note that since &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; is plotted on the x-axis, it has a color gradient that changes horizontally, but is constant in the vertical dimension. Conversely the &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; feature plotted on the y-axis has a vertical color gradient. To clarify why this happens...&lt;br /&gt;
&lt;br /&gt;
If the only thing we know about these study participants is their AGE, &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;, we can only make a 1-D plot with each person&#039;s age along the x-axis, such that [ x = &#039;&#039;AGE&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; , y = 0 ]. If you take a look at Figure-2, it should be clear that when information is collapsed onto its single dimension and plotted along the x-axis, the best line we can draw to separate the dim-1 data will be orthogonal to the x-axis (a vertical line). As you move horizontally along the x-axis your categorical guess will likely change, along with the confidence in that guess, which is precisely what is being represented by the color gradient. On the other hand, knowing nothing about exam score, moving up and down on the y-axis will have no effect on your decision, which is why color is constant in the y-dimension. &lt;br /&gt;
&lt;br /&gt;
When the neural net only gets input about a single feature of each person in the dataset, its synaptic weights will only adapt output along that one dimension. Thus, if for example the network sees that a person is 3 years above the dataset average (considering the data has been &#039;&#039;mean deviated&#039;&#039; and centered), it won&#039;t matter what that person&#039;s cognitive SCORE was (since the neural net doesn&#039;t have access to that info), the network will always make the same guess for anyone 3 years above average age. This is why color is constant at &#039;&#039;x&#039;&#039;=3 for any &#039;&#039;y&#039;&#039; value.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=left &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=420px&lt;br /&gt;
|margin=15px 5%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File:NN NumberLine.png|400px]]&lt;br /&gt;
| Figure 2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a shortcoming of having just one single neuron in the entire network. You could add as many neurons and layers as you want (go ahead and try it)...... if the network only gets input about one feature dimension, the output will be the same, whether there is 1 neuron, or 1 billion. To realize this fact, pretend you can only see the dots as they are plotted in along the number line in 1D (in Figure 2); if we were unable to see the 2D cluster clouds above that line, the billions of neurons in our brain would tell us to draw the classification line in basically the same place as that one single neuron in our artificial neural net. This is a very interesting concept worth noting: neural net classifiers can fail for two very different reasons.&lt;br /&gt;
&lt;br /&gt;
(1) The neural network itself might be ill-formulated in such a way that, no matter how much information you provide, it cannot seem to learn to solve the classification problem. (2) On the other hand, you might have implemented an apposite deep neural network; yet if the input data is insufficient to solve the classification problem, it will appear to you that this potentially very good neural network performs like garbage. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that said, there are ways to help prevent that later scenario from happening. These involve doing things like you see for the rest of the input features. The next page will discuss the full set of possible network inputs we have here, which includes...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE × SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(AGE)&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(SCORE)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{SmallBox|&#039;&#039;&#039;[[Neural Nets 2|Continue to Neural Nets Tutorial Page 2]]&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;btn data-toggle=&amp;quot;tooltip&amp;quot;&amp;gt;Neural Nets 2&amp;lt;/btn&amp;gt; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3920</id>
		<title>Neural Nets</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3920"/>
		<updated>2020-05-04T11:41:21Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{SmallBox|float=right|clear=none|margin=0px 0px 8px 18px|width=170px|font-size=13px|Tutorial Pages|txt-size=11px|&lt;br /&gt;
1. [[Neural Nets|Intro]]&amp;lt;br&amp;gt;&lt;br /&gt;
2. [[Neural Nets 2|Network Inputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
3. [[Neural Nets 3|Network Activation]]&amp;lt;br&amp;gt;&lt;br /&gt;
4. [[Neural Nets 4|Network Outputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Below there is an embedded a neural network classifier, rendered using [https://www.tensorflow.org Tensorflow][http://playground.tensorflow.org Playground]. There are a variety of knobs and buttons on the interface; as we move along, more of these options will become available. Don&#039;t worry though, all these will be explained in detail, in due time. For now though, let&#039;s define our primary goal throughout this tutorial: &#039;&#039;&#039;classification&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The primary task is to train neural nets to classify items into categories, based on some limited information. Like fruit or vegetable; or undergrad major; or Alzheimer&#039;s Disease patient (CASE) or control participant (CTRL). In the Tensorflow playground below, you can see a bunch of orange and blue dots. Instead of simply thinking about these as dots at arbitrary spatial coordinates, it will be helpful to think of these as representing people in a clinical study. Let&#039;s define the blue dots are patients from the CASE group, and orange dots are CTRL participants. What is our &#039;limited information&#039; about them? Let&#039;s say we have collected information about their age and their score on a dementia screening exam (scores represent number of items forgotten). So the first thing we&#039;d probably want to do is make a scatter plot of these two variables. Let&#039;s define their respective dimensions on the plot axes as:&lt;br /&gt;
&lt;br /&gt;
* x-axis | dim1 | current age (&#039;&#039;&#039;&#039;&#039;AGE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
* y-axis | dim2 | exam score (&#039;&#039;&#039;&#039;&#039;SCORE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Notice that after plotting, the dots seem to form clusters. That very promising! If you were asked to draw a line on this plane, to separate these two clusters, it could be easily done. Our brain&#039;s neural nets have already solved the the spatial problem. Now let&#039;s see if an artificial neural net can solve the same problem. &lt;br /&gt;
&lt;br /&gt;
Click the blue &#039;&#039;start&#039;&#039; button below; let it run for about 500 epochs (~5 seconds), then click pause.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Tensorflow Playground===&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://bradleymonk.com&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt; &lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://playground.tensorflow.org/#activation=tanh&amp;amp;regularization=L1&amp;amp;batchSize=15&amp;amp;dataset=gauss&amp;amp;regDataset=reg-plane&amp;amp;learningRate=0.003&amp;amp;regularizationRate=0.001&amp;amp;noise=0&amp;amp;networkShape=1&amp;amp;seed=0.73576&amp;amp;showTestData=false&amp;amp;discretize=false&amp;amp;percTrainData=40&amp;amp;x=true&amp;amp;y=false&amp;amp;xTimesY=false&amp;amp;xSquared=false&amp;amp;ySquared=false&amp;amp;cosX=false&amp;amp;sinX=false&amp;amp;cosY=false&amp;amp;sinY=false&amp;amp;collectStats=false&amp;amp;problem=classification&amp;amp;initZero=false&amp;amp;hideText=false&amp;amp;showTestData_hide=true&amp;amp;stepButton_hide=true&amp;amp;problem_hide=true&amp;amp;noise_hide=true&amp;amp;discretize_hide=true&amp;amp;regularization_hide=true&amp;amp;dataset_hide=true&amp;amp;batchSize_hide=true&amp;amp;percTrainData_hide=true&amp;amp;regularizationRate_hide=true&amp;amp;learningRate_hide=true&amp;amp;numHiddenLayers_hide=true&amp;quot; height=&amp;quot;1050&amp;quot; width=&amp;quot;1050&amp;quot; scrolling=&amp;quot;no&amp;quot; style=&amp;quot;border:none; overflow:hidden; padding-top:-220px; margin-top:-220px;&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt; &lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
Is one neuron with input from &#039;&#039;a single feature&#039;&#039; (the dim1 data: AGE) performing well in the separation task? If so, an orange-colored background should have formed behind the orange dots, while a blue-colored background should have formed behind the blue dots. This colored surface gradient can be understood as the neural network&#039;s prediction value at that given coordinate. We will explore prediction values in more detail later on in the tutorial. First let&#039;s take a look at what the neural net is taking as inputs.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Inputs===&lt;br /&gt;
----&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=right &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=250px&lt;br /&gt;
|margin=5px 2%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File: Neural Net Features.png|250px]]&lt;br /&gt;
| Figure 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To assess the performance, take a look at the input options in &#039;&#039;Figure-1&#039;&#039;. There are a bunch of &#039;&#039;X&#039;&#039; variables with subscripts and superscripts, and next to each is a box with various color gradients. For now, let&#039;s focus on just two of those symbols, and what they mean to us...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
These are parsed such that subscripts (&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; , &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ,... &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; ) represent each predictor variable, like AGE and SCORE. As you can see, the first two input options &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; are just &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;AGE&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;SCORE&amp;lt;/sub&amp;gt;. Note that since &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; is plotted on the x-axis, it has a color gradient that changes horizontally, but is constant in the vertical dimension. Conversely the &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; feature plotted on the y-axis has a vertical color gradient. To clarify why this happens...&lt;br /&gt;
&lt;br /&gt;
If the only thing we know about these study participants is their AGE, &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;, we can only make a 1-D plot with each person&#039;s age along the x-axis, such that [ x = &#039;&#039;AGE&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; , y = 0 ]. If you take a look at Figure-2, it should be clear that when information is collapsed onto its single dimension and plotted along the x-axis, the best line we can draw to separate the dim-1 data will be orthogonal to the x-axis (a vertical line). As you move horizontally along the x-axis your categorical guess will likely change, along with the confidence in that guess, which is precisely what is being represented by the color gradient. On the other hand, knowing nothing about exam score, moving up and down on the y-axis will have no effect on your decision, which is why color is constant in the y-dimension. &lt;br /&gt;
&lt;br /&gt;
When the neural net only gets input about a single feature of each person in the dataset, its synaptic weights will only adapt output along that one dimension. Thus, if for example the network sees that a person is 3 years above the dataset average (considering the data has been &#039;&#039;mean deviated&#039;&#039; and centered), it won&#039;t matter what that person&#039;s cognitive SCORE was (since the neural net doesn&#039;t have access to that info), the network will always make the same guess for anyone 3 years above average age. This is why color is constant at &#039;&#039;x&#039;&#039;=3 for any &#039;&#039;y&#039;&#039; value.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=left &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=420px&lt;br /&gt;
|margin=15px 5%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File:NN NumberLine.png|400px]]&lt;br /&gt;
| Figure 2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a shortcoming of having just one single neuron in the entire network. You could add as many neurons and layers as you want (go ahead and try it)...... if the network only gets input about one feature dimension, the output will be the same, whether there is 1 neuron, or 1 billion. To realize this fact, pretend you can only see the dots as they are plotted in along the number line in 1D (in Figure 2); if we were unable to see the 2D cluster clouds above that line, the billions of neurons in our brain would tell us to draw the classification line in basically the same place as that one single neuron in our artificial neural net. This is a very interesting concept worth noting: neural net classifiers can fail for two very different reasons.&lt;br /&gt;
&lt;br /&gt;
(1) The neural network itself might be ill-formulated in such a way that, no matter how much information you provide, it cannot seem to learn to solve the classification problem. (2) On the other hand, you might have implemented an apposite deep neural network; yet if the input data is insufficient to solve the classification problem, it will appear to you that this potentially very good neural network performs like garbage. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that said, there are ways to help prevent that later scenario from happening. These involve doing things like you see for the rest of the input features. The next page will discuss the full set of possible network inputs we have here, which includes...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE × SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(AGE)&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(SCORE)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{SmallBox|&#039;&#039;&#039;[[Neural Nets 2|Continue to Neural Nets Tutorial Page 2]]&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;btn data-toggle=&amp;quot;tooltip&amp;quot;&amp;gt;Neural Nets 2&amp;lt;/btn&amp;gt; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3919</id>
		<title>Neural Nets</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Neural_Nets&amp;diff=3919"/>
		<updated>2020-05-04T11:38:34Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* Tensorflow Playground */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{SmallBox|float=right|clear=none|margin=0px 0px 8px 18px|width=170px|font-size=13px|Tutorial Pages|txt-size=11px|&lt;br /&gt;
1. [[Neural Nets|Intro]]&amp;lt;br&amp;gt;&lt;br /&gt;
2. [[Neural Nets 2|Network Inputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
3. [[Neural Nets 3|Network Activation]]&amp;lt;br&amp;gt;&lt;br /&gt;
4. [[Neural Nets 4|Network Outputs]]&amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Below there is an embedded a neural network classifier, rendered using [https://www.tensorflow.org Tensorflow][http://playground.tensorflow.org Playground]. There are a variety of knobs and buttons on the interface; as we move along, more of these options will become available. Don&#039;t worry though, all these will be explained in detail, in due time. For now though, let&#039;s define our primary goal throughout this tutorial: &#039;&#039;&#039;classification&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The primary task is to train neural nets to classify items into categories, based on some limited information. Like fruit or vegetable; or undergrad major; or Alzheimer&#039;s Disease patient (CASE) or control participant (CTRL). In the Tensorflow playground below, you can see a bunch of orange and blue dots. Instead of simply thinking about these as dots at arbitrary spatial coordinates, it will be helpful to think of these as representing people in a clinical study. Let&#039;s define the blue dots are patients from the CASE group, and orange dots are CTRL participants. What is our &#039;limited information&#039; about them? Let&#039;s say we have collected information about their age and their score on a dementia screening exam (scores represent number of items forgotten). So the first thing we&#039;d probably want to do is make a scatter plot of these two variables. Let&#039;s define their respective dimensions on the plot axes as:&lt;br /&gt;
&lt;br /&gt;
* x-axis | dim1 | current age (&#039;&#039;&#039;&#039;&#039;AGE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
* y-axis | dim2 | exam score (&#039;&#039;&#039;&#039;&#039;SCORE&#039;&#039;&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Notice that after plotting, the dots seem to form clusters. That very promising! If you were asked to draw a line on this plane, to separate these two clusters, it could be easily done. Our brain&#039;s neural nets have already solved the the spatial problem. Now let&#039;s see if an artificial neural net can solve the same problem. &lt;br /&gt;
&lt;br /&gt;
Click the blue &#039;&#039;start&#039;&#039; button below; let it run for about 500 epochs (~5 seconds), then click pause.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Tensorflow Playground===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://playground.tensorflow.org/#activation=tanh&amp;amp;regularization=L1&amp;amp;batchSize=15&amp;amp;dataset=gauss&amp;amp;regDataset=reg-plane&amp;amp;learningRate=0.003&amp;amp;regularizationRate=0.001&amp;amp;noise=0&amp;amp;networkShape=1&amp;amp;seed=0.73576&amp;amp;showTestData=false&amp;amp;discretize=false&amp;amp;percTrainData=40&amp;amp;x=true&amp;amp;y=false&amp;amp;xTimesY=false&amp;amp;xSquared=false&amp;amp;ySquared=false&amp;amp;cosX=false&amp;amp;sinX=false&amp;amp;cosY=false&amp;amp;sinY=false&amp;amp;collectStats=false&amp;amp;problem=classification&amp;amp;initZero=false&amp;amp;hideText=false&amp;amp;showTestData_hide=true&amp;amp;stepButton_hide=true&amp;amp;problem_hide=true&amp;amp;noise_hide=true&amp;amp;discretize_hide=true&amp;amp;regularization_hide=true&amp;amp;dataset_hide=true&amp;amp;batchSize_hide=true&amp;amp;percTrainData_hide=true&amp;amp;regularizationRate_hide=true&amp;amp;learningRate_hide=true&amp;amp;numHiddenLayers_hide=true&amp;quot; height=&amp;quot;1050&amp;quot; width=&amp;quot;1050&amp;quot; scrolling=&amp;quot;no&amp;quot; style=&amp;quot;border:none; overflow:hidden; padding-top:-220px; margin-top:-220px;&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt; &lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
Is one neuron with input from &#039;&#039;a single feature&#039;&#039; (the dim1 data: AGE) performing well in the separation task? If so, an orange-colored background should have formed behind the orange dots, while a blue-colored background should have formed behind the blue dots. This colored surface gradient can be understood as the neural network&#039;s prediction value at that given coordinate. We will explore prediction values in more detail later on in the tutorial. First let&#039;s take a look at what the neural net is taking as inputs.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===Inputs===&lt;br /&gt;
----&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=right &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=250px&lt;br /&gt;
|margin=5px 2%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File: Neural Net Features.png|250px]]&lt;br /&gt;
| Figure 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To assess the performance, take a look at the input options in &#039;&#039;Figure-1&#039;&#039;. There are a bunch of &#039;&#039;X&#039;&#039; variables with subscripts and superscripts, and next to each is a box with various color gradients. For now, let&#039;s focus on just two of those symbols, and what they mean to us...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
These are parsed such that subscripts (&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; , &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ,... &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; ) represent each predictor variable, like AGE and SCORE. As you can see, the first two input options &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; are just &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;AGE&amp;lt;/sub&amp;gt; and &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;SCORE&amp;lt;/sub&amp;gt;. Note that since &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; is plotted on the x-axis, it has a color gradient that changes horizontally, but is constant in the vertical dimension. Conversely the &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; feature plotted on the y-axis has a vertical color gradient. To clarify why this happens...&lt;br /&gt;
&lt;br /&gt;
If the only thing we know about these study participants is their AGE, &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;, we can only make a 1-D plot with each person&#039;s age along the x-axis, such that [ x = &#039;&#039;AGE&#039;&#039;&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; , y = 0 ]. If you take a look at Figure-2, it should be clear that when information is collapsed onto its single dimension and plotted along the x-axis, the best line we can draw to separate the dim-1 data will be orthogonal to the x-axis (a vertical line). As you move horizontally along the x-axis your categorical guess will likely change, along with the confidence in that guess, which is precisely what is being represented by the color gradient. On the other hand, knowing nothing about exam score, moving up and down on the y-axis will have no effect on your decision, which is why color is constant in the y-dimension. &lt;br /&gt;
&lt;br /&gt;
When the neural net only gets input about a single feature of each person in the dataset, its synaptic weights will only adapt output along that one dimension. Thus, if for example the network sees that a person is 3 years above the dataset average (considering the data has been &#039;&#039;mean deviated&#039;&#039; and centered), it won&#039;t matter what that person&#039;s cognitive SCORE was (since the neural net doesn&#039;t have access to that info), the network will always make the same guess for anyone 3 years above average age. This is why color is constant at &#039;&#039;x&#039;&#039;=3 for any &#039;&#039;y&#039;&#039; value.&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{SmallBox|display=block &lt;br /&gt;
|float=left &lt;br /&gt;
|clear=none &lt;br /&gt;
|width=420px&lt;br /&gt;
|margin=15px 5%&lt;br /&gt;
|border-width=2px &lt;br /&gt;
|border-radius=2px&lt;br /&gt;
|[[File:NN NumberLine.png|400px]]&lt;br /&gt;
| Figure 2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a shortcoming of having just one single neuron in the entire network. You could add as many neurons and layers as you want (go ahead and try it)...... if the network only gets input about one feature dimension, the output will be the same, whether there is 1 neuron, or 1 billion. To realize this fact, pretend you can only see the dots as they are plotted in along the number line in 1D (in Figure 2); if we were unable to see the 2D cluster clouds above that line, the billions of neurons in our brain would tell us to draw the classification line in basically the same place as that one single neuron in our artificial neural net. This is a very interesting concept worth noting: neural net classifiers can fail for two very different reasons.&lt;br /&gt;
&lt;br /&gt;
(1) The neural network itself might be ill-formulated in such a way that, no matter how much information you provide, it cannot seem to learn to solve the classification problem. (2) On the other hand, you might have implemented an apposite deep neural network; yet if the input data is insufficient to solve the classification problem, it will appear to you that this potentially very good neural network performs like garbage. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that said, there are ways to help prevent that later scenario from happening. These involve doing things like you see for the rest of the input features. The next page will discuss the full set of possible network inputs we have here, which includes...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=30% align=center &lt;br /&gt;
|+ style=&amp;quot;font-weight:bold;&amp;quot;|Input Features&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| AGE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;  &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  SCORE&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| &#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  AGE × SCORE&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(AGE)&lt;br /&gt;
|- style=&amp;quot;height:30px&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;| sin(&#039;&#039;X&#039;&#039;&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;) &lt;br /&gt;
|colspan=2 style=&amp;quot;background:#f7f7f7; border:3px solid #ffffff&amp;quot;|  sin(SCORE)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{SmallBox|&#039;&#039;&#039;[[Neural Nets 2|Continue to Neural Nets Tutorial Page 2]]&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;btn data-toggle=&amp;quot;tooltip&amp;quot;&amp;gt;Neural Nets 2&amp;lt;/btn&amp;gt; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Help:Contents&amp;diff=3918</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Help:Contents&amp;diff=3918"/>
		<updated>2020-05-04T11:35:31Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Box|width=255px|MediaWiki [[Help]] Pages|&lt;br /&gt;
* [[http://en.wikipedia.org/wiki/Help:Wiki_markup MediaWiki Markup]]&lt;br /&gt;
* [[:Category:Templates]]&lt;br /&gt;
* [http://www.onesci.com/Help:Contents OneSci Help]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Wiki_markup#Images Mediawiki Markup Images]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Magic_words MediaWiki Magic Words]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Tables MediaWiki Tables]&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/Help:Gadget-ImageAnnotator/Installation MediaWiki ImageAnnotator]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Extension:Cite/Cite.php#Separating_references_from_text Mediawiki References]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:Math Math]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Template Template Tips]&lt;br /&gt;
* [http://meta.wikimedia.org/wiki/Help:Advanced_templates Advanced Templates]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:Transclusion Transclusion]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|Bradleymonk.com .JS|&lt;br /&gt;
*[[MediaWiki:Common.js]]&lt;br /&gt;
*[[MediaWiki:LAPI.js]]&lt;br /&gt;
*[[MediaWiki:Gadget-ImageAnnotator.js]]&lt;br /&gt;
*[[MediaWiki:ImageAnnotatorConfig.js]]&lt;br /&gt;
*[[MediaWiki:LAPI.js]]&lt;br /&gt;
*[[MediaWiki:TextCleaner.js]]&lt;br /&gt;
*[[MediaWiki:Tooltips.js]]&lt;br /&gt;
*[[MediaWiki:UIElements.js]]&lt;br /&gt;
*[[MediaWiki:AjaxSubmit.js]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|HTML &amp;amp; CSS|&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:CSS Manual:CSS]&lt;br /&gt;
*: [[MediaWiki:Common.css]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:Skin_configuration Manual:Skin_configuration]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:Skinning Manual:Skinning]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Skins Help:Skins]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Lua Scripting==&lt;br /&gt;
&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Extension:Scribunto Mediawiki Extension:Scribunto]&lt;br /&gt;
&lt;br /&gt;
* Latest Update: [http://bradleymonk.com/Module:Yesno Modules still not working] &amp;lt; this is a medium-priority TBD when time permits&lt;br /&gt;
&lt;br /&gt;
== Adding HTML5 Video to MediaWiki ==&lt;br /&gt;
I&#039;ve enabled three options for embedding animated video in this wiki. &#039;&#039;&#039;Option 1: PopFig video&#039;&#039;&#039; will embed the video a popup box. The video is hidden in a semantic mediawiki icon; mouseover of this icon will pop-open the video. This option makes use of a semantic mediawiki parser tag, secure html extension, and several layers of transclusion. &#039;&#039;&#039;Option 2: mediaplayer video&#039;&#039;&#039; will embed an inline video using the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;mediaplayer&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag. The option doesn&#039;t require anything but a stand-alone extension. &#039;&#039;&#039;Option 3: Widget:Html5media&#039;&#039;&#039;  makes use of of an Html5 widget. This option is good for very small animations, but does has a fixed size so the portion of a larger videos that extends beyond ~200 pixels will be hidden.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 1: PopFig ===&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;br&amp;gt; {{PopFig|[[File:Dot.png]]|&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;video src=&amp;quot;http://bradleymonk.com/media2/EXAMPLE.mov&amp;quot; controls&amp;gt;&amp;lt;/video&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;div style=&#039;color:white; width:400px&#039;&amp;gt;This is an example of a movie caption. The text will automatically wrap&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;||&amp;lt;big&amp;gt;SI video1 &amp;lt;/big&amp;gt;}}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
{{PopFig|[[File:Dot.png]]|&amp;lt;html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;video src=&amp;quot;http://bradleymonk.com/media2/EXAMPLE.mov&amp;quot; controls&amp;gt;&amp;lt;/video&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;color:white; width:400px&#039;&amp;gt;This is an example of a movie caption. The text will automatically wrap&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;||&amp;lt;big&amp;gt;SI video1 &amp;lt;/big&amp;gt;}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 2: mediaplayer ===&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;lt;mediaplayer image=&#039;http://bradleymonk.com/media2/EXAMPLE.png&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;http://bradleymonk.com/media2/EXAMPLE.mov&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://bradleymonk.com/media2/EXAMPLE.png&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;http://bradleymonk.com/media2/EXAMPLE.mov&amp;lt;/mediaplayer&amp;gt; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
If the video is uploaded using the native wiki upload link in the sidebar, this option can be employed simply by pasting the [[Example uploaded video|uploaded video]] file name between the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;mediaplayer&amp;gt; &amp;lt;/mediaplayer&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tags like so:&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://www.bradleymonk.com/w/images/8/82/RenderTorus.jpg&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;File:RenderTorus.mp4&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://www.bradleymonk.com/w/images/8/82/RenderTorus.jpg&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;File:RenderTorus.mp4&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 3: [[Widget:Html5media|Widget:Html5media]] ===&lt;br /&gt;
&amp;lt;br&amp;gt; {{Box|font=90%|width=45%|float=left|text=12px|boarder=solid #aaa 1px|Embeded Version|&lt;br /&gt;
&lt;br /&gt;
{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- END BOX --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box|font=120%|width=45%|float=left|text=12px|boarder=solid #aaa 1px|Popup Version|&lt;br /&gt;
&lt;br /&gt;
Hover mouse over icon to open: {{Popup|{{#widget:Html5media|url=http://bradleymonk.com/media2/DIFFUSE.mp4|width=200|height=200}}}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Popup|{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- END BOX --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==Semantic Mediawiki Popups==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;[http://semantic-mediawiki.org/wiki/Help:Adding_tooltips Semantic Mediawiki Tool Tips]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The parser function &#039;&#039;&#039;#info&#039;&#039;&#039; allows to add tooltips containing additional information or warnings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Syntax&amp;lt;/big&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info: &amp;lt;text&amp;gt; | &amp;lt;icon&amp;gt; }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* you must include the &amp;quot;nowiki&amp;quot; tag around any equal signs if you want to use styles inside the into popup &lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span style&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; &lt;br /&gt;
** result {{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;this is red&amp;lt;/span&amp;gt; text|warning}} &lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;this is red&amp;lt;/span&amp;gt; text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If you want to have a large image popup, the best way to do this is using these inline styles with the span tag&lt;br /&gt;
** &amp;lt;code&amp;gt;position:fixed; left:10px; top:10px; overflow:visible;&amp;lt;/code&amp;gt;&lt;br /&gt;
** inline text {{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;position:fixed; left:10px; top:10px; overflow:visible;&amp;quot;&amp;gt;THIS WILL PUT THE IMAGE UP HERE&amp;lt;/span&amp;gt; text}} inline text&lt;br /&gt;
** Use the Popupimg template inside the Popup template to do exactly this&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info: {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** result: {{#info: {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Popup| {{Popupimg|[[File:Nicoll2011 Fig1.png]] }} }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** result: {{Popup| {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Extension LinkTitles==&lt;br /&gt;
&lt;br /&gt;
;AUTO GENERATED SITE LINKS&lt;br /&gt;
&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Extension:LinkTitles MediaWiki Extension Page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
require_once( &amp;quot;$IP/extensions/LinkTitles/LinkTitles.php&amp;quot; );&lt;br /&gt;
$wgLinkTitlesSmartMode = false;         // false = case sensitive&lt;br /&gt;
$wgLinkTitlesMinimumTitleLength = 7;    // default is 3&lt;br /&gt;
$wgLinkTitlesSkipTemplates = true;      // skip any text in a {{template|text}}&lt;br /&gt;
$wgLinkTitlesFirstOnly = true;          // only link the first occurrence&lt;br /&gt;
$wgLinkTitlesBlackList = array();&lt;br /&gt;
$wgLinkTitlesBlackList[] = &#039;MediaWiki&#039;;&lt;br /&gt;
$wgLinkTitlesBlackList[] = &#039;mediaplayer&#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; USE THE  __NOAUTOLINKS__  TAG ON A WIKI PAGE TO PREVENT LINKING ON THAT PAGE&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
__NOAUTOLINKS__ &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOAUTOLINKS__&lt;br /&gt;
&lt;br /&gt;
==Template:SlideBox==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{SlideBox|width=80%|float=left|&lt;br /&gt;
Header [[Content]] Is Shown&lt;br /&gt;
|&lt;br /&gt;
Body text is hidden&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Customize Editing Toolbar==&lt;br /&gt;
http://bradleymonk.com/User:Bradley_Monk/common.js&lt;br /&gt;
http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization&lt;br /&gt;
&lt;br /&gt;
;section&lt;br /&gt;
*{String} (optional) The name of the section in the WikiEditor. Defaults to &#039;main&#039;&lt;br /&gt;
;id&lt;br /&gt;
*{String} (required) Unique id (ie. &#039;my-button&#039;)&lt;br /&gt;
;icon&lt;br /&gt;
*{String} (recommended) URL to the icon, should be square about 21 to 22px&lt;br /&gt;
;label&lt;br /&gt;
*{String} (required) Tooltip displayed when hovering button&lt;br /&gt;
;insertBefore&lt;br /&gt;
*{String} (optional) Wikitext to be inserted before the cursor on-click&lt;br /&gt;
;sampleText&lt;br /&gt;
*{String} (optional) Text inserted in place of the cursor if no text was selected&lt;br /&gt;
;insertAfter&lt;br /&gt;
*{String} (optional) Wikitext to be inserted after the cursor on-click&lt;br /&gt;
;callback&lt;br /&gt;
*{Function} (optional) Called when the button is clicked&lt;br /&gt;
;autoSummary&lt;br /&gt;
*{mixed} (optional) Null or an Object with the following properties:&lt;br /&gt;
**summary: {String} (required) Edit summary that should be used&lt;br /&gt;
**position: {String} (optional) &#039;append&#039;, &#039;prepend&#039; or &#039;replace&#039;&lt;br /&gt;
**delimiter: {String} (optional) delimiter between the (possibly) current summary and the to-be-inserted summary&lt;br /&gt;
&lt;br /&gt;
==Syntax Highlighting==&lt;br /&gt;
The &#039;&#039;&#039;Extension:SyntaxHighlight GeSHi&#039;&#039;&#039; tag displays formatted [[w:source code|source code]] with the  &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
This extension also  adds coloring according to the code language settings. Like the &amp;lt;code&amp;gt;&amp;amp;lt;pre&amp;amp;gt;&amp;lt;/code&amp;gt; tags and the &amp;lt;code&amp;gt;&amp;amp;lt;[[Extension:Poem|poem]]&amp;amp;gt;&amp;lt;/code&amp;gt; tags, the tags shows the coding exactly as it was typed, preserving white space. &lt;br /&gt;
&lt;br /&gt;
This extension also can create line numbers.&lt;br /&gt;
&lt;br /&gt;
=== Usage ===&lt;br /&gt;
On the wiki page, you can now use &amp;quot;syntaxhighlight&amp;quot; elements:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $v = &amp;quot;string&amp;quot;;    // sample initialization&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
html text&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
    echo $v;         // end of php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
shows:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $v = &amp;quot;string&amp;quot;;    // sample initialization&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
html text&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
    echo $v;         // end of php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Alternative &amp;amp;lt;source&amp;amp;gt; tag ===&lt;br /&gt;
Before [[rev:50696]], the extension used the tag &amp;lt;code&amp;gt;[[Extension:SyntaxHighlighter|&amp;amp;lt;source&amp;amp;gt;]]&amp;lt;/code&amp;gt;.&lt;br /&gt;
This is still supported, but &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt; avoids conflicts if your source code itself contains &amp;lt;nowiki&amp;gt;&amp;lt;source&amp;gt;&amp;lt;/nowiki&amp;gt; (for example XML).&lt;br /&gt;
&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
; &amp;lt;code&amp;gt;lang=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Defines what programming language the source code is using. This affects how the extension highlights the source code. See the section &amp;quot;[[#Supported_languages|Supported languages]]&amp;quot; in this page for details of supported languages.&lt;br /&gt;
; &amp;lt;code&amp;gt;line=&amp;quot;GESHI_NORMAL_LINE_NUMBERS|GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Type of line numbering to use. If you do not provide this parameter, then lines will not be numbered. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#enabling-line-numbers enable_line_numbers] the flag in GeSHi.&lt;br /&gt;
; &amp;lt;code&amp;gt;line&amp;lt;/code&amp;gt;&lt;br /&gt;
: Equivalent to &amp;lt;code&amp;gt;&#039;&#039;&#039;line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
; &amp;lt;code&amp;gt;line start=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Use together with the parameter &amp;quot;&#039;&#039;&#039;line&#039;&#039;&#039;&amp;quot;. Define the start number of the line. If you type line start=&amp;quot;55&amp;quot;, it will start counting at 55, then 56,57,58... and so on. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#starting-line-numbers start_line_numbers_at] method on GeSHi&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
; &amp;lt;code&amp;gt;case&amp;lt;/code&amp;gt;&lt;br /&gt;
: Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#auto-caps-nocaps set_case_keywords] method on GeSHi&lt;br /&gt;
; &amp;lt;code&amp;gt;tab&amp;lt;/code&amp;gt;&lt;br /&gt;
: Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#setting-tab-width set_tab_width] method on GeSHi&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
; &amp;lt;code&amp;gt;highlight=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Specifies which line is highlighted. Note that the parameter &#039;&#039;&#039;line start=&amp;quot;??&amp;quot;&#039;&#039;&#039; doesn&#039;t affect how it counts the lines. &lt;br /&gt;
; &amp;lt;code&amp;gt;enclose=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Specifies what container is used to enclose the source code. Takes values &amp;quot;pre&amp;quot; (default value), &amp;quot;div&amp;quot;, &amp;quot;none&amp;quot;. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#the-code-container set_header_type] method on GeSHi. Choosing &amp;quot;div&amp;quot; will cause text to wrap, which is helpful if text is extending off the edge of the screen, causing horizontal scrolling.&lt;br /&gt;
; &amp;lt;code&amp;gt;strict&amp;lt;/code&amp;gt;&lt;br /&gt;
: Type the name of the parameter to enable the strict mode. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#using-strict-mode enable_strict_mode] method on GeSHi.&lt;br /&gt;
&lt;br /&gt;
The effect and usage of these parameters can be consulted in [http://qbnz.com/highlighter/geshi-doc.html GeSHi&#039;s documentation].&lt;br /&gt;
&lt;br /&gt;
Since r22246, you can override the colors using &#039;&#039;&#039;MediaWiki:Geshi.css&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== More Usage ===&lt;br /&gt;
When line numbering is added with &#039;&#039;line&#039;&#039;, long code lines will be wrapped.  See the example below.   When &#039;&#039;text&#039;&#039; is the selected language, and numbering is used, the behaviour resembles the use of &#039;&#039;pre&#039;&#039; tags with numbering and long-line wrapping.&lt;br /&gt;
&lt;br /&gt;
The following example shows how to color an HTML code listing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;html4strict&amp;quot; line start=&amp;quot;100&amp;quot; highlight=&amp;quot;5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
HTML module goes here...&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;  &lt;br /&gt;
A typical result is just: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;html4strict&amp;quot; line start=&amp;quot;100&amp;quot; highlight=&amp;quot;5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--This is a comment. Comments are not displayed in the browser--&amp;gt;&lt;br /&gt;
&amp;lt;table align=center style=&amp;quot;background: ivory;color:maroon;font-style:italic;font-family:arial;font-weight:bold;font-size:10pt;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt; Heading 1 &amp;lt;/th&amp;gt;&amp;lt;th&amp;gt; Heading 2 &amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding:10px;&amp;quot;&amp;gt; This is cell 1 text &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding:10px;&amp;quot;&amp;gt; This is cell 2 text &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Supported languages ===&lt;br /&gt;
These are the languages known by GeSHi that can be used in the &#039;&#039;&#039;lang&#039;&#039;&#039; parameter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Note that installed GeSHi version (can be revealed by previewing e.g. &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight lang=&amp;quot;-&amp;quot;&amp;amp;gt;&amp;amp;lt;/syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt;) might not be the most recent version;  see [[bugzilla:10967]] for Wikimedia sites.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;The GeSHi sources for each language can be found in [http://sourceforge.net/p/geshi/code/HEAD/tree/trunk/geshi-1.0.X/src/geshi/ VCS on SourceForge]. Remember to go and select the version that the MediaWiki installation uses.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:left&amp;quot;&lt;br /&gt;
!Code||Language&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;abap&amp;lt;/code&amp;gt;||[[:en:ABAP|ABAP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;actionscript&amp;lt;/code&amp;gt;||[[:en:ActionScript|ActionScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ada&amp;lt;/code&amp;gt;||[[:en:Ada (programming language)|Ada]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;apache&amp;lt;/code&amp;gt;||[[:en:Apache HTTP Server|Apache Configuration]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;applescript&amp;lt;/code&amp;gt;||[[:en:AppleScript|AppleScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;asm&amp;lt;/code&amp;gt;||[[:en:Assembly language|Assembly]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;asp&amp;lt;/code&amp;gt;||[[:en:Active Server Pages|Active Server Pages (ASP)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;autoit&amp;lt;/code&amp;gt;||[[:en:AutoIt|AutoIt]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bash&amp;lt;/code&amp;gt;||[[:en:Bash (Unix shell)|Bash]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;basic4gl&amp;lt;/code&amp;gt;||[[:en:Basic4GL|Basic4GL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bf&amp;lt;/code&amp;gt;||[[:en:Brainfuck|Brainfuck]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;blitzbasic&amp;lt;/code&amp;gt;||[[:en:Blitz BASIC|Blitz BASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bnf&amp;lt;/code&amp;gt;||[[:en:Backus-Naur Form|Backus-Naur Form]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;c&amp;lt;/code&amp;gt;||[[:en:C (programming language)|C]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;c_mac&amp;lt;/code&amp;gt;||C (Mac)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;caddcl&amp;lt;/code&amp;gt;||[[:en:Dialog Control Language|AutoCAD DCL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cadlisp&amp;lt;/code&amp;gt;||[[:en:AutoLISP|AutoLISP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cfdg&amp;lt;/code&amp;gt;||CFDG&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cfm&amp;lt;/code&amp;gt;||[[:en:ColdFusion_Markup_Language|ColdFusion Markup Language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cil&amp;lt;/code&amp;gt;||[[:en:Common_Intermediate_Language|Common Intermediate Language (CIL)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cobol&amp;lt;/code&amp;gt;||[[:en:COBOL|COBOL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cpp-qt&amp;lt;/code&amp;gt;||[[:en:Qt (toolkit)|C++ (Qt toolkit)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cpp&amp;lt;/code&amp;gt;||[[:en:C++|C++]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;csharp&amp;lt;/code&amp;gt;||[[:en:C Sharp (programming language)|C#]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;css&amp;lt;/code&amp;gt;||[[:en:Cascading Style Sheets|Cascading Style Sheets (CSS)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt;||[[:en:D (programming language)|D]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;delphi&amp;lt;/code&amp;gt;||[[:en:Delphi programming language|Delphi]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;diff&amp;lt;/code&amp;gt;||[[:en:diff|Diff]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;div&amp;lt;/code&amp;gt;||DIV&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dos&amp;lt;/code&amp;gt;||[[:en:DOS batch file|DOS batch file]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dot&amp;lt;/code&amp;gt;||[[:en:DOT language|DOT]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;eiffel&amp;lt;/code&amp;gt;||[[:en:Eiffel (programming language)|Eiffel]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;fortran&amp;lt;/code&amp;gt;||[[:en:Fortran|Fortran]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;freebasic&amp;lt;/code&amp;gt;||[[:en:FreeBASIC|FreeBASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gambas&amp;lt;/code&amp;gt;||[[:en:Gambas_programming_language|Gambas]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;genero&amp;lt;/code&amp;gt;||Genero&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gettext&amp;lt;/code&amp;gt;||[[:en:GNU_gettext|GNU internationalization (i18n) library]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;glsl&amp;lt;/code&amp;gt;||[[:en:GLSL|OpenGL Shading Language (GLSL)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gml&amp;lt;/code&amp;gt;||[[:en:Game Maker Language|Game Maker Language (GML)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gnuplot&amp;lt;/code&amp;gt;||[[:en:Gnuplot|gnuplot]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;groovy&amp;lt;/code&amp;gt;||[[:en:Groovy (programming language)|Groovy]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;haskell&amp;lt;/code&amp;gt;||[[:en:Haskell (programming language)|Haskell]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;hq9plus&amp;lt;/code&amp;gt;||HQ9+&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;html4strict&amp;lt;/code&amp;gt;||[[:en:HTML|HTML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;html5&amp;lt;/code&amp;gt;||[[:en:HTML5|HTML5]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;idl&amp;lt;/code&amp;gt;||[[:en:Universal Network Objects|Uno IDL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ini&amp;lt;/code&amp;gt;||[[:en:INI file|INI]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;inno&amp;lt;/code&amp;gt;||[[:en:Inno Setup|Inno]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;intercal&amp;lt;/code&amp;gt;||[[:en:INTERCAL|INTERCAL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;io&amp;lt;/code&amp;gt;||[[:en:Io (programming language)|Io]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;java&amp;lt;/code&amp;gt;||[[:en:Java (programming language)|Java]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;java5&amp;lt;/code&amp;gt;||[[:en:Java (programming language)|Java(TM) 2 Platform Standard Edition 5.0 ]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;javascript&amp;lt;/code&amp;gt;||[[:en:JavaScript|JavaScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;kixtart&amp;lt;/code&amp;gt;||[[:en:KiXtart|KiXtart]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;klonec&amp;lt;/code&amp;gt;||Klone C&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;klonecpp&amp;lt;/code&amp;gt;||Klone C++&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;latex&amp;lt;/code&amp;gt;||[[:en:LaTeX|LaTeX]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lisp&amp;lt;/code&amp;gt;||[[:en:Lisp (programming language)|Lisp]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lolcode&amp;lt;/code&amp;gt;||[[:en:LOLCODE|LOLCODE]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lotusscript&amp;lt;/code&amp;gt;||[[:en:LotusScript|LotusScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lua&amp;lt;/code&amp;gt;||[[:en:Lua (programming language)|Lua]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:left&amp;quot;&lt;br /&gt;
!Code||Language&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;m68k&amp;lt;/code&amp;gt;||[[:en:Motorola 68000|Motorola 68000 Assembler]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;||[[:en:Make_(software)|make]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;matlab&amp;lt;/code&amp;gt;||[[:en:MATLAB|MATLAB M]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mirc&amp;lt;/code&amp;gt;||[[:en:mIRC scripting language|mIRC scripting language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mxml&amp;lt;/code&amp;gt;||[[:en:MXML|MXML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mpasm&amp;lt;/code&amp;gt;||[[:en:PIC microcontroller|Microchip Assembler]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mysql&amp;lt;/code&amp;gt;||[[:en:MySQL|MySQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;nsis&amp;lt;/code&amp;gt;||[[:en:Nullsoft Scriptable Install System|Nullsoft Scriptable Install System (NSIS)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;objc&amp;lt;/code&amp;gt;||[[:en:Objective-C|Objective-C]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ocaml-brief&amp;lt;/code&amp;gt;||[[:en:Objective Caml|OCaml]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ocaml&amp;lt;/code&amp;gt;||[[:en:Objective Caml|OCaml]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oobas&amp;lt;/code&amp;gt;||[[:en:StarOffice Basic|OpenOffice.org Basic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oracle8&amp;lt;/code&amp;gt;||[[:en:PL/SQL|Oracle 8 SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oracle11&amp;lt;/code&amp;gt;||[[:en:PL/SQL|Oracle 11 SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;pascal&amp;lt;/code&amp;gt;||[[:en:Pascal (programming language)|Pascal]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;per&amp;lt;/code&amp;gt;||per&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;perl&amp;lt;/code&amp;gt;||[[:en:Perl|Perl]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;php-brief&amp;lt;/code&amp;gt;||[[:en:PHP|PHP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;php&amp;lt;/code&amp;gt;||[[:en:PHP|PHP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;pixelbender&amp;lt;/code&amp;gt;||[[:en:Adobe_Pixel_Bender|Pixel Bender]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;plsql&amp;lt;/code&amp;gt;||[[:en:PL/SQL|PL/SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;povray&amp;lt;/code&amp;gt;||[[:en:POV-Ray|Persistence of Vision Raytracer]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;powershell&amp;lt;/code&amp;gt;||[[:en:Windows_PowerShell|Windows PowerShell]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;progress&amp;lt;/code&amp;gt;||[[:en:OpenEdge_Advanced_Business_Language|OpenEdge Advanced Business Language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;prolog&amp;lt;/code&amp;gt;||[[:en:Prolog|Prolog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;providex&amp;lt;/code&amp;gt;||[[:en:ProvideX|ProvideX]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;python&amp;lt;/code&amp;gt;||[[:en:Python (programming language)|Python]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;qbasic&amp;lt;/code&amp;gt;||[[:en:QBasic|QBasic/QuickBASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rails&amp;lt;/code&amp;gt;||[[:en:Ruby on Rails|Rails]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;reg&amp;lt;/code&amp;gt;||[[:en:Windows Registry|Windows Registry]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;robots&amp;lt;/code&amp;gt;||[[:en:Robots Exclusion Standard|robots.txt]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rsplus&amp;lt;/code&amp;gt;||[[:en:R (programming language)|R]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ruby&amp;lt;/code&amp;gt;||[[:en:Ruby (programming language)|Ruby]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sas&amp;lt;/code&amp;gt;||[[:en:SAS System|SAS]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scala&amp;lt;/code&amp;gt;||[[:en:Scala_(programming_language)|Scala]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scheme&amp;lt;/code&amp;gt;||[[:en:Scheme (programming language)|Scheme]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scilab&amp;lt;/code&amp;gt;||[[:en:Scilab|Scilab]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sdlbasic&amp;lt;/code&amp;gt;||[[:en:SdlBasic|SdlBasic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;smalltalk&amp;lt;/code&amp;gt;||[[:en:Smalltalk|Smalltalk]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;smarty&amp;lt;/code&amp;gt;||[[:en:Smarty|Smarty]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sql&amp;lt;/code&amp;gt;||[[:en:SQL|SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tcl&amp;lt;/code&amp;gt;||[[:en:Tcl|Tcl]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;teraterm&amp;lt;/code&amp;gt;||[[:en:TeraTerm|Tera Term]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;text&amp;lt;/code&amp;gt;||[[:en:Plain text|Plain text]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;thinbasic&amp;lt;/code&amp;gt;||[[:en:thinBasic|thinBasic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tsql&amp;lt;/code&amp;gt;||[[:en:Transact-SQL|Transact-SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;typoscript&amp;lt;/code&amp;gt;||[[:en:TYPO3|TypoScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vala&amp;lt;/code&amp;gt;||[[:en:Vala_(programming_language)|Vala]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vb&amp;lt;/code&amp;gt;||[[:en:Visual Basic|Visual Basic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vbnet&amp;lt;/code&amp;gt;||[[:en:Visual Basic .NET|Visual Basic .NET]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;verilog&amp;lt;/code&amp;gt;||[[:en:Verilog|Verilog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vhdl&amp;lt;/code&amp;gt;||[[:en:VHSIC Hardware Description Language|VHDL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vim&amp;lt;/code&amp;gt;||[[:en:Vimscript|Vimscript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;visualfoxpro&amp;lt;/code&amp;gt;||[[:en:Visual FoxPro|Visual FoxPro]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;visualprolog&amp;lt;/code&amp;gt;||[[:en:Visual_Prolog|Visual Prolog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whitespace&amp;lt;/code&amp;gt;||[[:en:Whitespace_(programming_language)|Whitespace]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;winbatch&amp;lt;/code&amp;gt;||[[:en:Winbatch|Winbatch]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xml&amp;lt;/code&amp;gt;||[[:en:XML|XML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xorg_conf&amp;lt;/code&amp;gt;||[[:en:Xorg.conf|Xorg.conf]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xpp&amp;lt;/code&amp;gt;||[[:en:Microsoft_Dynamics_AX|X++]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;z80&amp;lt;/code&amp;gt;||[[:en:Zilog Z80|ZiLOG Z80 Assembler]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Extra features ===&lt;br /&gt;
&lt;br /&gt;
; Default Source Language&lt;br /&gt;
&lt;br /&gt;
Added in [[rev:50693]].&lt;br /&gt;
&lt;br /&gt;
If the site mainly quotes the source code of a specific programming language, it would be helpful to set a default language.&lt;br /&gt;
&lt;br /&gt;
To do so, add a new variable to LocalSettings.php, just after the require_once line. We set [[:en:C (programming language)|C programming language]] as an example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php&amp;quot;);&lt;br /&gt;
$wgSyntaxHighlightDefaultLang = &amp;quot;c&amp;quot;;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==LaTeX Math==&lt;br /&gt;
&lt;br /&gt;
; NEW WAY&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;tex&amp;gt;f{(x)} = {\sum \lambda \cdot \bar{y} \over \sum \lambda^{ \over 2 n} }&amp;lt;/tex&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:: &amp;lt;tex&amp;gt;f{(x)} = {\sum \lambda \cdot \bar{y} \over \sum \lambda^{ \over 2 n} }&amp;lt;/tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; OLD WAY&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f(x, \mu, \sigma) = \frac{1}{\sigma \sqrt{2\pi} } e^{ -\frac{(x-\mu)^2}{2\sigma^2} } &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt;&lt;br /&gt;
f(x, \mu, \sigma) = \frac{1}{\sigma \sqrt{2\pi} } e^{ -\frac{(x-\mu)^2}{2\sigma^2} }&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; {{TeX}} and HTML&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;[http://en.wikipedia.org/wiki/Table_of_mathematical_symbols LIST OF MATH SYMBOLS IN HTML MARKUP]&amp;lt;/big&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! {{TeX}} Syntax ([[#Forced_PNG_rendering|forcing PNG]])&lt;br /&gt;
! {{TeX}} Rendering&lt;br /&gt;
! HTML Syntax&lt;br /&gt;
! HTML Rendering&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|&amp;lt;VAR&amp;gt;&amp;amp;amp;alpha;&amp;lt;/VAR&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|&amp;lt;VAR&amp;gt;&amp;amp;alpha;&amp;lt;/VAR&amp;gt;}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt; f(x) = x^2\,&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; f(x) = x^2\,&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|&#039;&#039;f&#039;&#039;(&amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;) {{=}} &amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|&#039;&#039;f&#039;&#039;(&amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;) {{=}} &amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|{{radical|2}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|{{radical|2}}}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\sqrt{1-e^2}&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\sqrt{1-e^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|{{radical|1 &amp;amp;amp;minus; &#039;&#039;e&#039;&#039;&amp;amp;amp;sup2;}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|{{radical|1 &amp;amp;minus; &#039;&#039;e&#039;&#039;&amp;amp;sup2;}}}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The codes on the left produce the symbols on the right, but the latter can also be put directly in the wikitext, except for &amp;amp;lsquo;=&amp;amp;rsquo;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Syntax&lt;br /&gt;
! Rendering&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;amp;alpha; &amp;amp;amp;beta; &amp;amp;amp;gamma; &amp;amp;amp;delta; &amp;amp;amp;epsilon; &amp;amp;amp;zeta;&lt;br /&gt;
&amp;amp;amp;eta; &amp;amp;amp;theta; &amp;amp;amp;iota; &amp;amp;amp;kappa; &amp;amp;amp;lambda; &amp;amp;amp;mu; &amp;amp;amp;nu;&lt;br /&gt;
&amp;amp;amp;xi; &amp;amp;amp;omicron; &amp;amp;amp;pi; &amp;amp;amp;rho; &amp;amp;amp;sigma; &amp;amp;amp;sigmaf;&lt;br /&gt;
&amp;amp;amp;tau; &amp;amp;amp;upsilon; &amp;amp;amp;phi; &amp;amp;amp;chi; &amp;amp;amp;psi; &amp;amp;amp;omega;&lt;br /&gt;
&amp;amp;amp;Gamma; &amp;amp;amp;Delta; &amp;amp;amp;Theta; &amp;amp;amp;Lambda; &amp;amp;amp;Xi; &amp;amp;amp;Pi;&lt;br /&gt;
&amp;amp;amp;Sigma; &amp;amp;amp;Phi; &amp;amp;amp;Psi; &amp;amp;amp;Omega;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;texhtml&amp;quot; |α β γ δ ε ζ&amp;lt;br &lt;br /&gt;
/&amp;gt;η θ ι κ λ μ ν&amp;lt;br &lt;br /&gt;
/&amp;gt;ξ ο π ρ σ ς&amp;lt;br &lt;br /&gt;
/&amp;gt;τ υ φ χ ψ ω&amp;lt;br&lt;br /&gt;
/&amp;gt;Γ Δ Θ Λ Ξ Π&amp;lt;br&lt;br /&gt;
/&amp;gt;Σ Φ Ψ Ω&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| valign=&amp;quot;middle&amp;quot; | &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;amp;int; &amp;amp;amp;sum; &amp;amp;amp;prod; &amp;amp;amp;radic; &amp;amp;amp;minus; &amp;amp;amp;plusmn; &amp;amp;amp;infty;&lt;br /&gt;
&amp;amp;amp;asymp; &amp;amp;amp;prop; {{=}} &amp;amp;amp;equiv; &amp;amp;amp;ne; &amp;amp;amp;le; &amp;amp;amp;ge; &lt;br /&gt;
&amp;amp;amp;times; &amp;amp;amp;middot; &amp;amp;amp;divide; &amp;amp;amp;part; &amp;amp;amp;prime; &amp;amp;amp;Prime;&lt;br /&gt;
&amp;amp;amp;nabla; &amp;amp;amp;permil; &amp;amp;amp;deg; &amp;amp;amp;there4; &amp;amp;amp;Oslash; &amp;amp;amp;oslash;&lt;br /&gt;
&amp;amp;amp;isin; &amp;amp;amp;notin; &lt;br /&gt;
&amp;amp;amp;cap; &amp;amp;amp;cup; &amp;amp;amp;sub; &amp;amp;amp;sup; &amp;amp;amp;sube; &amp;amp;amp;supe;&lt;br /&gt;
&amp;amp;amp;not; &amp;amp;amp;and; &amp;amp;amp;or; &amp;amp;amp;exist; &amp;amp;amp;forall; &lt;br /&gt;
&amp;amp;amp;rArr; &amp;amp;amp;hArr; &amp;amp;amp;rarr; &amp;amp;amp;harr; &amp;amp;amp;uarr; &lt;br /&gt;
&amp;amp;amp;alefsym; - &amp;amp;amp;ndash; &amp;amp;amp;mdash; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;texhtml&amp;quot; |∫ ∑ ∏ √ − ± ∞&amp;lt;br &lt;br /&gt;
/&amp;gt;≈ ∝ = ≡ ≠ ≤ ≥&amp;lt;br &lt;br /&gt;
/&amp;gt;× · ÷ ∂ ′ ″&amp;lt;br &lt;br /&gt;
/&amp;gt;∇ ‰ ° ∴ Ø ø&amp;lt;br&lt;br /&gt;
/&amp;gt;∈ ∉ ∩ ∪ ⊂ ⊃ ⊆ ⊇&amp;lt;br&lt;br /&gt;
/&amp;gt;¬ ∧ ∨ ∃ ∀&amp;lt;br &lt;br /&gt;
/&amp;gt;⇒ ⇔ → ↔ ↑&amp;lt;br &lt;br /&gt;
/&amp;gt;ℵ - – —&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Image Annoation==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorEnable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorPageName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[Sandbox]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorFullName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[Sandbox]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorFile&amp;quot;&amp;gt;[[File:Foo.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div&amp;gt;&amp;lt;!--IMAGE NOTES BELOW --&amp;gt;{{ImageNoteEnd|id=-1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Livelets==&lt;br /&gt;
*[http://www.mediawiki.org/wiki/Extension:Livelets Livelets]&lt;br /&gt;
&lt;br /&gt;
To create livelets, wrap any areas of the page in the #live parser-function.&lt;br /&gt;
&lt;br /&gt;
In the following example, a transclusion of the page called Template:MyVerySlowTable has been turned into a livelet:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{#live: {{MyVerySlowTable}} }}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References and Citations==&lt;br /&gt;
&lt;br /&gt;
===Using Native Ref Tags===&lt;br /&gt;
In-text references make it easy to copy the text to another page; on the other hand, they make it hard to read. References containing a lot of data, quotes or elaborate citation templates can make up a significantly larger fraction of the source than the text that will actually be visible. To avoid this, recent versions of the extension allow moving some or all of the references into the &amp;lt;code&amp;gt;&amp;amp;lt;references /&amp;gt;&amp;lt;/code&amp;gt; section, to the place where they will actually appear to the reader. Thus,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
According to scientists, the Sun is pretty big.&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;miller&amp;quot; /&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Moon, however, is not so big.&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;smith&amp;quot; /&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#61;=Notes==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;references&amp;gt;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;miller&amp;quot;&amp;gt;&#039;&#039;&#039;E. Miller, &#039;&#039;The Sun&#039;&#039;, (New York: Academic Press, 2005), 23-5.&#039;&#039;&#039;&amp;amp;lt;/ref&amp;gt;&#039;&#039;&#039;&amp;lt;/br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;smith&amp;quot;&amp;gt;&#039;&#039;&#039;R. Smith, &amp;quot;Size of the Moon&amp;quot;, &#039;&#039;Scientific American&#039;&#039;, 46 (April 1978): 44-6.&#039;&#039;&#039;&amp;amp;lt;/ref&amp;gt;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;/references&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will have the same output as the [[#Example|first example]] above, although the numbering and order of the references will not in general be the same.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==HTML ==&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://www.w3schools.com/tags/tag_iframe.asp&amp;quot; height=&amp;quot;100&amp;quot; width=&amp;quot;400&amp;quot; frameborder=&amp;quot;1&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:left&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{Box|width=600px|iFrame Code|&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://www.w3schools.com/tags/tag_iframe.asp&amp;quot; &lt;br /&gt;
height=&amp;quot;300&amp;quot; width=&amp;quot;350&amp;quot; frameborder=&amp;quot;1&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
===iFrame Attributes===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Value !! Description&lt;br /&gt;
|-&lt;br /&gt;
| align || left, right, top, middle, bottom || Specifies the alignment of an iframe according to surrounding elements&lt;br /&gt;
|-&lt;br /&gt;
| frameborder || 1, 0 || Specifies whether or not to display a border around an iframe&lt;br /&gt;
|-&lt;br /&gt;
| height || pixels || Specifies the height of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| longdesc || URL || Specifies a page that contains a long description of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| marginheight || pixels || Specifies the top and bottom margins of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| marginwidth || pixels || Specifies the left and right margins of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| name || name || Specifies the name of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| [[sandbox]] || &amp;quot;&amp;quot;, allow-forms, allow-same-origin, allow-scripts, allow-top-navigation  || Enables a set of extra restrictions for the [[content]] in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| scrolling || yes, no, auto || Specifies whether or not to display scrollbars in an iframe&lt;br /&gt;
|-&lt;br /&gt;
| seamless || seamless || Specifies that the iframe should look like it is a part of the containing document&lt;br /&gt;
|-&lt;br /&gt;
| src || URL || Specifies the address of the document to embed in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| srcdoc || HTML_code || Specifies the HTML [[content]] of the page to show in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| width || pixels || Specifies the width of an iframe&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Tables==&lt;br /&gt;
&lt;br /&gt;
===wikitable===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Link !! Description&lt;br /&gt;
|-&lt;br /&gt;
|[http://vcell.org/bionetgen/ BioNetGen] || A web-based tool for automatically generating a biochemical reaction networks from user-specified rules for biomolecular interactions.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://bionumbers.hms.harvard.edu/ B10NUMB3R5] || (BIONUMBERS) A database of useful biological numbers.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.bioinformaticsservices.com/ BioInformatics Services] || BioInformatics Services is a biotechnology consulting firm specializing in using computational biology to solve complex biological and data analysis problems.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellmigration.org/resource/modeling/model_resources.shtml#softwares cellmigrationgateway] || modeling software                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellml.org/ CellML] || The CellML language is an open standard based on the XML markup language at the University of Auckland and affiliated research groups.                &lt;br /&gt;
|-&lt;br /&gt;
|[https://sites.google.com/site/compcellbio/ CompCell Bio Web] ||  Development site for teaching modules on quantitative cell biology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://doqcs.ncbs.res.in/ DOQCS] ||  Quantitative Cellular Signaling (DOQCS) is a repository of models of signaling pathways.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.e-cell.org/ecell/ E-Cell] ||  A Multi-Algorithm, Multi-Timescale Simulation Software Environment.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://gfit.sourceforge.net/ Gfit] ||  A program for global regression analysis of experimental data.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.kitware.com/ Kitware] || Professional Visualization Solutions, Tools and Support.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.mcell.cnl.salk.edu/ MCell] ||  General Monte Carlo Simulator of Cellular Microphysiology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://mnm.engr.uconn.edu/MNM/SMSSearchServlet Minimotif Miner] || Application to search for short sequence motifs in Proteins.                &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Upgrading MediaWiki==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 1&amp;lt;/big&amp;gt; &#039;&#039;&#039;- [http://www.mediawiki.org/wiki/Manual:Upgrading download latest stable version of MediaWiki]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 2&amp;lt;/big&amp;gt; &#039;&#039;&#039;- determine database credentials from dreamhost&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Get Hostname (e.g.):&lt;br /&gt;
* mysql.bradleymonk.com&lt;br /&gt;
;Get Database name (e.g.):&lt;br /&gt;
* bradleymonk_com&lt;br /&gt;
;Get Database User name (e.g.):&lt;br /&gt;
* username&lt;br /&gt;
;Get Database User pass (e.g.):&lt;br /&gt;
* password&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 3&amp;lt;/big&amp;gt; &#039;&#039;&#039;- back-up existing files and the database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Go to: mysql.example.com&lt;br /&gt;
*Enter db user and password when prompted&lt;br /&gt;
*click on db in left panel&lt;br /&gt;
*click on the &amp;quot;Export&amp;quot; tab&lt;br /&gt;
*check &amp;quot;Save as file&amp;quot;&lt;br /&gt;
*click &amp;quot;Go&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 4&amp;lt;/big&amp;gt; &#039;&#039;&#039;- FTP the &amp;lt;code&amp;gt;mediawiki.tar.gz&amp;lt;/code&amp;gt; file to the /w directory&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 5&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Unpack the tarball&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Use the console to SSH into the /w directory and unpack tarball&lt;br /&gt;
* &amp;lt;code&amp;gt;$ssh bradleymonk.com -l username&amp;lt;/code&amp;gt;&lt;br /&gt;
* Change to the /w directory&lt;br /&gt;
:* &amp;lt;code&amp;gt;$tar xvzf mediawiki.tar.gz&amp;lt;/code&amp;gt;&lt;br /&gt;
*this unpacks into a new folder: &amp;lt;code&amp;gt;/w/mediawiki&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 6&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Move files and rename directory&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Copy files from old to new directory&lt;br /&gt;
* LocalSettings.php&lt;br /&gt;
* logofile.png&lt;br /&gt;
* images (or upload) directory&lt;br /&gt;
* extension directory&lt;br /&gt;
* custom skins&lt;br /&gt;
* .htaccess file&lt;br /&gt;
&lt;br /&gt;
;Swap-rename directories&lt;br /&gt;
*rename old directory &amp;lt;code&amp;gt;/w_old&amp;lt;/code&amp;gt;&lt;br /&gt;
*move new directory out of &amp;lt;code&amp;gt;/w_old&amp;lt;/code&amp;gt; to top level domain&lt;br /&gt;
*rename new directory to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 7&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Run MediaWiki update script&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* login with SSH again:&lt;br /&gt;
:* &amp;lt;code&amp;gt;$ssh bradleymonk.com -l username&amp;lt;/code&amp;gt;&lt;br /&gt;
* change to the &amp;lt;code&amp;gt;/w/maintenance&amp;lt;/code&amp;gt; directory&lt;br /&gt;
* enter: &amp;lt;code&amp;gt;$php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
* If the prompt gives an error like: &amp;quot;you&#039;re using php version 2.x mediawiki requires version 3.x&amp;quot;&lt;br /&gt;
* try entering these:&lt;br /&gt;
:* &amp;lt;code&amp;gt;$/usr/local/php53/bin/php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
:* &amp;lt;code&amp;gt;$/usr/local/php54/bin/php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Check if the upgrade worked by going to the MediaWiki page &amp;quot;Special Version&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Quoting ==&lt;br /&gt;
{{cquote|SAN DIEGO -- Money -- does it draw students to their future careers? The answer is no, according to statistics and students at San Diego State University.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cquote|quote goes here}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==MediaWiki Tips==&lt;br /&gt;
&lt;br /&gt;
*To remove the arrow icon from external links, navigate to MediaWiki:Common.css and add this line of code&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
#content a[href ^=&amp;quot;http://&amp;quot;].external {background: center right no-repeat; padding-right: 1px;}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Button Template==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Button|TPB=.5em| Button Text }}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Button|TPB=.5em| Button Text }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Table Map==&lt;br /&gt;
&lt;br /&gt;
See here: [[Table Map]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Labeled Section Transclusion ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;See: [http://www.mediawiki.org/wiki/Extension:Labeled_Section_Transclusion Extension:Labeled_Section_Transclusion]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Mark off sections ===&lt;br /&gt;
&lt;br /&gt;
Mark off sections in the text using &amp;lt;nowiki&amp;gt;&amp;lt;section&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/&amp;gt; tags like this:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;nowiki&amp;gt;&lt;br /&gt;
    &amp;lt;section begin=Hayashi_Malinow_2000_Science /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    {{Article|Hayashi Malinow|2000|Science • PDF|10731148|Driving AMPA receptors into synapses}}&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;section end=Hayashi_Malinow_2000_Science /&amp;gt;&lt;br /&gt;
    &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this uses two individual markers, rather than normal XML open/close tags, which simplifies nested or overlapping sections. This allows you to insert section tags without worrying about interfering with other sections.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Transclude the section ===&lt;br /&gt;
&lt;br /&gt;
Call the parser function to transclude it, i.e. to transclude a section called &#039;&#039;chapter1&#039;&#039; from a page called &#039;&#039;[[Articles]]&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;nowiki&amp;gt;&lt;br /&gt;
    {{#section:Articles|Hayashi_Malinow_2000_Science}}&lt;br /&gt;
    &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Templates]]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Help:Contents&amp;diff=3917</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Help:Contents&amp;diff=3917"/>
		<updated>2020-05-04T11:34:36Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Box|width=255px|MediaWiki [[Help]] Pages|&lt;br /&gt;
* [[http://en.wikipedia.org/wiki/Help:Wiki_markup MediaWiki Markup]]&lt;br /&gt;
* [[:Category:Templates]]&lt;br /&gt;
* [http://www.onesci.com/Help:Contents OneSci Help]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Wiki_markup#Images Mediawiki Markup Images]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Magic_words MediaWiki Magic Words]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Tables MediaWiki Tables]&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/Help:Gadget-ImageAnnotator/Installation MediaWiki ImageAnnotator]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Extension:Cite/Cite.php#Separating_references_from_text Mediawiki References]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:Math Math]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Template Template Tips]&lt;br /&gt;
* [http://meta.wikimedia.org/wiki/Help:Advanced_templates Advanced Templates]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:Transclusion Transclusion]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|Bradleymonk.com .JS|&lt;br /&gt;
*[[MediaWiki:Common.js]]&lt;br /&gt;
*[[MediaWiki:LAPI.js]]&lt;br /&gt;
*[[MediaWiki:Gadget-ImageAnnotator.js]]&lt;br /&gt;
*[[MediaWiki:ImageAnnotatorConfig.js]]&lt;br /&gt;
*[[MediaWiki:LAPI.js]]&lt;br /&gt;
*[[MediaWiki:TextCleaner.js]]&lt;br /&gt;
*[[MediaWiki:Tooltips.js]]&lt;br /&gt;
*[[MediaWiki:UIElements.js]]&lt;br /&gt;
*[[MediaWiki:AjaxSubmit.js]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|HTML &amp;amp; CSS|&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:CSS Manual:CSS]&lt;br /&gt;
*: [[MediaWiki:Common.css]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:Skin_configuration Manual:Skin_configuration]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Manual:Skinning Manual:Skinning]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Skins Help:Skins]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Lua Scripting==&lt;br /&gt;
&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Extension:Scribunto Mediawiki Extension:Scribunto]&lt;br /&gt;
&lt;br /&gt;
* Latest Update: [http://bradleymonk.com/Module:Yesno Modules still not working] &amp;lt; this is a medium-priority TBD when time permits&lt;br /&gt;
&lt;br /&gt;
== Adding HTML5 Video to MediaWiki ==&lt;br /&gt;
I&#039;ve enabled three options for embedding animated video in this wiki. &#039;&#039;&#039;Option 1: PopFig video&#039;&#039;&#039; will embed the video a popup box. The video is hidden in a semantic mediawiki icon; mouseover of this icon will pop-open the video. This option makes use of a semantic mediawiki parser tag, secure html extension, and several layers of transclusion. &#039;&#039;&#039;Option 2: mediaplayer video&#039;&#039;&#039; will embed an inline video using the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;mediaplayer&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag. The option doesn&#039;t require anything but a stand-alone extension. &#039;&#039;&#039;Option 3: Widget:Html5media&#039;&#039;&#039;  makes use of of an Html5 widget. This option is good for very small animations, but does has a fixed size so the portion of a larger videos that extends beyond ~200 pixels will be hidden.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 1: PopFig ===&lt;br /&gt;
&amp;lt;br&amp;gt; {{PopFig|[[File:Dot.png]]|&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;video src=&amp;quot;http://bradleymonk.com/media2/EXAMPLE.mov&amp;quot; controls&amp;gt;&amp;lt;/video&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;div style=&#039;color:white; width:400px&#039;&amp;gt;This is an example of a movie caption. The text will automatically wrap&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;||&amp;lt;big&amp;gt;SI video1 &amp;lt;/big&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
{{PopFig|[[File:Dot.png]]|&amp;lt;html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;video src=&amp;quot;http://bradleymonk.com/media2/EXAMPLE.mov&amp;quot; controls&amp;gt;&amp;lt;/video&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;color:white; width:400px&#039;&amp;gt;This is an example of a movie caption. The text will automatically wrap&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;||&amp;lt;big&amp;gt;SI video1 &amp;lt;/big&amp;gt;}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 2: mediaplayer ===&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;lt;mediaplayer image=&#039;http://bradleymonk.com/media2/EXAMPLE.png&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;http://bradleymonk.com/media2/EXAMPLE.mov&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://bradleymonk.com/media2/EXAMPLE.png&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;http://bradleymonk.com/media2/EXAMPLE.mov&amp;lt;/mediaplayer&amp;gt; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
If the video is uploaded using the native wiki upload link in the sidebar, this option can be employed simply by pasting the [[Example uploaded video|uploaded video]] file name between the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;mediaplayer&amp;gt; &amp;lt;/mediaplayer&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tags like so:&lt;br /&gt;
&lt;br /&gt;
{{Style|class=div|size=90%|align=left|font=courier|background=#EBFAEB|color=black|pad=8px|margin=6px|&lt;br /&gt;
&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://www.bradleymonk.com/w/images/8/82/RenderTorus.jpg&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;File:RenderTorus.mp4&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mediaplayer image=&#039;http://www.bradleymonk.com/w/images/8/82/RenderTorus.jpg&#039; width=&#039;500&#039; height=&#039;300&#039;&amp;gt;File:RenderTorus.mp4&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Option 3: [[Widget:Html5media|Widget:Html5media]] ===&lt;br /&gt;
&amp;lt;br&amp;gt; {{Box|font=90%|width=45%|float=left|text=12px|boarder=solid #aaa 1px|Embeded Version|&lt;br /&gt;
&lt;br /&gt;
{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- END BOX --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box|font=120%|width=45%|float=left|text=12px|boarder=solid #aaa 1px|Popup Version|&lt;br /&gt;
&lt;br /&gt;
Hover mouse over icon to open: {{Popup|{{#widget:Html5media|url=http://bradleymonk.com/media2/DIFFUSE.mp4|width=200|height=200}}}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Popup|{{#widget:Html5media&lt;br /&gt;
|url=http://bradleymonk.com/media2/DIFFUSE.mp4&lt;br /&gt;
|width=200&lt;br /&gt;
|height=200&lt;br /&gt;
}}}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- END BOX --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==Semantic Mediawiki Popups==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;[http://semantic-mediawiki.org/wiki/Help:Adding_tooltips Semantic Mediawiki Tool Tips]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The parser function &#039;&#039;&#039;#info&#039;&#039;&#039; allows to add tooltips containing additional information or warnings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Syntax&amp;lt;/big&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info: &amp;lt;text&amp;gt; | &amp;lt;icon&amp;gt; }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* you must include the &amp;quot;nowiki&amp;quot; tag around any equal signs if you want to use styles inside the into popup &lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span style&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; &lt;br /&gt;
** result {{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;this is red&amp;lt;/span&amp;gt; text|warning}} &lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;color:red&amp;quot;&amp;gt;this is red&amp;lt;/span&amp;gt; text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If you want to have a large image popup, the best way to do this is using these inline styles with the span tag&lt;br /&gt;
** &amp;lt;code&amp;gt;position:fixed; left:10px; top:10px; overflow:visible;&amp;lt;/code&amp;gt;&lt;br /&gt;
** inline text {{#info:text &amp;lt;span style&amp;lt;nowiki&amp;gt;=&amp;lt;/nowiki&amp;gt;&amp;quot;position:fixed; left:10px; top:10px; overflow:visible;&amp;quot;&amp;gt;THIS WILL PUT THE IMAGE UP HERE&amp;lt;/span&amp;gt; text}} inline text&lt;br /&gt;
** Use the Popupimg template inside the Popup template to do exactly this&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#info: {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** result: {{#info: {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&lt;br /&gt;
** example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Popup| {{Popupimg|[[File:Nicoll2011 Fig1.png]] }} }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** result: {{Popup| {{Popupimg|[[File:Nicoll2011 Fig1.png]]}} }}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Extension LinkTitles==&lt;br /&gt;
&lt;br /&gt;
;AUTO GENERATED SITE LINKS&lt;br /&gt;
&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Extension:LinkTitles MediaWiki Extension Page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
require_once( &amp;quot;$IP/extensions/LinkTitles/LinkTitles.php&amp;quot; );&lt;br /&gt;
$wgLinkTitlesSmartMode = false;         // false = case sensitive&lt;br /&gt;
$wgLinkTitlesMinimumTitleLength = 7;    // default is 3&lt;br /&gt;
$wgLinkTitlesSkipTemplates = true;      // skip any text in a {{template|text}}&lt;br /&gt;
$wgLinkTitlesFirstOnly = true;          // only link the first occurrence&lt;br /&gt;
$wgLinkTitlesBlackList = array();&lt;br /&gt;
$wgLinkTitlesBlackList[] = &#039;MediaWiki&#039;;&lt;br /&gt;
$wgLinkTitlesBlackList[] = &#039;mediaplayer&#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; USE THE  __NOAUTOLINKS__  TAG ON A WIKI PAGE TO PREVENT LINKING ON THAT PAGE&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
__NOAUTOLINKS__ &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOAUTOLINKS__&lt;br /&gt;
&lt;br /&gt;
==Template:SlideBox==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{SlideBox|width=80%|float=left|&lt;br /&gt;
Header [[Content]] Is Shown&lt;br /&gt;
|&lt;br /&gt;
Body text is hidden&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Customize Editing Toolbar==&lt;br /&gt;
http://bradleymonk.com/User:Bradley_Monk/common.js&lt;br /&gt;
http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization&lt;br /&gt;
&lt;br /&gt;
;section&lt;br /&gt;
*{String} (optional) The name of the section in the WikiEditor. Defaults to &#039;main&#039;&lt;br /&gt;
;id&lt;br /&gt;
*{String} (required) Unique id (ie. &#039;my-button&#039;)&lt;br /&gt;
;icon&lt;br /&gt;
*{String} (recommended) URL to the icon, should be square about 21 to 22px&lt;br /&gt;
;label&lt;br /&gt;
*{String} (required) Tooltip displayed when hovering button&lt;br /&gt;
;insertBefore&lt;br /&gt;
*{String} (optional) Wikitext to be inserted before the cursor on-click&lt;br /&gt;
;sampleText&lt;br /&gt;
*{String} (optional) Text inserted in place of the cursor if no text was selected&lt;br /&gt;
;insertAfter&lt;br /&gt;
*{String} (optional) Wikitext to be inserted after the cursor on-click&lt;br /&gt;
;callback&lt;br /&gt;
*{Function} (optional) Called when the button is clicked&lt;br /&gt;
;autoSummary&lt;br /&gt;
*{mixed} (optional) Null or an Object with the following properties:&lt;br /&gt;
**summary: {String} (required) Edit summary that should be used&lt;br /&gt;
**position: {String} (optional) &#039;append&#039;, &#039;prepend&#039; or &#039;replace&#039;&lt;br /&gt;
**delimiter: {String} (optional) delimiter between the (possibly) current summary and the to-be-inserted summary&lt;br /&gt;
&lt;br /&gt;
==Syntax Highlighting==&lt;br /&gt;
The &#039;&#039;&#039;Extension:SyntaxHighlight GeSHi&#039;&#039;&#039; tag displays formatted [[w:source code|source code]] with the  &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
This extension also  adds coloring according to the code language settings. Like the &amp;lt;code&amp;gt;&amp;amp;lt;pre&amp;amp;gt;&amp;lt;/code&amp;gt; tags and the &amp;lt;code&amp;gt;&amp;amp;lt;[[Extension:Poem|poem]]&amp;amp;gt;&amp;lt;/code&amp;gt; tags, the tags shows the coding exactly as it was typed, preserving white space. &lt;br /&gt;
&lt;br /&gt;
This extension also can create line numbers.&lt;br /&gt;
&lt;br /&gt;
=== Usage ===&lt;br /&gt;
On the wiki page, you can now use &amp;quot;syntaxhighlight&amp;quot; elements:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $v = &amp;quot;string&amp;quot;;    // sample initialization&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
html text&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
    echo $v;         // end of php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
shows:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $v = &amp;quot;string&amp;quot;;    // sample initialization&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
html text&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
    echo $v;         // end of php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Alternative &amp;amp;lt;source&amp;amp;gt; tag ===&lt;br /&gt;
Before [[rev:50696]], the extension used the tag &amp;lt;code&amp;gt;[[Extension:SyntaxHighlighter|&amp;amp;lt;source&amp;amp;gt;]]&amp;lt;/code&amp;gt;.&lt;br /&gt;
This is still supported, but &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt; avoids conflicts if your source code itself contains &amp;lt;nowiki&amp;gt;&amp;lt;source&amp;gt;&amp;lt;/nowiki&amp;gt; (for example XML).&lt;br /&gt;
&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
; &amp;lt;code&amp;gt;lang=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Defines what programming language the source code is using. This affects how the extension highlights the source code. See the section &amp;quot;[[#Supported_languages|Supported languages]]&amp;quot; in this page for details of supported languages.&lt;br /&gt;
; &amp;lt;code&amp;gt;line=&amp;quot;GESHI_NORMAL_LINE_NUMBERS|GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Type of line numbering to use. If you do not provide this parameter, then lines will not be numbered. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#enabling-line-numbers enable_line_numbers] the flag in GeSHi.&lt;br /&gt;
; &amp;lt;code&amp;gt;line&amp;lt;/code&amp;gt;&lt;br /&gt;
: Equivalent to &amp;lt;code&amp;gt;&#039;&#039;&#039;line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
; &amp;lt;code&amp;gt;line start=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Use together with the parameter &amp;quot;&#039;&#039;&#039;line&#039;&#039;&#039;&amp;quot;. Define the start number of the line. If you type line start=&amp;quot;55&amp;quot;, it will start counting at 55, then 56,57,58... and so on. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#starting-line-numbers start_line_numbers_at] method on GeSHi&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
; &amp;lt;code&amp;gt;case&amp;lt;/code&amp;gt;&lt;br /&gt;
: Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#auto-caps-nocaps set_case_keywords] method on GeSHi&lt;br /&gt;
; &amp;lt;code&amp;gt;tab&amp;lt;/code&amp;gt;&lt;br /&gt;
: Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#setting-tab-width set_tab_width] method on GeSHi&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
; &amp;lt;code&amp;gt;highlight=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Specifies which line is highlighted. Note that the parameter &#039;&#039;&#039;line start=&amp;quot;??&amp;quot;&#039;&#039;&#039; doesn&#039;t affect how it counts the lines. &lt;br /&gt;
; &amp;lt;code&amp;gt;enclose=&amp;quot;??&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
: Specifies what container is used to enclose the source code. Takes values &amp;quot;pre&amp;quot; (default value), &amp;quot;div&amp;quot;, &amp;quot;none&amp;quot;. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#the-code-container set_header_type] method on GeSHi. Choosing &amp;quot;div&amp;quot; will cause text to wrap, which is helpful if text is extending off the edge of the screen, causing horizontal scrolling.&lt;br /&gt;
; &amp;lt;code&amp;gt;strict&amp;lt;/code&amp;gt;&lt;br /&gt;
: Type the name of the parameter to enable the strict mode. Corresponds to [http://qbnz.com/highlighter/geshi-doc.html#using-strict-mode enable_strict_mode] method on GeSHi.&lt;br /&gt;
&lt;br /&gt;
The effect and usage of these parameters can be consulted in [http://qbnz.com/highlighter/geshi-doc.html GeSHi&#039;s documentation].&lt;br /&gt;
&lt;br /&gt;
Since r22246, you can override the colors using &#039;&#039;&#039;MediaWiki:Geshi.css&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== More Usage ===&lt;br /&gt;
When line numbering is added with &#039;&#039;line&#039;&#039;, long code lines will be wrapped.  See the example below.   When &#039;&#039;text&#039;&#039; is the selected language, and numbering is used, the behaviour resembles the use of &#039;&#039;pre&#039;&#039; tags with numbering and long-line wrapping.&lt;br /&gt;
&lt;br /&gt;
The following example shows how to color an HTML code listing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;html4strict&amp;quot; line start=&amp;quot;100&amp;quot; highlight=&amp;quot;5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
HTML module goes here...&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;  &lt;br /&gt;
A typical result is just: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;html4strict&amp;quot; line start=&amp;quot;100&amp;quot; highlight=&amp;quot;5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--This is a comment. Comments are not displayed in the browser--&amp;gt;&lt;br /&gt;
&amp;lt;table align=center style=&amp;quot;background: ivory;color:maroon;font-style:italic;font-family:arial;font-weight:bold;font-size:10pt;&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt; Heading 1 &amp;lt;/th&amp;gt;&amp;lt;th&amp;gt; Heading 2 &amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding:10px;&amp;quot;&amp;gt; This is cell 1 text &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding:10px;&amp;quot;&amp;gt; This is cell 2 text &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Supported languages ===&lt;br /&gt;
These are the languages known by GeSHi that can be used in the &#039;&#039;&#039;lang&#039;&#039;&#039; parameter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Note that installed GeSHi version (can be revealed by previewing e.g. &amp;lt;code&amp;gt;&amp;amp;lt;syntaxhighlight lang=&amp;quot;-&amp;quot;&amp;amp;gt;&amp;amp;lt;/syntaxhighlight&amp;amp;gt;&amp;lt;/code&amp;gt;) might not be the most recent version;  see [[bugzilla:10967]] for Wikimedia sites.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;The GeSHi sources for each language can be found in [http://sourceforge.net/p/geshi/code/HEAD/tree/trunk/geshi-1.0.X/src/geshi/ VCS on SourceForge]. Remember to go and select the version that the MediaWiki installation uses.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:left&amp;quot;&lt;br /&gt;
!Code||Language&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;abap&amp;lt;/code&amp;gt;||[[:en:ABAP|ABAP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;actionscript&amp;lt;/code&amp;gt;||[[:en:ActionScript|ActionScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ada&amp;lt;/code&amp;gt;||[[:en:Ada (programming language)|Ada]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;apache&amp;lt;/code&amp;gt;||[[:en:Apache HTTP Server|Apache Configuration]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;applescript&amp;lt;/code&amp;gt;||[[:en:AppleScript|AppleScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;asm&amp;lt;/code&amp;gt;||[[:en:Assembly language|Assembly]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;asp&amp;lt;/code&amp;gt;||[[:en:Active Server Pages|Active Server Pages (ASP)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;autoit&amp;lt;/code&amp;gt;||[[:en:AutoIt|AutoIt]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bash&amp;lt;/code&amp;gt;||[[:en:Bash (Unix shell)|Bash]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;basic4gl&amp;lt;/code&amp;gt;||[[:en:Basic4GL|Basic4GL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bf&amp;lt;/code&amp;gt;||[[:en:Brainfuck|Brainfuck]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;blitzbasic&amp;lt;/code&amp;gt;||[[:en:Blitz BASIC|Blitz BASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;bnf&amp;lt;/code&amp;gt;||[[:en:Backus-Naur Form|Backus-Naur Form]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;c&amp;lt;/code&amp;gt;||[[:en:C (programming language)|C]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;c_mac&amp;lt;/code&amp;gt;||C (Mac)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;caddcl&amp;lt;/code&amp;gt;||[[:en:Dialog Control Language|AutoCAD DCL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cadlisp&amp;lt;/code&amp;gt;||[[:en:AutoLISP|AutoLISP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cfdg&amp;lt;/code&amp;gt;||CFDG&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cfm&amp;lt;/code&amp;gt;||[[:en:ColdFusion_Markup_Language|ColdFusion Markup Language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cil&amp;lt;/code&amp;gt;||[[:en:Common_Intermediate_Language|Common Intermediate Language (CIL)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cobol&amp;lt;/code&amp;gt;||[[:en:COBOL|COBOL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cpp-qt&amp;lt;/code&amp;gt;||[[:en:Qt (toolkit)|C++ (Qt toolkit)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cpp&amp;lt;/code&amp;gt;||[[:en:C++|C++]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;csharp&amp;lt;/code&amp;gt;||[[:en:C Sharp (programming language)|C#]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;css&amp;lt;/code&amp;gt;||[[:en:Cascading Style Sheets|Cascading Style Sheets (CSS)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt;||[[:en:D (programming language)|D]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;delphi&amp;lt;/code&amp;gt;||[[:en:Delphi programming language|Delphi]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;diff&amp;lt;/code&amp;gt;||[[:en:diff|Diff]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;div&amp;lt;/code&amp;gt;||DIV&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dos&amp;lt;/code&amp;gt;||[[:en:DOS batch file|DOS batch file]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dot&amp;lt;/code&amp;gt;||[[:en:DOT language|DOT]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;eiffel&amp;lt;/code&amp;gt;||[[:en:Eiffel (programming language)|Eiffel]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;fortran&amp;lt;/code&amp;gt;||[[:en:Fortran|Fortran]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;freebasic&amp;lt;/code&amp;gt;||[[:en:FreeBASIC|FreeBASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gambas&amp;lt;/code&amp;gt;||[[:en:Gambas_programming_language|Gambas]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;genero&amp;lt;/code&amp;gt;||Genero&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gettext&amp;lt;/code&amp;gt;||[[:en:GNU_gettext|GNU internationalization (i18n) library]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;glsl&amp;lt;/code&amp;gt;||[[:en:GLSL|OpenGL Shading Language (GLSL)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gml&amp;lt;/code&amp;gt;||[[:en:Game Maker Language|Game Maker Language (GML)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;gnuplot&amp;lt;/code&amp;gt;||[[:en:Gnuplot|gnuplot]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;groovy&amp;lt;/code&amp;gt;||[[:en:Groovy (programming language)|Groovy]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;haskell&amp;lt;/code&amp;gt;||[[:en:Haskell (programming language)|Haskell]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;hq9plus&amp;lt;/code&amp;gt;||HQ9+&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;html4strict&amp;lt;/code&amp;gt;||[[:en:HTML|HTML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;html5&amp;lt;/code&amp;gt;||[[:en:HTML5|HTML5]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;idl&amp;lt;/code&amp;gt;||[[:en:Universal Network Objects|Uno IDL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ini&amp;lt;/code&amp;gt;||[[:en:INI file|INI]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;inno&amp;lt;/code&amp;gt;||[[:en:Inno Setup|Inno]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;intercal&amp;lt;/code&amp;gt;||[[:en:INTERCAL|INTERCAL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;io&amp;lt;/code&amp;gt;||[[:en:Io (programming language)|Io]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;java&amp;lt;/code&amp;gt;||[[:en:Java (programming language)|Java]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;java5&amp;lt;/code&amp;gt;||[[:en:Java (programming language)|Java(TM) 2 Platform Standard Edition 5.0 ]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;javascript&amp;lt;/code&amp;gt;||[[:en:JavaScript|JavaScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;kixtart&amp;lt;/code&amp;gt;||[[:en:KiXtart|KiXtart]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;klonec&amp;lt;/code&amp;gt;||Klone C&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;klonecpp&amp;lt;/code&amp;gt;||Klone C++&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;latex&amp;lt;/code&amp;gt;||[[:en:LaTeX|LaTeX]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lisp&amp;lt;/code&amp;gt;||[[:en:Lisp (programming language)|Lisp]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lolcode&amp;lt;/code&amp;gt;||[[:en:LOLCODE|LOLCODE]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lotusscript&amp;lt;/code&amp;gt;||[[:en:LotusScript|LotusScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;lua&amp;lt;/code&amp;gt;||[[:en:Lua (programming language)|Lua]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:left&amp;quot;&lt;br /&gt;
!Code||Language&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;m68k&amp;lt;/code&amp;gt;||[[:en:Motorola 68000|Motorola 68000 Assembler]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;||[[:en:Make_(software)|make]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;matlab&amp;lt;/code&amp;gt;||[[:en:MATLAB|MATLAB M]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mirc&amp;lt;/code&amp;gt;||[[:en:mIRC scripting language|mIRC scripting language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mxml&amp;lt;/code&amp;gt;||[[:en:MXML|MXML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mpasm&amp;lt;/code&amp;gt;||[[:en:PIC microcontroller|Microchip Assembler]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;mysql&amp;lt;/code&amp;gt;||[[:en:MySQL|MySQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;nsis&amp;lt;/code&amp;gt;||[[:en:Nullsoft Scriptable Install System|Nullsoft Scriptable Install System (NSIS)]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;objc&amp;lt;/code&amp;gt;||[[:en:Objective-C|Objective-C]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ocaml-brief&amp;lt;/code&amp;gt;||[[:en:Objective Caml|OCaml]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ocaml&amp;lt;/code&amp;gt;||[[:en:Objective Caml|OCaml]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oobas&amp;lt;/code&amp;gt;||[[:en:StarOffice Basic|OpenOffice.org Basic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oracle8&amp;lt;/code&amp;gt;||[[:en:PL/SQL|Oracle 8 SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;oracle11&amp;lt;/code&amp;gt;||[[:en:PL/SQL|Oracle 11 SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;pascal&amp;lt;/code&amp;gt;||[[:en:Pascal (programming language)|Pascal]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;per&amp;lt;/code&amp;gt;||per&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;perl&amp;lt;/code&amp;gt;||[[:en:Perl|Perl]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;php-brief&amp;lt;/code&amp;gt;||[[:en:PHP|PHP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;php&amp;lt;/code&amp;gt;||[[:en:PHP|PHP]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;pixelbender&amp;lt;/code&amp;gt;||[[:en:Adobe_Pixel_Bender|Pixel Bender]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;plsql&amp;lt;/code&amp;gt;||[[:en:PL/SQL|PL/SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;povray&amp;lt;/code&amp;gt;||[[:en:POV-Ray|Persistence of Vision Raytracer]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;powershell&amp;lt;/code&amp;gt;||[[:en:Windows_PowerShell|Windows PowerShell]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;progress&amp;lt;/code&amp;gt;||[[:en:OpenEdge_Advanced_Business_Language|OpenEdge Advanced Business Language]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;prolog&amp;lt;/code&amp;gt;||[[:en:Prolog|Prolog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;providex&amp;lt;/code&amp;gt;||[[:en:ProvideX|ProvideX]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;python&amp;lt;/code&amp;gt;||[[:en:Python (programming language)|Python]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;qbasic&amp;lt;/code&amp;gt;||[[:en:QBasic|QBasic/QuickBASIC]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rails&amp;lt;/code&amp;gt;||[[:en:Ruby on Rails|Rails]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;reg&amp;lt;/code&amp;gt;||[[:en:Windows Registry|Windows Registry]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;robots&amp;lt;/code&amp;gt;||[[:en:Robots Exclusion Standard|robots.txt]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rsplus&amp;lt;/code&amp;gt;||[[:en:R (programming language)|R]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ruby&amp;lt;/code&amp;gt;||[[:en:Ruby (programming language)|Ruby]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sas&amp;lt;/code&amp;gt;||[[:en:SAS System|SAS]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scala&amp;lt;/code&amp;gt;||[[:en:Scala_(programming_language)|Scala]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scheme&amp;lt;/code&amp;gt;||[[:en:Scheme (programming language)|Scheme]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;scilab&amp;lt;/code&amp;gt;||[[:en:Scilab|Scilab]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sdlbasic&amp;lt;/code&amp;gt;||[[:en:SdlBasic|SdlBasic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;smalltalk&amp;lt;/code&amp;gt;||[[:en:Smalltalk|Smalltalk]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;smarty&amp;lt;/code&amp;gt;||[[:en:Smarty|Smarty]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;sql&amp;lt;/code&amp;gt;||[[:en:SQL|SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tcl&amp;lt;/code&amp;gt;||[[:en:Tcl|Tcl]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;teraterm&amp;lt;/code&amp;gt;||[[:en:TeraTerm|Tera Term]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;text&amp;lt;/code&amp;gt;||[[:en:Plain text|Plain text]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;thinbasic&amp;lt;/code&amp;gt;||[[:en:thinBasic|thinBasic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tsql&amp;lt;/code&amp;gt;||[[:en:Transact-SQL|Transact-SQL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;typoscript&amp;lt;/code&amp;gt;||[[:en:TYPO3|TypoScript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vala&amp;lt;/code&amp;gt;||[[:en:Vala_(programming_language)|Vala]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vb&amp;lt;/code&amp;gt;||[[:en:Visual Basic|Visual Basic]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vbnet&amp;lt;/code&amp;gt;||[[:en:Visual Basic .NET|Visual Basic .NET]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;verilog&amp;lt;/code&amp;gt;||[[:en:Verilog|Verilog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vhdl&amp;lt;/code&amp;gt;||[[:en:VHSIC Hardware Description Language|VHDL]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;vim&amp;lt;/code&amp;gt;||[[:en:Vimscript|Vimscript]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;visualfoxpro&amp;lt;/code&amp;gt;||[[:en:Visual FoxPro|Visual FoxPro]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;visualprolog&amp;lt;/code&amp;gt;||[[:en:Visual_Prolog|Visual Prolog]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whitespace&amp;lt;/code&amp;gt;||[[:en:Whitespace_(programming_language)|Whitespace]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;winbatch&amp;lt;/code&amp;gt;||[[:en:Winbatch|Winbatch]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xml&amp;lt;/code&amp;gt;||[[:en:XML|XML]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xorg_conf&amp;lt;/code&amp;gt;||[[:en:Xorg.conf|Xorg.conf]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;xpp&amp;lt;/code&amp;gt;||[[:en:Microsoft_Dynamics_AX|X++]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;z80&amp;lt;/code&amp;gt;||[[:en:Zilog Z80|ZiLOG Z80 Assembler]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Extra features ===&lt;br /&gt;
&lt;br /&gt;
; Default Source Language&lt;br /&gt;
&lt;br /&gt;
Added in [[rev:50693]].&lt;br /&gt;
&lt;br /&gt;
If the site mainly quotes the source code of a specific programming language, it would be helpful to set a default language.&lt;br /&gt;
&lt;br /&gt;
To do so, add a new variable to LocalSettings.php, just after the require_once line. We set [[:en:C (programming language)|C programming language]] as an example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php&amp;quot;);&lt;br /&gt;
$wgSyntaxHighlightDefaultLang = &amp;quot;c&amp;quot;;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==LaTeX Math==&lt;br /&gt;
&lt;br /&gt;
; NEW WAY&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;tex&amp;gt;f{(x)} = {\sum \lambda \cdot \bar{y} \over \sum \lambda^{ \over 2 n} }&amp;lt;/tex&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:: &amp;lt;tex&amp;gt;f{(x)} = {\sum \lambda \cdot \bar{y} \over \sum \lambda^{ \over 2 n} }&amp;lt;/tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; OLD WAY&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f(x, \mu, \sigma) = \frac{1}{\sigma \sqrt{2\pi} } e^{ -\frac{(x-\mu)^2}{2\sigma^2} } &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt;&lt;br /&gt;
f(x, \mu, \sigma) = \frac{1}{\sigma \sqrt{2\pi} } e^{ -\frac{(x-\mu)^2}{2\sigma^2} }&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; {{TeX}} and HTML&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;[http://en.wikipedia.org/wiki/Table_of_mathematical_symbols LIST OF MATH SYMBOLS IN HTML MARKUP]&amp;lt;/big&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! {{TeX}} Syntax ([[#Forced_PNG_rendering|forcing PNG]])&lt;br /&gt;
! {{TeX}} Rendering&lt;br /&gt;
! HTML Syntax&lt;br /&gt;
! HTML Rendering&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|&amp;lt;VAR&amp;gt;&amp;amp;amp;alpha;&amp;lt;/VAR&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|&amp;lt;VAR&amp;gt;&amp;amp;alpha;&amp;lt;/VAR&amp;gt;}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt; f(x) = x^2\,&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt; f(x) = x^2\,&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|&#039;&#039;f&#039;&#039;(&amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;) {{=}} &amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|&#039;&#039;f&#039;&#039;(&amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;) {{=}} &amp;lt;var&amp;gt;x&amp;lt;/var&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|{{radical|2}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|{{radical|2}}}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;math&amp;gt;\sqrt{1-e^2}&amp;lt;/math&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\sqrt{1-e^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{math|{{radical|1 &amp;amp;amp;minus; &#039;&#039;e&#039;&#039;&amp;amp;amp;sup2;}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| {{math|{{radical|1 &amp;amp;minus; &#039;&#039;e&#039;&#039;&amp;amp;sup2;}}}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The codes on the left produce the symbols on the right, but the latter can also be put directly in the wikitext, except for &amp;amp;lsquo;=&amp;amp;rsquo;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Syntax&lt;br /&gt;
! Rendering&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;amp;alpha; &amp;amp;amp;beta; &amp;amp;amp;gamma; &amp;amp;amp;delta; &amp;amp;amp;epsilon; &amp;amp;amp;zeta;&lt;br /&gt;
&amp;amp;amp;eta; &amp;amp;amp;theta; &amp;amp;amp;iota; &amp;amp;amp;kappa; &amp;amp;amp;lambda; &amp;amp;amp;mu; &amp;amp;amp;nu;&lt;br /&gt;
&amp;amp;amp;xi; &amp;amp;amp;omicron; &amp;amp;amp;pi; &amp;amp;amp;rho; &amp;amp;amp;sigma; &amp;amp;amp;sigmaf;&lt;br /&gt;
&amp;amp;amp;tau; &amp;amp;amp;upsilon; &amp;amp;amp;phi; &amp;amp;amp;chi; &amp;amp;amp;psi; &amp;amp;amp;omega;&lt;br /&gt;
&amp;amp;amp;Gamma; &amp;amp;amp;Delta; &amp;amp;amp;Theta; &amp;amp;amp;Lambda; &amp;amp;amp;Xi; &amp;amp;amp;Pi;&lt;br /&gt;
&amp;amp;amp;Sigma; &amp;amp;amp;Phi; &amp;amp;amp;Psi; &amp;amp;amp;Omega;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;texhtml&amp;quot; |α β γ δ ε ζ&amp;lt;br &lt;br /&gt;
/&amp;gt;η θ ι κ λ μ ν&amp;lt;br &lt;br /&gt;
/&amp;gt;ξ ο π ρ σ ς&amp;lt;br &lt;br /&gt;
/&amp;gt;τ υ φ χ ψ ω&amp;lt;br&lt;br /&gt;
/&amp;gt;Γ Δ Θ Λ Ξ Π&amp;lt;br&lt;br /&gt;
/&amp;gt;Σ Φ Ψ Ω&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| valign=&amp;quot;middle&amp;quot; | &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;amp;int; &amp;amp;amp;sum; &amp;amp;amp;prod; &amp;amp;amp;radic; &amp;amp;amp;minus; &amp;amp;amp;plusmn; &amp;amp;amp;infty;&lt;br /&gt;
&amp;amp;amp;asymp; &amp;amp;amp;prop; {{=}} &amp;amp;amp;equiv; &amp;amp;amp;ne; &amp;amp;amp;le; &amp;amp;amp;ge; &lt;br /&gt;
&amp;amp;amp;times; &amp;amp;amp;middot; &amp;amp;amp;divide; &amp;amp;amp;part; &amp;amp;amp;prime; &amp;amp;amp;Prime;&lt;br /&gt;
&amp;amp;amp;nabla; &amp;amp;amp;permil; &amp;amp;amp;deg; &amp;amp;amp;there4; &amp;amp;amp;Oslash; &amp;amp;amp;oslash;&lt;br /&gt;
&amp;amp;amp;isin; &amp;amp;amp;notin; &lt;br /&gt;
&amp;amp;amp;cap; &amp;amp;amp;cup; &amp;amp;amp;sub; &amp;amp;amp;sup; &amp;amp;amp;sube; &amp;amp;amp;supe;&lt;br /&gt;
&amp;amp;amp;not; &amp;amp;amp;and; &amp;amp;amp;or; &amp;amp;amp;exist; &amp;amp;amp;forall; &lt;br /&gt;
&amp;amp;amp;rArr; &amp;amp;amp;hArr; &amp;amp;amp;rarr; &amp;amp;amp;harr; &amp;amp;amp;uarr; &lt;br /&gt;
&amp;amp;amp;alefsym; - &amp;amp;amp;ndash; &amp;amp;amp;mdash; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;texhtml&amp;quot; |∫ ∑ ∏ √ − ± ∞&amp;lt;br &lt;br /&gt;
/&amp;gt;≈ ∝ = ≡ ≠ ≤ ≥&amp;lt;br &lt;br /&gt;
/&amp;gt;× · ÷ ∂ ′ ″&amp;lt;br &lt;br /&gt;
/&amp;gt;∇ ‰ ° ∴ Ø ø&amp;lt;br&lt;br /&gt;
/&amp;gt;∈ ∉ ∩ ∪ ⊂ ⊃ ⊆ ⊇&amp;lt;br&lt;br /&gt;
/&amp;gt;¬ ∧ ∨ ∃ ∀&amp;lt;br &lt;br /&gt;
/&amp;gt;⇒ ⇔ → ↔ ↑&amp;lt;br &lt;br /&gt;
/&amp;gt;ℵ - – —&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Image Annoation==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorEnable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorPageName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[Sandbox]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorFullName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[Sandbox]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorFile&amp;quot;&amp;gt;[[File:Foo.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div&amp;gt;&amp;lt;!--IMAGE NOTES BELOW --&amp;gt;{{ImageNoteEnd|id=-1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Livelets==&lt;br /&gt;
*[http://www.mediawiki.org/wiki/Extension:Livelets Livelets]&lt;br /&gt;
&lt;br /&gt;
To create livelets, wrap any areas of the page in the #live parser-function.&lt;br /&gt;
&lt;br /&gt;
In the following example, a transclusion of the page called Template:MyVerySlowTable has been turned into a livelet:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{#live: {{MyVerySlowTable}} }}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References and Citations==&lt;br /&gt;
&lt;br /&gt;
===Using Native Ref Tags===&lt;br /&gt;
In-text references make it easy to copy the text to another page; on the other hand, they make it hard to read. References containing a lot of data, quotes or elaborate citation templates can make up a significantly larger fraction of the source than the text that will actually be visible. To avoid this, recent versions of the extension allow moving some or all of the references into the &amp;lt;code&amp;gt;&amp;amp;lt;references /&amp;gt;&amp;lt;/code&amp;gt; section, to the place where they will actually appear to the reader. Thus,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
According to scientists, the Sun is pretty big.&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;miller&amp;quot; /&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Moon, however, is not so big.&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;smith&amp;quot; /&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#61;=Notes==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;font color=red&amp;gt;&#039;&#039;&#039;&amp;amp;lt;references&amp;gt;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;miller&amp;quot;&amp;gt;&#039;&#039;&#039;E. Miller, &#039;&#039;The Sun&#039;&#039;, (New York: Academic Press, 2005), 23-5.&#039;&#039;&#039;&amp;amp;lt;/ref&amp;gt;&#039;&#039;&#039;&amp;lt;/br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;ref name=&amp;quot;smith&amp;quot;&amp;gt;&#039;&#039;&#039;R. Smith, &amp;quot;Size of the Moon&amp;quot;, &#039;&#039;Scientific American&#039;&#039;, 46 (April 1978): 44-6.&#039;&#039;&#039;&amp;amp;lt;/ref&amp;gt;&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;&amp;amp;lt;/references&amp;gt;&#039;&#039;&#039;&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will have the same output as the [[#Example|first example]] above, although the numbering and order of the references will not in general be the same.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==HTML ==&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://www.w3schools.com/tags/tag_iframe.asp&amp;quot; height=&amp;quot;100&amp;quot; width=&amp;quot;400&amp;quot; frameborder=&amp;quot;1&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:left&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{Box|width=600px|iFrame Code|&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;http://www.w3schools.com/tags/tag_iframe.asp&amp;quot; &lt;br /&gt;
height=&amp;quot;300&amp;quot; width=&amp;quot;350&amp;quot; frameborder=&amp;quot;1&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
===iFrame Attributes===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Value !! Description&lt;br /&gt;
|-&lt;br /&gt;
| align || left, right, top, middle, bottom || Specifies the alignment of an iframe according to surrounding elements&lt;br /&gt;
|-&lt;br /&gt;
| frameborder || 1, 0 || Specifies whether or not to display a border around an iframe&lt;br /&gt;
|-&lt;br /&gt;
| height || pixels || Specifies the height of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| longdesc || URL || Specifies a page that contains a long description of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| marginheight || pixels || Specifies the top and bottom margins of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| marginwidth || pixels || Specifies the left and right margins of the [[content]] of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| name || name || Specifies the name of an iframe&lt;br /&gt;
|-&lt;br /&gt;
| [[sandbox]] || &amp;quot;&amp;quot;, allow-forms, allow-same-origin, allow-scripts, allow-top-navigation  || Enables a set of extra restrictions for the [[content]] in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| scrolling || yes, no, auto || Specifies whether or not to display scrollbars in an iframe&lt;br /&gt;
|-&lt;br /&gt;
| seamless || seamless || Specifies that the iframe should look like it is a part of the containing document&lt;br /&gt;
|-&lt;br /&gt;
| src || URL || Specifies the address of the document to embed in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| srcdoc || HTML_code || Specifies the HTML [[content]] of the page to show in the iframe&lt;br /&gt;
|-&lt;br /&gt;
| width || pixels || Specifies the width of an iframe&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Tables==&lt;br /&gt;
&lt;br /&gt;
===wikitable===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Link !! Description&lt;br /&gt;
|-&lt;br /&gt;
|[http://vcell.org/bionetgen/ BioNetGen] || A web-based tool for automatically generating a biochemical reaction networks from user-specified rules for biomolecular interactions.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://bionumbers.hms.harvard.edu/ B10NUMB3R5] || (BIONUMBERS) A database of useful biological numbers.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.bioinformaticsservices.com/ BioInformatics Services] || BioInformatics Services is a biotechnology consulting firm specializing in using computational biology to solve complex biological and data analysis problems.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellmigration.org/resource/modeling/model_resources.shtml#softwares cellmigrationgateway] || modeling software                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellml.org/ CellML] || The CellML language is an open standard based on the XML markup language at the University of Auckland and affiliated research groups.                &lt;br /&gt;
|-&lt;br /&gt;
|[https://sites.google.com/site/compcellbio/ CompCell Bio Web] ||  Development site for teaching modules on quantitative cell biology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://doqcs.ncbs.res.in/ DOQCS] ||  Quantitative Cellular Signaling (DOQCS) is a repository of models of signaling pathways.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.e-cell.org/ecell/ E-Cell] ||  A Multi-Algorithm, Multi-Timescale Simulation Software Environment.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://gfit.sourceforge.net/ Gfit] ||  A program for global regression analysis of experimental data.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.kitware.com/ Kitware] || Professional Visualization Solutions, Tools and Support.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.mcell.cnl.salk.edu/ MCell] ||  General Monte Carlo Simulator of Cellular Microphysiology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://mnm.engr.uconn.edu/MNM/SMSSearchServlet Minimotif Miner] || Application to search for short sequence motifs in Proteins.                &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Upgrading MediaWiki==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 1&amp;lt;/big&amp;gt; &#039;&#039;&#039;- [http://www.mediawiki.org/wiki/Manual:Upgrading download latest stable version of MediaWiki]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 2&amp;lt;/big&amp;gt; &#039;&#039;&#039;- determine database credentials from dreamhost&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Get Hostname (e.g.):&lt;br /&gt;
* mysql.bradleymonk.com&lt;br /&gt;
;Get Database name (e.g.):&lt;br /&gt;
* bradleymonk_com&lt;br /&gt;
;Get Database User name (e.g.):&lt;br /&gt;
* username&lt;br /&gt;
;Get Database User pass (e.g.):&lt;br /&gt;
* password&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 3&amp;lt;/big&amp;gt; &#039;&#039;&#039;- back-up existing files and the database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Go to: mysql.example.com&lt;br /&gt;
*Enter db user and password when prompted&lt;br /&gt;
*click on db in left panel&lt;br /&gt;
*click on the &amp;quot;Export&amp;quot; tab&lt;br /&gt;
*check &amp;quot;Save as file&amp;quot;&lt;br /&gt;
*click &amp;quot;Go&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 4&amp;lt;/big&amp;gt; &#039;&#039;&#039;- FTP the &amp;lt;code&amp;gt;mediawiki.tar.gz&amp;lt;/code&amp;gt; file to the /w directory&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 5&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Unpack the tarball&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Use the console to SSH into the /w directory and unpack tarball&lt;br /&gt;
* &amp;lt;code&amp;gt;$ssh bradleymonk.com -l username&amp;lt;/code&amp;gt;&lt;br /&gt;
* Change to the /w directory&lt;br /&gt;
:* &amp;lt;code&amp;gt;$tar xvzf mediawiki.tar.gz&amp;lt;/code&amp;gt;&lt;br /&gt;
*this unpacks into a new folder: &amp;lt;code&amp;gt;/w/mediawiki&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 6&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Move files and rename directory&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
;Copy files from old to new directory&lt;br /&gt;
* LocalSettings.php&lt;br /&gt;
* logofile.png&lt;br /&gt;
* images (or upload) directory&lt;br /&gt;
* extension directory&lt;br /&gt;
* custom skins&lt;br /&gt;
* .htaccess file&lt;br /&gt;
&lt;br /&gt;
;Swap-rename directories&lt;br /&gt;
*rename old directory &amp;lt;code&amp;gt;/w_old&amp;lt;/code&amp;gt;&lt;br /&gt;
*move new directory out of &amp;lt;code&amp;gt;/w_old&amp;lt;/code&amp;gt; to top level domain&lt;br /&gt;
*rename new directory to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Step 7&amp;lt;/big&amp;gt; &#039;&#039;&#039;- Run MediaWiki update script&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* login with SSH again:&lt;br /&gt;
:* &amp;lt;code&amp;gt;$ssh bradleymonk.com -l username&amp;lt;/code&amp;gt;&lt;br /&gt;
* change to the &amp;lt;code&amp;gt;/w/maintenance&amp;lt;/code&amp;gt; directory&lt;br /&gt;
* enter: &amp;lt;code&amp;gt;$php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
* If the prompt gives an error like: &amp;quot;you&#039;re using php version 2.x mediawiki requires version 3.x&amp;quot;&lt;br /&gt;
* try entering these:&lt;br /&gt;
:* &amp;lt;code&amp;gt;$/usr/local/php53/bin/php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
:* &amp;lt;code&amp;gt;$/usr/local/php54/bin/php update.php&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Check if the upgrade worked by going to the MediaWiki page &amp;quot;Special Version&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Quoting ==&lt;br /&gt;
{{cquote|SAN DIEGO -- Money -- does it draw students to their future careers? The answer is no, according to statistics and students at San Diego State University.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cquote|quote goes here}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==MediaWiki Tips==&lt;br /&gt;
&lt;br /&gt;
*To remove the arrow icon from external links, navigate to MediaWiki:Common.css and add this line of code&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
#content a[href ^=&amp;quot;http://&amp;quot;].external {background: center right no-repeat; padding-right: 1px;}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Button Template==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Button|TPB=.5em| Button Text }}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Button|TPB=.5em| Button Text }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Table Map==&lt;br /&gt;
&lt;br /&gt;
See here: [[Table Map]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Labeled Section Transclusion ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;See: [http://www.mediawiki.org/wiki/Extension:Labeled_Section_Transclusion Extension:Labeled_Section_Transclusion]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Mark off sections ===&lt;br /&gt;
&lt;br /&gt;
Mark off sections in the text using &amp;lt;nowiki&amp;gt;&amp;lt;section&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/&amp;gt; tags like this:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;nowiki&amp;gt;&lt;br /&gt;
    &amp;lt;section begin=Hayashi_Malinow_2000_Science /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    {{Article|Hayashi Malinow|2000|Science • PDF|10731148|Driving AMPA receptors into synapses}}&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;section end=Hayashi_Malinow_2000_Science /&amp;gt;&lt;br /&gt;
    &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this uses two individual markers, rather than normal XML open/close tags, which simplifies nested or overlapping sections. This allows you to insert section tags without worrying about interfering with other sections.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Transclude the section ===&lt;br /&gt;
&lt;br /&gt;
Call the parser function to transclude it, i.e. to transclude a section called &#039;&#039;chapter1&#039;&#039; from a page called &#039;&#039;[[Articles]]&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;nowiki&amp;gt;&lt;br /&gt;
    {{#section:Articles|Hayashi_Malinow_2000_Science}}&lt;br /&gt;
    &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Templates]]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Box&amp;diff=3916</id>
		<title>Template:Box</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Box&amp;diff=3916"/>
		<updated>2020-05-04T11:29:33Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;plainlinks; font-size:{{{font|150%}}}; text-align:center; border:{{{border|solid #aaa 1px}}}; font-family: serif; margin:0 1em 1em 0; width:{{{width|50%}}}; padding:7px; float:{{{float|left}}}; min-width:{{{min-width|100px}}};&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;plainlinks;color:#2F4F4F;&amp;quot;&amp;gt;{{{1}}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;plainlinks; font-size:{{{text|12px}}}; text-align:left; font-family:Arial; border-top:1px solid #CCC; padding:{{{padding|5px 0px 0px 0px}}}; overflow:hidden;&amp;quot;&amp;gt;&lt;br /&gt;
{{{2}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Box|font=150%|width=50%|float=left|text=12px|boarder=solid #aaa 1px|&lt;br /&gt;
Header Font|&lt;br /&gt;
&lt;br /&gt;
text text text&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|font=150%|width=50%|float=left|text=12px|boarder=solid #aaa 1px|&lt;br /&gt;
Header Font|&lt;br /&gt;
&lt;br /&gt;
text text text&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.css&amp;diff=3915</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.css&amp;diff=3915"/>
		<updated>2020-05-04T11:26:43Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
@import url( &#039;https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif &#039;)&lt;br /&gt;
&lt;br /&gt;
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */&lt;br /&gt;
body {&lt;br /&gt;
  font-family: &amp;quot;Noto Sans&amp;quot;, sans-serif;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Changes the default font used for MediaWiki headings to Noto Serif: */&lt;br /&gt;
#content h1, &lt;br /&gt;
#content h2 {&lt;br /&gt;
  font-family: &amp;quot;Noto Serif&amp;quot;, serif;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.css&amp;diff=3914</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.css&amp;diff=3914"/>
		<updated>2020-05-04T11:20:10Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
#content a[href ^=&amp;quot;http://&amp;quot;].external&lt;br /&gt;
 {&lt;br /&gt;
    background: center right no-repeat; padding-right: 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@import url( &#039;https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif &#039;)&lt;br /&gt;
&lt;br /&gt;
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */&lt;br /&gt;
body {&lt;br /&gt;
  font-family: &amp;quot;Noto Sans&amp;quot;, sans-serif;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Changes the default font used for MediaWiki headings to Noto Serif: */&lt;br /&gt;
#content h1, &lt;br /&gt;
#content h2 {&lt;br /&gt;
  font-family: &amp;quot;Noto Serif&amp;quot;, serif;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Websites&amp;diff=1208</id>
		<title>Websites</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Websites&amp;diff=1208"/>
		<updated>2013-06-13T03:22:20Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://bradleymonk.com Bradley Monk Homepage]&lt;br /&gt;
* [http://onesci.com OneSci]&lt;br /&gt;
* [http://braininformatics.com Brain Informatics]&lt;br /&gt;
* [http://newgnu.com NewGNU]&lt;br /&gt;
* [http://researcharticlereview.com Research Article Review]&lt;br /&gt;
* [http://thoughtpatent.com Thought Patent]&lt;br /&gt;
* [http://theopensourcejournal.com The Open Source Journal]&lt;br /&gt;
* [http://trekate.com Trekate]&lt;br /&gt;
* [http://webaxon.com Web Axon]&lt;br /&gt;
* [http://camk2.com CaMK2]&lt;br /&gt;
* [http://scienceprotocol.com Science Protocol]&lt;br /&gt;
* [http://otasushi.com Sushi Ota San Diego]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Websites&amp;diff=1207</id>
		<title>Websites</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Websites&amp;diff=1207"/>
		<updated>2013-06-13T03:20:48Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;* [http://bradleymonk.com Bradley Monk Homepage] * [http://onesci.com OneSci] * [http://braininformatics.com Brain Informatics] * [http://newgnu.com NewGNU] * [http://research...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://bradleymonk.com Bradley Monk Homepage]&lt;br /&gt;
* [http://onesci.com OneSci]&lt;br /&gt;
* [http://braininformatics.com Brain Informatics]&lt;br /&gt;
* [http://newgnu.com NewGNU]&lt;br /&gt;
* [http://researcharticlereview.com Research Article Review]&lt;br /&gt;
* [http://thoughtpatent.com Thought Patent]&lt;br /&gt;
* [http://theopensourcejournal.com The Open Source Journal]&lt;br /&gt;
* [http://trekate.com Trekate]&lt;br /&gt;
* [http://webaxon.com Web Axon]&lt;br /&gt;
* [http://camk2.com CaMK2]&lt;br /&gt;
* [http://scienceprotocol.com Science Protocol]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Main_Page&amp;diff=1206</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Main_Page&amp;diff=1206"/>
		<updated>2013-06-13T03:16:12Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Box|width=48%|font-size=14px|[[Connectome|Brain Connectome and Functional Connectivity Project]]|&lt;br /&gt;
A [[connectome]] is a comprehensive map of the neural networks within the [[brain]]. It details the [http://en.wikipedia.org/wiki/Efferent_nerve_fiber efferent] and afferent pathways within and between [[brain]] regions. Functional Connectivity refers to the function of a particular [[brain]] region and its information processing role within a distributed neural network. The goal of this project is to create a platform where users can jump into the [[connectome]] at any given [[brain]] region and visually navigate to upstream and downstream regions; along the way, users can learn about the functional role of each [[brain]] region. All information has been collected from empirical sources and scientific databases, in particular, the [http://atlas.brain-map.org Allan Brain Atlas]. &lt;br /&gt;
[[File:Connectome.jpg|450px|link=Connectome]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=45%|float=right|font-size=14px|[[Brain Molecular Pathways|Brain Molecular Pathways Project]]|&lt;br /&gt;
This project aims to provide annotated sets of [[Molecular Pathways|molecular pathways]] involved in neural plasticity underlying learning and memory systems. In general, biological pathways display the series of interactions among molecules resulting in functional changes within cells and neural networks. Currently there are large scale projects dedicated to amassing pathway evidence via high-throughput methods. The goal is to translate this unwieldy biopathway data from several [http://www.genome.jp/kegg/ empirical databases] into visually digestible material, by  [[Molecular Pathways|characterizing]] the features of molecular cascades most sensitive to an &#039;&#039;event of interest&#039;&#039; (e.g. fear conditioning or amphetamine addiction).&lt;br /&gt;
&lt;br /&gt;
[[File:Molecular-pathway8.gif]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=48%|Welcome to the official wiki of Brad Monk|&lt;br /&gt;
[[Hello]] and welcome to [[User:Monakhos|my wiki]]. This is where I stash random information and have every intention of linking it all together someday. I&#039;m not sure why you&#039;re here.. maybe trying to find one of my other wiki projects &#039;&#039;&#039;[http://onesci.com OneSci Science News]&#039;&#039;&#039; or &#039;&#039;&#039;[http://ucsd.onesci.com UCSD Psych Grad wiki]&#039;&#039;&#039;? If you are so inclined, recent additions to this wiki can be found in the box on the right. For a non-curated glimpse of my activity you can check out the [[Special:RecentChanges|latest wiki updates]]. Older wiki [[content]] can be accessed using the &amp;lt;nowiki&amp;gt;[search box]&amp;lt;/nowiki&amp;gt; or perusing [[Special:AllPages| all pages]]. If you would like to contact me, you can find this info on [http://bradleymonk.com my home page].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=48%|Selected &amp;amp; New Pages|&lt;br /&gt;
*[[Western Blot Protocol]]&lt;br /&gt;
*[[Qual]]&lt;br /&gt;
*[[Neuron Types]]&lt;br /&gt;
*[[Quantum Dots]]&lt;br /&gt;
*[[LTP]]&lt;br /&gt;
*[[Hippocampus]]&lt;br /&gt;
*[[AMPAR Tracking]]&lt;br /&gt;
*[[User:Monakhos]]&lt;br /&gt;
*[[Special:NewFiles]]&lt;br /&gt;
*[[Special:NewPages]]&lt;br /&gt;
*[[Neuroscience Tools]]&lt;br /&gt;
*[[Websites]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=975</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=975"/>
		<updated>2013-05-15T23:27:53Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x [http://shop.expedeon.com/products/71-RunBlue-LDS-Antioxidant-and-Reducer/32-RunBlue-LDS-Sample-Buffer-10ml-4x-Conc/ RunBlue] LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Prepare [[Mini-PROTEAN]] [http://www.bio-rad.com/prd/en/US/LSR/PDP/5cf78e19-7ed5-4373-a988-3e62456a488e/Mini-PROTEAN-Tetra-Cell Tetra Cell] tank for electrophoresis (see video)&lt;br /&gt;
*Use these gels if doing electrophoresis on the Mini-PROTEAN rig: 4–20% [[Mini-PROTEAN TGX]] Precast Gel [http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=456-1093 #456-1093]&lt;br /&gt;
*Remove green tape strip from bottom of gel cassette&lt;br /&gt;
*Set up gel cassette in Mini-PROTEAN gel holder, wells facing inward, and put in tank&lt;br /&gt;
**If running only 1 or 2 gels remove the 2nd companion gel-holder&lt;br /&gt;
*Remove comb from top of gel cassette&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment making sure RB covers wells &lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
*Rinse wells with RB using pipette&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] [http://products.invitrogen.com/ivgn/product/LC5925 standard] into first and 5th lane&lt;br /&gt;
**[[Mini-PROTEAN TGX]] Precast gels can only handle up to 30 μL of total solution&lt;br /&gt;
**[[Mini-PROTEAN TGX]] Precast gels have 10 wells, plan accordingly&lt;br /&gt;
*Load 25 μL sample into each gel well&lt;br /&gt;
*record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Use Immun-Blot PVDF Membrane [http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=162-0174 #162-0174]&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.js&amp;diff=974</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=MediaWiki:Common.js&amp;diff=974"/>
		<updated>2013-05-15T23:17:30Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
if (wgNamespaceNumber != -1) importScript (&#039;MediaWiki:Gadget-ImageAnnotator.js&#039;);&lt;br /&gt;
&lt;br /&gt;
/*importScriptURI(&#039;//toolserver.org/~dapete/ime/ime.js&#039;);*/&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Mini-PROTEAN_TGX&amp;diff=973</id>
		<title>Mini-PROTEAN TGX</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Mini-PROTEAN_TGX&amp;diff=973"/>
		<updated>2013-05-15T23:14:14Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;   *Mini-PROTEAN TGX, 4-20%, 10-well *[http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=456-1093 Link] *Supplier	...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Mini-PROTEAN TGX, 4-20%, 10-well&lt;br /&gt;
*[http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=456-1093 Link]&lt;br /&gt;
*Supplier	 Bio-Rad Laboratories&lt;br /&gt;
*Part Number	 4561093&lt;br /&gt;
*Manufacturer Name	 Bio-Rad Laboratories - Life Sciences&lt;br /&gt;
*Manufacturer Part Number	 4561093&lt;br /&gt;
*System Packaging	 EA&lt;br /&gt;
*Supplier UOM	 EA&lt;br /&gt;
*Supplier Size	 Pkg of 10&lt;br /&gt;
*Additional Information	 MP-TGX, 4-20%, 10W, 30µl, 10 gels per box, 7.2 x 8.6 cm&lt;br /&gt;
*Category	 Precast Acrylamide Gels&lt;br /&gt;
*Category UNSPSC	 41-10-53-20&lt;br /&gt;
*Color	&lt;br /&gt;
*Hazardous Material Code	 0&lt;br /&gt;
*Height	 2.750000004&lt;br /&gt;
*Image URL	http://www.bio-rad.com/webroot/web/... &lt;br /&gt;
*Lead Time	 1&lt;br /&gt;
*Length	 7.000000011&lt;br /&gt;
*More Information URL	http://www.bio-rad.com/prd/en/US/ad... &lt;br /&gt;
*MSDS URL	http://www.bio-rad.com/msds/ &lt;br /&gt;
*Packaging	 Blue Ice&lt;br /&gt;
*Price Code 1	 1456&lt;br /&gt;
*Price Code 2	 CONS&lt;br /&gt;
*Quantity	 1&lt;br /&gt;
*UNSPSC	 41-10-53-20&lt;br /&gt;
*Weight	 1.329999907&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=972</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=972"/>
		<updated>2013-05-15T23:13:15Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* 3. SDS-PAGE (GEL ELECTROPHORESIS) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x [http://shop.expedeon.com/products/71-RunBlue-LDS-Antioxidant-and-Reducer/32-RunBlue-LDS-Sample-Buffer-10ml-4x-Conc/ RunBlue] LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Prepare [[Mini-PROTEAN]] [http://www.bio-rad.com/prd/en/US/LSR/PDP/5cf78e19-7ed5-4373-a988-3e62456a488e/Mini-PROTEAN-Tetra-Cell Tetra Cell] tank for electrophoresis (see video)&lt;br /&gt;
*Use these gels if doing electrophoresis on the Mini-PROTEAN rig: 4–20% [[Mini-PROTEAN TGX]] Precast Gel [http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=456-1093 #456-1093]&lt;br /&gt;
*Remove green tape strip from bottom of gel cassette&lt;br /&gt;
*Set up gel cassette in Mini-PROTEAN gel holder, wells facing inward, and put in tank&lt;br /&gt;
**If running only 1 or 2 gels remove the 2nd companion gel-holder&lt;br /&gt;
*Remove comb from top of gel cassette&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment making sure RB covers wells &lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
*Rinse wells with RB using pipette&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] [http://products.invitrogen.com/ivgn/product/LC5925 standard] into first and 5th lane&lt;br /&gt;
**Mini-PROTEAN TGX Precast gels can only handle up to 30 μL of total solution&lt;br /&gt;
**Mini-PROTEAN TGX Precast gels have 10 wells, plan accordingly&lt;br /&gt;
*Load 25 μL sample into each gel well&lt;br /&gt;
*record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=971</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=971"/>
		<updated>2013-05-15T23:10:37Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x [http://shop.expedeon.com/products/71-RunBlue-LDS-Antioxidant-and-Reducer/32-RunBlue-LDS-Sample-Buffer-10ml-4x-Conc/ RunBlue] LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Prepare [[Mini-PROTEAN]] [http://www.bio-rad.com/prd/en/US/LSR/PDP/5cf78e19-7ed5-4373-a988-3e62456a488e/Mini-PROTEAN-Tetra-Cell Tetra Cell] tank for electrophoresis (see video)&lt;br /&gt;
*Use these gels if doing electrophoresis on the Mini-PROTEAN rig: 4–20% Mini-PROTEAN TGX Precast Gel [http://www.bio-rad.com/prd/en/US/adirect/biorad?cmd=catProductDetail&amp;amp;vertical=LSR&amp;amp;country=US&amp;amp;lang=en&amp;amp;productID=456-1093 #456-1093]&lt;br /&gt;
*Remove green tape strip from bottom of gel cassette&lt;br /&gt;
*Set up gel cassette in Mini-PROTEAN gel holder, wells facing inward, and put in tank&lt;br /&gt;
**If running only 1 or 2 gels remove the 2nd companion gel-holder&lt;br /&gt;
*Remove comb from top of gel cassette&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment making sure RB covers wells &lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
*Rinse wells with RB using pipette&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] [http://products.invitrogen.com/ivgn/product/LC5925 standard] into first and 5th lane&lt;br /&gt;
**Mini-PROTEAN TGX Precast gels can only handle up to 30 μL of total solution&lt;br /&gt;
**Mini-PROTEAN TGX Precast gels have 10 wells, plan accordingly&lt;br /&gt;
*Load 25 μL sample into each gel well&lt;br /&gt;
*record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=970</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=970"/>
		<updated>2013-05-14T16:54:04Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x [http://shop.expedeon.com/products/71-RunBlue-LDS-Antioxidant-and-Reducer/32-RunBlue-LDS-Sample-Buffer-10ml-4x-Conc/ RunBlue] LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] [http://products.invitrogen.com/ivgn/product/LC5925 standard] into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=969</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=969"/>
		<updated>2013-05-14T16:51:05Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* SDS-PAGE STEP 1 -- PREP SAMPLE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x [http://shop.expedeon.com/products/71-RunBlue-LDS-Antioxidant-and-Reducer/32-RunBlue-LDS-Sample-Buffer-10ml-4x-Conc/ RunBlue] LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=968</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=968"/>
		<updated>2013-05-14T16:24:18Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* 3. SDS-PAGE (GEL ELECTROPHORESIS) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load [https://products.invitrogen.com/ivgn/product/LC5925 SeeBlue+2] standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=967</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=967"/>
		<updated>2013-05-14T16:19:41Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* 4. BLOT TRANSFER (GEL TO MEMBRANE) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/VgAuZ6dBOfs&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=966</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=966"/>
		<updated>2013-05-14T16:18:57Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* 3. SDS-PAGE (GEL ELECTROPHORESIS) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/XnEdmk1Sqvg&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=965</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=965"/>
		<updated>2013-05-14T16:14:50Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* 3. SDS-PAGE (GEL ELECTROPHORESIS) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|500px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=964</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=964"/>
		<updated>2013-05-14T16:12:56Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: /* SDS-PAGE STEP 1 -- PREP SAMPLE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
&lt;br /&gt;
[[File:SDS-PAGE.png|350px]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=963</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=963"/>
		<updated>2013-05-14T16:11:00Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box|width=70%|WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN|&lt;br /&gt;
;:::::::BRADLEY MONK&lt;br /&gt;
;:::::::UCSD MOLECULAR COGNITION LAB&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
[[File:SDS-PAGE.png]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=962</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=962"/>
		<updated>2013-05-14T16:06:23Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN===&lt;br /&gt;
&lt;br /&gt;
===BRADLEY MONK===&lt;br /&gt;
===UCSD MOLECULAR COGNITION LAB===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
[[File:SDS-PAGE.png]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=961</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=961"/>
		<updated>2013-05-14T15:58:28Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN===&lt;br /&gt;
&lt;br /&gt;
===BRADLEY MONK===&lt;br /&gt;
===UCSD MOLECULAR COGNITION LAB===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
&lt;br /&gt;
;Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|float=right|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
[[File:SDS-PAGE.png]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|float=right|width=300px|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|float=right|width=300px|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|float=right|width=300px|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|float=right|width=300px|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png|300px]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|width=300px|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|float=right|width=300px|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|float=right|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=960</id>
		<title>Western Blot Protocol</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Western_Blot_Protocol&amp;diff=960"/>
		<updated>2013-05-14T15:49:23Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;===WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN===  ===BRADLEY MONK=== ===UCSD MOLECULAR COGNITION LAB===   ==1. TISSUE COLLECTION== *Anesthetize rodent with is...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===WESTERN BLOT PROTOCOL FOR MEMBRANE BOUND RECEPTORS IN BRAIN===&lt;br /&gt;
&lt;br /&gt;
===BRADLEY MONK===&lt;br /&gt;
===UCSD MOLECULAR COGNITION LAB===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==1. TISSUE COLLECTION==&lt;br /&gt;
*Anesthetize rodent with isofluorine (or equivalent) and decapitate&lt;br /&gt;
*Extract [[brain]] and flash-freeze in 2-methylbutane cooled to -20oC with dry ice&lt;br /&gt;
*Store [[brain]] at -80 in sucrose or OCT for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==2. TISSUE DISECTION &amp;amp; PREPARATION==&lt;br /&gt;
*Prepare Homogenization Buffer Reagent (HBR) at 4 deg C&lt;br /&gt;
*HBR: 0.32 M sucrose , 10 mM HEPES  pH 7.4, 2 mM EDTA &lt;br /&gt;
*Add protease &amp;amp; phosphatase inhibitor cocktail at 1:10 v/v into HBR&lt;br /&gt;
*Each sample will require a total of 500 μL HBR&lt;br /&gt;
{{Box|Why 500 μL ?|&lt;br /&gt;
Each tissue section will be floated onto a 250 μL droplet of HBR directly on a glass slide (do not pre-float in a water bath). 100 μL of sample+HBR will be sucked off the slide with a pipette and dropped into a vial containing 200 μL HBR. Homogenize contents of vial and then centrifuge. The top 150 μL supernatant will be removed (this is the cytosol fraction - save if needed) leaving 150 μL HBR with the membrane pellet (precipitate). 50 μL HBR will be added to the membrane fraction bringing the volume back up to 200 μL. If collecting 6 samples per [[brain]], you will need to prep 3 mL HBR per [[brain]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Keep stock HBR and aliquots chilled in ice bath as much as possible.&lt;br /&gt;
*Aliquot 200 μL HBR (per section) into labeled vials. &lt;br /&gt;
*Prepare a freeze-mount station for slides&lt;br /&gt;
**this can be done simply by placing dry ice below a flat piece of glass or plastic&lt;br /&gt;
*Place first slide onto freeze mount station to pre-cool&lt;br /&gt;
*Use cryostat or freezing microtome to cut 200 μm frozen sections at -20oC&lt;br /&gt;
**(remember to mark one side of [[brain]] with pin if hemisphere identification is important, or only cut one hemisphere at a time)&lt;br /&gt;
*Collect target section on tip of soft-bristle brush&lt;br /&gt;
*Pipette 250 μL droplet of HBR onto slide&lt;br /&gt;
*Float tissue section onto this droplet and use brush to unfold&lt;br /&gt;
*Once flat, use scalpel to dissect out region of interest (ROI)&lt;br /&gt;
*Leave ROI on slide and remove unwanted tissue from slide &lt;br /&gt;
*Use pipette to suck-up 100 μL of HBR+ROI tissue&lt;br /&gt;
*Drop this 100 μL into the appropriate vial containing 200 μL HBR&lt;br /&gt;
*Once all the ROI tissue sections are in vials, homogenize samples using a vortex or glass homogenizer&lt;br /&gt;
*Use centrifuge to spin samples at 1000*g for 15 min &lt;br /&gt;
*Using pipette, remove the top-most 150 μL from the sample (this is the cytosol fraction - save if needed) leaving the membrane fraction in 150 μL HBR&lt;br /&gt;
*Add 50 μL more HBR to the membrane fraction vial bringing the total volume back up to 200 μL. &lt;br /&gt;
*Use centrifuge to spin samples again at 1000*g for 60 min&lt;br /&gt;
*Using pipette, remove the top-most 100 μL from the sample leaving the membrane fraction in a final volume of 100 μL HBR&lt;br /&gt;
*Store sample at  -80 deg C for no more than 1 week&lt;br /&gt;
&lt;br /&gt;
==3. SDS-PAGE (GEL ELECTROPHORESIS)==&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 1 -- PREP SAMPLE===&lt;br /&gt;
[[File:SDS-PAGE.png]]&lt;br /&gt;
&lt;br /&gt;
*Thaw samples to 4oC and re-homogenize&lt;br /&gt;
*Extract 30 μL from sample and drop in new vial&lt;br /&gt;
*Add 10 μL 4x RunBlue LDS Loading Buffer with 5% DTT (LIFE sciences)&lt;br /&gt;
*Heat at 95 deg C for 5 minutes&lt;br /&gt;
*Vortex while hot and place on ice&lt;br /&gt;
&lt;br /&gt;
===SDS-PAGE STEP 2 -- RUN GEL ELECTROPHORESIS===&lt;br /&gt;
[[File:Electrophoresis.png]]&lt;br /&gt;
&lt;br /&gt;
;Make Running Buffer (RB) &lt;br /&gt;
{{Box|RUNNING BUFFER (RB)|&lt;br /&gt;
;Make 1000 mL RB&lt;br /&gt;
*950 mL diH2O&lt;br /&gt;
*50 mL Tween-20&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Remove white tape from gel plastic&lt;br /&gt;
*Set up gel cassette in XCell mini-cell tank &lt;br /&gt;
**use spacer if needed&lt;br /&gt;
*Remove comb from top of gel plastic&lt;br /&gt;
&lt;br /&gt;
*Pour some RB into center gel compartment and look for leakage&lt;br /&gt;
*Finish filling center gel compartment above white scaffold &lt;br /&gt;
**make sure RB fills all the gel wells&lt;br /&gt;
*Fill exterior compartment with RB&lt;br /&gt;
**don’t overflow into center gel compartment&lt;br /&gt;
&lt;br /&gt;
*Load SeeBlue+2 standard into first lane&lt;br /&gt;
*Load 40 μL sample into each gel well&lt;br /&gt;
**record which lane contains which sample&lt;br /&gt;
&lt;br /&gt;
*Run gel 200V/50 minutes -- or until&lt;br /&gt;
**dye is at the end of the plate&lt;br /&gt;
**target band is in the center of the gel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box|Stopping Point|&lt;br /&gt;
If you absolutely must store gel overnight, wrap gel in cellophane and keep at 4 deg C&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==4. BLOT TRANSFER (GEL TO MEMBRANE)==&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 1 -- PREP TRANSFER MATERIALS===&lt;br /&gt;
&lt;br /&gt;
;Make transfer buffer (TB)&lt;br /&gt;
&lt;br /&gt;
{{Box|TRANSFER BUFFER (TB)|&lt;br /&gt;
;Make 1000 mL TB&lt;br /&gt;
*750 mL diH2O&lt;br /&gt;
*200 mL MeOH&lt;br /&gt;
*50 mL 20x NuPAGE TB&lt;br /&gt;
[[File:Transfer Buffer.png]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Put gel in TB for 10 min&lt;br /&gt;
&lt;br /&gt;
*Put new membrane in 100% MeOH &lt;br /&gt;
**leave in MeOH until turns opaque &lt;br /&gt;
**usually less than &amp;lt; 20 sec&lt;br /&gt;
*Remove membrane from MeOH and put in TB &lt;br /&gt;
**leave in for 10 min&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 2 -- PREP CASSETTE===&lt;br /&gt;
{{Box|Membrane Transfer Cassette|&lt;br /&gt;
[[File:Membrane Cassette.png]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*Place cassette, dark side down and fill tray with TB&lt;br /&gt;
*Roll out bubbles during each step&lt;br /&gt;
**moisten everything going in cassette with TB&lt;br /&gt;
**put a sponge in the cassette&lt;br /&gt;
**put 2 Whattman papers on top of sponge&lt;br /&gt;
**put the gel on top of Whattman papers&lt;br /&gt;
**put the membrane on gel&lt;br /&gt;
**put 2 Whattman papers on top membrane&lt;br /&gt;
**put another sponge on top of Whattmans&lt;br /&gt;
*Close frame with light side on top and lock.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT TRANSFER STEP 3 -- RUN TRANSFER===&lt;br /&gt;
&lt;br /&gt;
*Add TB to Tetra Cell tank until 2/3 full&lt;br /&gt;
*Place cassette in tank&lt;br /&gt;
** lock should face upward&lt;br /&gt;
** black side of cassette to black side of electrode insert  &lt;br /&gt;
*Fill tank to the fill-line with TB&lt;br /&gt;
*Run 150V/1hr&lt;br /&gt;
&lt;br /&gt;
[[File:Blot Transfer.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==5. ANTIBODY EXPOSURE==&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 1 -- MAKE BLOCK BUFFER===&lt;br /&gt;
&lt;br /&gt;
;Make PBS-T Block Buffer (milk + PBS + Tween) &lt;br /&gt;
*Use 5 g Carnation Powder Milk per 100 mL PBS-T&lt;br /&gt;
**PBS&lt;br /&gt;
**Tween20&lt;br /&gt;
**Carnation powder milk&lt;br /&gt;
&lt;br /&gt;
{{Box|PBS-T-Block QUICK METHOD|&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*900 mL diH2O&lt;br /&gt;
*100 mL PBS-10x&lt;br /&gt;
*1 mL Tween-20&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|PBS-T-Block DILUTION METHOD|&lt;br /&gt;
:Make a 10% Tween solution&lt;br /&gt;
*10 mL Tween20&lt;br /&gt;
*90 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 1000 mL PBS-T&lt;br /&gt;
*10 mL Tween-10%&lt;br /&gt;
*950 mL PBS-1x&lt;br /&gt;
&lt;br /&gt;
;Make 100 mL PBS-T-Block   &lt;br /&gt;
*5 g Carnation &lt;br /&gt;
*100 mL PBS-T&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 2 -- MEMBRANE BLOCK===&lt;br /&gt;
&lt;br /&gt;
*Remove membrane from cassette &lt;br /&gt;
*Wash membrane with PBS-T 2X&lt;br /&gt;
*Place membrane in PBS-T-Block for 1hr.&lt;br /&gt;
*Wash membrane 2X/5min with PBS-T&lt;br /&gt;
&lt;br /&gt;
[[File:Antibody Incubation.png]]&lt;br /&gt;
&lt;br /&gt;
===ANTIBODY EXPOSURE STEP 3 -- ANTIBODY INCUBATION===&lt;br /&gt;
&lt;br /&gt;
*Make 1° Antibody in PBS-T-Block.  &lt;br /&gt;
*Add membrane and incubate overnight at 4 deg C on rocker table. &lt;br /&gt;
&lt;br /&gt;
*Wash 4X/ 5min. with PBS-T.&lt;br /&gt;
*Make 2° Antibody in PBS-T-Block.  (Ms 1:200)&lt;br /&gt;
*Add membrane and incubate 1 hr.&lt;br /&gt;
*Wash 4X/5 min. with PBS-T. &lt;br /&gt;
*Wash 3X/ 5 min. with diH2O.&lt;br /&gt;
&lt;br /&gt;
{{Box|Stopping Point|&lt;br /&gt;
Incubation overnight should be done in a cold room at 4o C &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==6. BLOT VISUALIZATION==&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 1 -- PREP STATION===&lt;br /&gt;
&lt;br /&gt;
*Place saran wrap on top of upside down box tray&lt;br /&gt;
*Have another box ready to place on top&lt;br /&gt;
**this protects membrane and Dura from light&lt;br /&gt;
*Place membrane on top of saran wrap&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===BLOT VISUALIZATION STEP 2 -- PREP DURA===&lt;br /&gt;
&lt;br /&gt;
*Pour Dura A in conical vial-A and Dura B in conical vial-B&lt;br /&gt;
**use 4 mL total Dura per gel&lt;br /&gt;
&lt;br /&gt;
*Mix Dura A with Dura B and pour onto membrane&lt;br /&gt;
**do this quickly &lt;br /&gt;
**use drop method so Dura doesn’t run off membrane&lt;br /&gt;
**protect from light by putting box on top &lt;br /&gt;
*Incubate for 5 min&lt;br /&gt;
*After the 5 min incubation, visualize blot in ECL machine ASAP!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:Antibody_Incubation.png&amp;diff=959</id>
		<title>File:Antibody Incubation.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:Antibody_Incubation.png&amp;diff=959"/>
		<updated>2013-05-14T15:28:18Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:Blot_Transfer.png&amp;diff=958</id>
		<title>File:Blot Transfer.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:Blot_Transfer.png&amp;diff=958"/>
		<updated>2013-05-14T15:28:12Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:Membrane_Cassette.png&amp;diff=957</id>
		<title>File:Membrane Cassette.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:Membrane_Cassette.png&amp;diff=957"/>
		<updated>2013-05-14T15:27:53Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:Transfer_Buffer.png&amp;diff=956</id>
		<title>File:Transfer Buffer.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:Transfer_Buffer.png&amp;diff=956"/>
		<updated>2013-05-14T15:27:45Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:Electrophoresis.png&amp;diff=955</id>
		<title>File:Electrophoresis.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:Electrophoresis.png&amp;diff=955"/>
		<updated>2013-05-14T15:26:43Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=954</id>
		<title>File:SDS-PAGE.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=954"/>
		<updated>2013-05-14T15:23:49Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Monakhos uploaded a new version of &amp;amp;quot;File:SDS-PAGE.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=953</id>
		<title>File:SDS-PAGE.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=953"/>
		<updated>2013-05-14T15:23:47Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Monakhos uploaded a new version of &amp;amp;quot;File:SDS-PAGE.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=952</id>
		<title>File:SDS-PAGE.png</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=File:SDS-PAGE.png&amp;diff=952"/>
		<updated>2013-05-14T15:23:32Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=951</id>
		<title>Brain Informatics</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=951"/>
		<updated>2013-05-14T03:21:07Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;420&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/KJJdXtmA4pQ&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe src=&amp;quot;http://www.neuinfo.org/downloads/nif_navigator_1.2/nif_navigator.html&amp;quot; height=&amp;quot;775&amp;quot; width=&amp;quot;250&amp;quot; frameborder=&amp;quot;0&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:right&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|+Neural Informatics Tools&lt;br /&gt;
|-&lt;br /&gt;
! Link !! Description&lt;br /&gt;
|-&lt;br /&gt;
|[http://api.brain-map.org/examples/svgoverlay/index.html Allen Brain Atlas API] || Allen Institute&#039;s annotated reference atlases have SVG files that contain structural boundaries.&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.nrcam.uchc.edu/vcell_software/user_guide.html VCell] || Most useful cell modeling tool I&#039;ve seen so far.&lt;br /&gt;
|-&lt;br /&gt;
|[http://vcell.org/bionetgen/ BioNetGen] || A web-based tool for automatically generating a biochemical reaction networks from user-specified rules for biomolecular interactions.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://bionumbers.hms.harvard.edu/ B10NUMB3R5] || (BIONUMBERS) A database of useful biological numbers.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.bioinformaticsservices.com/ BioInformatics Services] || BioInformatics Services is a biotechnology consulting firm specializing in using computational biology to solve complex biological and data analysis problems.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellmigration.org/resource/modeling/model_resources.shtml#softwares cellmigrationgateway] || modeling software                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellml.org/ CellML] || The CellML language is an open standard based on the XML markup language at the University of Auckland and affiliated research groups.                &lt;br /&gt;
|-&lt;br /&gt;
|[https://sites.google.com/site/compcellbio/ CompCell Bio Web] ||  Development site for teaching modules on quantitative cell biology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://doqcs.ncbs.res.in/ DOQCS] ||  Quantitative Cellular Signaling (DOQCS) is a repository of models of signaling pathways.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.e-cell.org/ecell/ E-Cell] ||  A Multi-Algorithm, Multi-Timescale Simulation Software Environment.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://gfit.sourceforge.net/ Gfit] ||  A program for global regression analysis of experimental data.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.kitware.com/ Kitware] || Professional Visualization Solutions, Tools and Support.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.mcell.cnl.salk.edu/ MCell] ||  General Monte Carlo Simulator of Cellular Microphysiology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://mnm.engr.uconn.edu/MNM/SMSSearchServlet Minimotif Miner] || Application to search for short sequence motifs in Proteins.                &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|Bioinformatics Tools|&lt;br /&gt;
*[http://bbid.grc.nia.nih.gov/ BBID-Biological Biochemical Image Database]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=950</id>
		<title>Brain Informatics</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=950"/>
		<updated>2013-05-14T03:19:27Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe src=&amp;quot;http://www.neuinfo.org/downloads/nif_navigator_1.2/nif_navigator.html&amp;quot; height=&amp;quot;775&amp;quot; width=&amp;quot;250&amp;quot; frameborder=&amp;quot;0&amp;quot; seamless=&amp;quot;seamless&amp;quot; style=&amp;quot;float:right&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|+Neural Informatics Tools&lt;br /&gt;
|-&lt;br /&gt;
! Link !! Description&lt;br /&gt;
|-&lt;br /&gt;
|[http://api.brain-map.org/examples/svgoverlay/index.html Allen Brain Atlas API] || Allen Institute&#039;s annotated reference atlases have SVG files that contain structural boundaries.&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.nrcam.uchc.edu/vcell_software/user_guide.html VCell] || Most useful cell modeling tool I&#039;ve seen so far.&lt;br /&gt;
|-&lt;br /&gt;
|[http://vcell.org/bionetgen/ BioNetGen] || A web-based tool for automatically generating a biochemical reaction networks from user-specified rules for biomolecular interactions.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://bionumbers.hms.harvard.edu/ B10NUMB3R5] || (BIONUMBERS) A database of useful biological numbers.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.bioinformaticsservices.com/ BioInformatics Services] || BioInformatics Services is a biotechnology consulting firm specializing in using computational biology to solve complex biological and data analysis problems.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellmigration.org/resource/modeling/model_resources.shtml#softwares cellmigrationgateway] || modeling software                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cellml.org/ CellML] || The CellML language is an open standard based on the XML markup language at the University of Auckland and affiliated research groups.                &lt;br /&gt;
|-&lt;br /&gt;
|[https://sites.google.com/site/compcellbio/ CompCell Bio Web] ||  Development site for teaching modules on quantitative cell biology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://doqcs.ncbs.res.in/ DOQCS] ||  Quantitative Cellular Signaling (DOQCS) is a repository of models of signaling pathways.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.e-cell.org/ecell/ E-Cell] ||  A Multi-Algorithm, Multi-Timescale Simulation Software Environment.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://gfit.sourceforge.net/ Gfit] ||  A program for global regression analysis of experimental data.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.kitware.com/ Kitware] || Professional Visualization Solutions, Tools and Support.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.mcell.cnl.salk.edu/ MCell] ||  General Monte Carlo Simulator of Cellular Microphysiology.                &lt;br /&gt;
|-&lt;br /&gt;
|[http://mnm.engr.uconn.edu/MNM/SMSSearchServlet Minimotif Miner] || Application to search for short sequence motifs in Proteins.                &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Box|width=255px|Bioinformatics Tools|&lt;br /&gt;
*[http://bbid.grc.nia.nih.gov/ BBID-Biological Biochemical Image Database]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=949</id>
		<title>Brain Informatics</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Brain_Informatics&amp;diff=949"/>
		<updated>2013-05-14T03:16:50Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;[http://api.brain-map.org/examples/svgoverlay/index.html Allen Brain Atlas API]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://api.brain-map.org/examples/svgoverlay/index.html Allen Brain Atlas API]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=VCell&amp;diff=948</id>
		<title>VCell</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=VCell&amp;diff=948"/>
		<updated>2013-05-14T02:47:35Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;wpImageAnnotatorEnable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorPageName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[VCell]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorFullName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[VCell]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorFile&amp;quot;&amp;gt;[[File:VCell.jpg]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div&amp;gt;&amp;lt;!--Dummy marker to have image notes inserted below this line--&amp;gt;{{ImageNoteEnd|id=-1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{subst:ImageWithNotes|img=&#039;&#039;[[File:VCell.jpg]]&#039;&#039;}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Qdot core shell.png|200px]]&lt;br /&gt;
&lt;br /&gt;
[[File:Qdot core shell.png|thumb|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.nrcam.uchc.edu/vcell_software/user_guide.html?current=four VCell Tutorial]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:X&amp;diff=947</id>
		<title>Template:X</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:X&amp;diff=947"/>
		<updated>2013-05-14T02:37:17Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{{{{{|safesubst:}}}#switch:{{{1}}} &amp;lt;!-- __behaviour switches__ --&amp;gt;  | NOTOC | FORCETOC | TOC  | NOEDITSECTION | NEWSECTIONLINK | NONEWSECTIONLINK  | NOCONTENTCONVERT | NOCC  |...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{{{{|safesubst:}}}#switch:{{{1}}}&lt;br /&gt;
&amp;lt;!-- __behaviour switches__ --&amp;gt;&lt;br /&gt;
 | NOTOC | FORCETOC | TOC&lt;br /&gt;
 | NOEDITSECTION | NEWSECTIONLINK | NONEWSECTIONLINK&lt;br /&gt;
 | NOCONTENTCONVERT | NOCC&lt;br /&gt;
 | NOTITLECONVERT | NOTC&lt;br /&gt;
 | NOGALLERY&lt;br /&gt;
 | END | START &lt;br /&gt;
 | NOINDEX | INDEX&lt;br /&gt;
 | STATICREDIRECT&lt;br /&gt;
 | HIDDENCAT&lt;br /&gt;
 = &amp;amp;#95;_[[mw:Help:Magic_words#Behavior_switches|{{{2|{{{1}}}}}}]]_&amp;amp;#95;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{behavior switches:}} --&amp;gt;&lt;br /&gt;
 | PAGESIZE&lt;br /&gt;
 | PROTECTIONLEVEL&lt;br /&gt;
 | DISPLAYTITLE&lt;br /&gt;
 | DEFAULTSORT | DEFAULTSORTKEY | DEFAULTCATEGORYSORTKEY&lt;br /&gt;
 | PAGESINCATEGORY | PAGESINCAT&lt;br /&gt;
 | NUMBERINGROUP | NUMINGROUP&lt;br /&gt;
 | PAGESINNAMESPACE | PAGESINNS&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- #redirect: --&amp;gt;&lt;br /&gt;
 | REDIRECT | redirect&lt;br /&gt;
 = [[mw:Help:Redirects|{{{2|&amp;amp;#35;{{{1}}}}}}]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{parser functions:}} --&amp;gt;&lt;br /&gt;
 | localurl | localurle | fullurl | fullurle | filepath&lt;br /&gt;
 | urlencode | anchorencode&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#URL_data|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | ns | nse&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Namespaces|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | lc | lcfirst | uc | ucfirst&lt;br /&gt;
 | formatnum&lt;br /&gt;
 | padleft | padright&lt;br /&gt;
 | grammar | plural&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Formatting|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | GENDER | gender&lt;br /&gt;
 | int | msg | msgnw | raw&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Miscellaneous|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | subst | safesubst&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[m:Help:Substitution|{{{2|{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{#parser functions:}} --&amp;gt;&lt;br /&gt;
 | formatdate | dateformat&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Formatting|{{{2|&amp;amp;#35;{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | special&lt;br /&gt;
 | tag&lt;br /&gt;
 | language&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Miscellaneous|{{{2|&amp;amp;#35;{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{#ParserFunctions:}} --&amp;gt;&lt;br /&gt;
 | expr | if | ifeq | ifexist | ifexpr | iferror&lt;br /&gt;
 | rel2abs | switch | time | timel | titleparts&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Extension:ParserFunctions#.23{{{1}}}:|{{{2|&amp;amp;#35;{{{1}}}:}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{variables}} --&amp;gt;&lt;br /&gt;
 | SITENAME | SERVER | SERVERNAME | SCRIPTPATH&lt;br /&gt;
 | DIRMARK | DIRECTIONMARK&lt;br /&gt;
 | CURRENTVERSION&lt;br /&gt;
 | CONTENTLANGUAGE | CONTENTLANG&lt;br /&gt;
 | REVISIONID | REVISIONUSER&lt;br /&gt;
 | REVISIONDAY | REVISIONDAY2 | REVISIONMONTH | REVISIONYEAR | REVISIONTIMESTAMP&lt;br /&gt;
 =  &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Technical_metadata|{{{2|{{{1}}}}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | NUMBEROFPAGES | NUMBEROFARTICLES | NUMBEROFFILES | NUMBEROFEDITS | NUMBEROFVIEWS&lt;br /&gt;
 | NUMBEROFUSERS | NUMBEROFADMINS | NUMBEROFACTIVEUSERS&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Statistics|{{{2|{{{1}}}}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | NAMESPACE | NAMESPACEE | SUBJECTSPACE | SUBJECTSPACEE&lt;br /&gt;
 | ARTICLESPACE | ARTICLESPACEE | TALKSPACE | TALKSPACEE&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic_words#Namespaces|{{{2|{{{1}}}}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
 | CURRENTMONTHNAMEGEN | LOCALMONTHNAMEGEN&lt;br /&gt;
 = &amp;amp;#123;&amp;amp;#123;[[m:Help:Magic_words#Language-dependent_word_conversions|{{{2|{{{1}}}}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;extension tags&amp;gt; --&amp;gt;&lt;br /&gt;
 | categorytree&lt;br /&gt;
 = &amp;lt;[[mw:Extension:CategoryTree|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | charinsert&lt;br /&gt;
 = &amp;lt;[[mw:Extension:CharInsert|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | hiero&lt;br /&gt;
 = &amp;lt;[[mw:Extension:WikiHiero|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | imagemap&lt;br /&gt;
 = &amp;lt;[[mw:Extension:ImageMap|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | inputbox&lt;br /&gt;
 = &amp;lt;[[mw:Extension:InputBox|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | poem&lt;br /&gt;
 = &amp;lt;[[mw:Extension:Poem|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | ref | references&lt;br /&gt;
 = &amp;lt;[[mw:Extension:Cite/Cite.php|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | source | syntaxhighlight&lt;br /&gt;
 = &amp;lt;[[mw:Extension:SyntaxHighlight GeSHi|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
 | timeline&lt;br /&gt;
 = &amp;lt;[[mw:Extension:EasyTimeline|{{{2|{{{1}}}}}}]]&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- other {{variables}} / anything else --&amp;gt;&lt;br /&gt;
 | &amp;amp;#123;&amp;amp;#123;[[mw:Help:Magic words|{{{2|{{{1}}}}}}]]&amp;amp;#125;&amp;amp;#125;&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Links to a [[help]] page about the magic word and automatically adds the correct syntax (case sensitive in most cases).&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|NAMESPACE}} → {{x|NAMESPACE}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|DEFAULTSORT}} → {{x|DEFAULTSORT}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|ifexist}} → {{x|ifexist}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|localurl}} → {{x|localurl}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|REDIRECT}} → {{x|REDIRECT}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|safesubst}} → {{x|safesubst}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|NOTOC}} → {{x|NOTOC}}&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;x|categorytree}} → {{x|categorytree}}&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
[[Category:Interwiki link templates|{{PAGENAME}}]]&lt;br /&gt;
[[Category:Typing-aid templates|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Tlc&amp;diff=946</id>
		<title>Template:Tlc</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Tlc&amp;diff=946"/>
		<updated>2013-05-14T02:36:06Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;&amp;lt;span style=&amp;quot;white-space:nowrap;&amp;quot;&amp;gt;&amp;lt;code&amp;gt;&amp;amp;#123;&amp;amp;#123;{{#if:{{{1|}}}|{{{1}}}| tlc&amp;amp;#124;...}}&amp;lt;!-- --&amp;gt;{{#ifeq:{{{2|x}}}|{{{2|}}}| &amp;amp;#124;{{{2}}} | }}&amp;lt;!-- --&amp;gt;{{#ifeq:{{{3|x}}}|{{{3|...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;white-space:nowrap;&amp;quot;&amp;gt;&amp;lt;code&amp;gt;&amp;amp;#123;&amp;amp;#123;{{#if:{{{1|}}}|{{{1}}}| tlc&amp;amp;#124;...}}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{2|x}}}|{{{2|}}}| &amp;amp;#124;{{{2}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{3|x}}}|{{{3|}}}| &amp;amp;#124;{{{3}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{4|x}}}|{{{4|}}}| &amp;amp;#124;{{{4}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{5|x}}}|{{{5|}}}| &amp;amp;#124;{{{5}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{6|x}}}|{{{6|}}}| &amp;amp;#124;{{{6}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{7|x}}}|{{{7|}}}| &amp;amp;#124;{{{7}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{8|x}}}|{{{8|}}}| &amp;amp;#124;{{{8}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{9|x}}}|{{{9|}}}| &amp;amp;#124;{{{9}}} | }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;&amp;amp;#125;&amp;amp;#125;&amp;lt;/code&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:NW2&amp;diff=945</id>
		<title>Template:NW2</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:NW2&amp;diff=945"/>
		<updated>2013-05-14T02:35:26Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;&amp;lt;span style=&amp;quot;white-space:nowrap&amp;quot;&amp;gt;{{#switch:{{{2}}}  |c|tt={{#ifeq:{{{2}}}|c|&amp;lt;code&amp;gt;|&amp;lt;tt&amp;gt;}}{{#tag:nowiki|{{{3}}}}}{{#ifeq:{{{2}}}|c|&amp;lt;/code&amp;gt;|&amp;lt;/tt&amp;gt;}}  |nw={{#ifeq:{{{1}}}|c|&amp;lt;code&amp;gt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;white-space:nowrap&amp;quot;&amp;gt;{{#switch:{{{2}}}&lt;br /&gt;
 |c|tt={{#ifeq:{{{2}}}|c|&amp;lt;code&amp;gt;|&amp;lt;tt&amp;gt;}}{{#tag:nowiki|{{{3}}}}}{{#ifeq:{{{2}}}|c|&amp;lt;/code&amp;gt;|&amp;lt;/tt&amp;gt;}}&lt;br /&gt;
 |nw={{#ifeq:{{{1}}}|c|&amp;lt;code&amp;gt;|&amp;lt;tt&amp;gt;}}{{#tag:nowiki|{{{3}}}}}{{#ifeq:{{{1}}}|c|&amp;lt;/code&amp;gt;|&amp;lt;/tt&amp;gt;}}&lt;br /&gt;
 |{{#switch:{{{1}}}&lt;br /&gt;
  |c=&amp;lt;code&amp;gt;{{{2}}}&amp;lt;/code&amp;gt;&lt;br /&gt;
  |tt=&amp;lt;tt&amp;gt;{{{2}}}&amp;lt;/tt&amp;gt;&lt;br /&gt;
  |nw={{#tag:nowiki|{{{2}}}}}&lt;br /&gt;
  |{{{1}}}&lt;br /&gt;
 }}&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Prevents wrapping of lines like {{tl|nowrap}} (redirect: {{tl|NW}}) plus the option to also apply &amp;amp;lt;tt&amp;gt;/&amp;amp;lt;code&amp;gt; tags or &amp;amp;lt;nowiki&amp;gt; tags or both. This also works without any of those but if all you want is the no wrapping part use {{tl|NW}} instead.&lt;br /&gt;
&lt;br /&gt;
Note: The nowiki option makes use of {{x|tag}}, which doesn&#039;t work correctly with templates.&lt;br /&gt;
&lt;br /&gt;
The order doesn&#039;t matter as long as the &#039;&#039;text&#039;&#039; goes last (e.g. {{tlf|NW2|c|nw|&#039;&#039;text&#039;&#039;}} is the same as {{tlf|NW2|nw|c|&#039;&#039;text&#039;&#039;}}).&lt;br /&gt;
* {{tlc|NW2|c|&#039;&#039;text&#039;&#039;}} - nowrap + &amp;amp;lt;code&amp;gt;&lt;br /&gt;
* {{tlc|NW2|tt|&#039;&#039;text&#039;&#039;}} - nowrap + &amp;amp;lt;tt&amp;gt;&lt;br /&gt;
* {{tlc|NW2|nw|&#039;&#039;text&#039;&#039;}} - nowrap + &amp;amp;lt;nowiki&amp;gt;&lt;br /&gt;
* {{tlc|NW2|c|nw|&#039;&#039;text&#039;&#039;}} - nowrap + &amp;amp;lt;code&amp;gt; + &amp;amp;lt;nowiki&amp;gt;&lt;br /&gt;
* {{tlc|NW2|nw|tt|&#039;&#039;text&#039;&#039;}} - nowrap + &amp;amp;lt;tt&amp;gt; + &amp;amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Formatting templates|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Translated_tag&amp;diff=944</id>
		<title>Template:Translated tag</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Translated_tag&amp;diff=944"/>
		<updated>2013-05-14T02:33:35Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{{#ifeq:{{NAMESPACE}}|{{ns:4}}||&amp;lt;!-- ignore commons namespace for demonstration pages --&amp;gt; {{#switch:{{FULLPAGENAME}}   |{{{ns|{{{ns1|{{ns:10}}}}}}}}:{{ucfirst:{{{page|{{{page1...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifeq:{{NAMESPACE}}|{{ns:4}}||&amp;lt;!-- ignore commons namespace for demonstration pages --&amp;gt;&lt;br /&gt;
{{#switch:{{FULLPAGENAME}} &lt;br /&gt;
 |{{{ns|{{{ns1|{{ns:10}}}}}}}}:{{ucfirst:{{{page|{{{page1}}}}}}}}{{{sub|/{{SUBPAGENAME}}}}}&lt;br /&gt;
 |{{{ns2|{{ns:10}}}}}:{{ucfirst:{{{page2}}}}}{{{sub|/{{SUBPAGENAME}}}}}&lt;br /&gt;
 |{{{ns3|{{ns:10}}}}}:{{ucfirst:{{{page3}}}}}{{{sub|/{{SUBPAGENAME}}}}}&lt;br /&gt;
 |{{{ns4|{{ns:10}}}}}:{{ucfirst:{{{page4}}}}}{{{sub|/{{SUBPAGENAME}}}}} = &amp;lt;!-- for any exceptions --&amp;gt;&lt;br /&gt;
 |#default =&lt;br /&gt;
{{#switch:localisation|{{{1}}}|{{{2}}}=&amp;lt;!-- it may be used directly so the message doesn&#039;t apply --&amp;gt;|#default =&lt;br /&gt;
&amp;lt;div class=&amp;quot;translatedTag&amp;quot; style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{#ifexist:Template:Translated tag/{{{lang|{{SUBPAGENAME}}}}}&amp;lt;!-- check if we have a translation --&amp;gt;&lt;br /&gt;
| {{Translated tag/{{{lang|{{SUBPAGENAME}}}}}|{{{template|{{#ifexist:{{BASEPAGENAME}}|{{BASEPAGENAME}}|{{#titleparts:{{PAGENAME}}|1}}}}}}}}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div&amp;gt;{{lang|en|&#039;&#039;&#039;&#039;&#039;NOTE:&#039;&#039; Please do &#039;&#039;not&#039;&#039; use this template directly! This is just for translation.&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{NAMESPACE}}|{{ns:10}}&amp;lt;!-- leave this part out on non-template pages because it won&#039;t make sense --&amp;gt;&lt;br /&gt;
   | &amp;amp;#32;Use {{tl|{{{template|{{#ifexist:{{BASEPAGENAME}}|{{BASEPAGENAME}}|{{#titleparts:{{PAGENAME}}|1}}}}}}}}} instead!&#039;&#039;&#039;&lt;br /&gt;
   }}&amp;lt;!--&lt;br /&gt;
--&amp;gt;}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
auto-categorizer&lt;br /&gt;
--&amp;gt;{{#ifeq:{{FULLPAGENAME}}|{{ns:10}}:{{BASEPAGENAME}}/{{SUBPAGENAME}}&lt;br /&gt;
  | {{DEFAULTSORT:{{PAGENAME}}}}&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{{localcat|[[Category:{{#ifexist:Template:Translated tag/local category-{{SUBPAGENAME}}&lt;br /&gt;
   | {{translated tag/local category-{{SUBPAGENAME}}|{{{1}}}}}&lt;br /&gt;
   | Commons templates-{{SUBPAGENAME}} }}]]}}}&amp;lt;!--&lt;br /&gt;
--&amp;gt;[[Category:Translated {{#switch:{{lc:{{{1}}}}}&lt;br /&gt;
   | cleanup = media cleanup templates&lt;br /&gt;
   | license = license tags&lt;br /&gt;
   | marker = marker templates&lt;br /&gt;
   | problem = problem tags&lt;br /&gt;
   | restriction = restriction tags&lt;br /&gt;
   | header = header templates&lt;br /&gt;
   | infobox = infobox templates&lt;br /&gt;
   | navigational = navigational templates&lt;br /&gt;
   | protection = protection templates&lt;br /&gt;
   | source = source templates&lt;br /&gt;
   | documentation = documentation templates&lt;br /&gt;
   | user = user templates&lt;br /&gt;
   | localisation = templates for localisation&lt;br /&gt;
   | templates needing categories&lt;br /&gt;
   }}]]&lt;br /&gt;
 | {{#ifeq:{{NAMESPACE}}|{{ns:6}}|[[Category:Images using translated tags]]}}&amp;lt;!-- check for misuse --&amp;gt;&lt;br /&gt;
 }}&amp;lt;!--&lt;br /&gt;
end auto-categorizer&lt;br /&gt;
--&amp;gt;}}&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted/layout&amp;diff=943</id>
		<title>Template:Must be substituted/layout</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted/layout&amp;diff=943"/>
		<updated>2013-05-14T02:32:45Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{| class=&amp;quot;messagebox vcard layouttemplate&amp;quot; style=&amp;quot;direction: {{Dir|{{{lang|}}}}}&amp;quot; |style=&amp;quot;width:37px&amp;quot;|Notice |{{{text|empty}}} ---- {{Mus...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;messagebox vcard layouttemplate&amp;quot; style=&amp;quot;direction: {{Dir|{{{lang|}}}}}&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:37px&amp;quot;|[[File:Info non-talk.svg|35px|link=|Notice]]&lt;br /&gt;
|{{{text|empty}}}&lt;br /&gt;
----&lt;br /&gt;
{{Must be substituted/lang}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Layout templates|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted/en&amp;diff=942</id>
		<title>Template:Must be substituted/en</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted/en&amp;diff=942"/>
		<updated>2013-05-14T02:31:58Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{{Must be substituted/layout |text=&amp;lt;big&amp;gt;Please note that this template &amp;#039;&amp;#039;&amp;#039;must be substituted&amp;#039;&amp;#039;&amp;#039;. Replace {{NW2|tt|{&amp;amp;#123;{{{name|{{lcfirst:{{PAGENAME}...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Must be substituted/layout&lt;br /&gt;
|text=&amp;lt;big&amp;gt;Please note that this template &#039;&#039;&#039;must be [[m:help:substitution|substituted]]&#039;&#039;&#039;. Replace {{NW2|tt|{&amp;amp;#123;{{{name|{{lcfirst:{{PAGENAME}}}}}}}&amp;amp;#125;&amp;amp;#125;}} with {{NW2|tt|{&amp;amp;#123;subst:{{{name|{{lcfirst:{{PAGENAME}}}}}}}&amp;amp;#125;&amp;amp;#125;}}&amp;lt;/big&amp;gt;.&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[{{fullurl:Special:WhatLinksHere/{{FULLPAGENAMEE}}|hideredirs=1&amp;amp;hidelinks=1&amp;amp;hidetrans=0}} Check un-substituted usage]&amp;lt;/span&amp;gt;&lt;br /&gt;
|lang=en&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{translated tag|marker}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Fallback&amp;diff=941</id>
		<title>Template:Fallback</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Fallback&amp;diff=941"/>
		<updated>2013-05-14T02:31:02Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{{#ifexist: Template:{{{1|}}}/{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}} | {{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}} | {{#ifexist: Template:{{{1|}}}/{{GetFallback|{{#if: {{{2|}}} |...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifexist: Template:{{{1|}}}/{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}} | {{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}} | {{#ifexist: Template:{{{1|}}}/{{GetFallback|{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}}}} | {{GetFallback|{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}}}} | {{#ifexist: Template:{{{1|}}}/{{GetFallback2|{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}}}} | {{GetFallback2|{{#if: {{{2|}}} |{{{2}}}|{{int:Lang}}}}}} | {{CONTENTLANGUAGE}} }} }} }}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{documentation}}&lt;br /&gt;
[[Category:Localisation templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Autotranslate&amp;diff=940</id>
		<title>Template:Autotranslate</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Autotranslate&amp;diff=940"/>
		<updated>2013-05-14T02:30:06Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;&amp;lt;includeonly&amp;gt;{{{{{base|}}}/{{Fallback|{{{base|}}}|{{{lang|{{int:Lang}} }}} }} | 1={{{ 1|}}}| 2={{{ 2|}}}| 3={{{ 3|}}}| 4={{{ 4|}}}| 5={{{ 5|}}} | 6={{{ 6|}}}| 7={{{ 7|}}}| 8={...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{{{{base|}}}/{{Fallback|{{{base|}}}|{{{lang|{{int:Lang}} }}} }}&lt;br /&gt;
| 1={{{ 1|}}}| 2={{{ 2|}}}| 3={{{ 3|}}}| 4={{{ 4|}}}| 5={{{ 5|}}}&lt;br /&gt;
| 6={{{ 6|}}}| 7={{{ 7|}}}| 8={{{ 8|}}}| 9={{{ 9|}}}|10={{{10|}}}&lt;br /&gt;
|11={{{11|}}}|12={{{12|}}}|13={{{13|}}}|14={{{14|}}}|15={{{15|}}} }}&amp;lt;!--  &lt;br /&gt;
--&amp;gt;{{#ifeq: {{FULLPAGENAME}} | Template:{{{base|}}} | [[Category:Autotranslated templates|{{PAGENAME}}]]}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Autotranslated templates| *]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted&amp;diff=939</id>
		<title>Template:Must be substituted</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=Template:Must_be_substituted&amp;diff=939"/>
		<updated>2013-05-14T02:29:28Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: Created page with &amp;quot;{{autotranslate|base=Must be substituted}} &amp;lt;includeonly&amp;gt; {{PAGENAME}} &amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt; {{documentation}} [[Category:T...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{autotranslate|base=Must be substituted}}&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Templates which must be substituted|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
[[Category:Template namespace templates|{{PAGENAME}}]]&lt;br /&gt;
[[Category:Marker templates|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
	<entry>
		<id>https://bradleymonk.com/wiki/index.php?title=VCell&amp;diff=938</id>
		<title>VCell</title>
		<link rel="alternate" type="text/html" href="https://bradleymonk.com/wiki/index.php?title=VCell&amp;diff=938"/>
		<updated>2013-05-14T02:27:33Z</updated>

		<summary type="html">&lt;p&gt;Monakhos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;wpImageAnnotatorEnable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorPageName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[VCell]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorFullName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;[[VCell]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorFile&amp;quot;&amp;gt;[[File:VCell.jpg]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div&amp;gt;&amp;lt;!--Dummy marker to have image notes inserted below this line--&amp;gt;{{ImageNoteEnd|id=-1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{subst:void|&amp;lt;span class=&amp;quot;error&amp;quot;&amp;gt;&#039;&#039;&#039;You forgot to subst this template. Replace &amp;amp;#123;{ImageWithNotes}&amp;amp;#125; with &amp;amp;#123;{subst:ImageWithNotes}&amp;amp;#125;&#039;&#039;&#039;&amp;lt;/span&amp;gt;}}&amp;lt;div class=&amp;quot;wpImageAnnotatorEnable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorPageName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;VCell&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;wpImageAnnotatorFullName&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;VCell&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;wpImageAnnotatorFile&amp;quot;&amp;gt;&#039;&#039;[[File:VCell.jpg]]&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div&amp;gt;&amp;lt;!--Dummy marker to have image notes inserted below this line--&amp;gt;{{ImageNoteEnd|id=-1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{subst:ImageWithNotes|img=&#039;&#039;[[File:VCell.jpg]]&#039;&#039;}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Qdot core shell.png|200px]]&lt;br /&gt;
&lt;br /&gt;
[[File:Qdot core shell.png|thumb|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.nrcam.uchc.edu/vcell_software/user_guide.html?current=four VCell Tutorial]&lt;/div&gt;</summary>
		<author><name>Monakhos</name></author>
	</entry>
</feed>