<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.sharcnet.ca/help/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bge</id>
		<title>Documentation - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.sharcnet.ca/help/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bge"/>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php/Special:Contributions/Bge"/>
		<updated>2026-05-24T00:03:01Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.2</generator>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=File:Media-Bash_baolai_2016.pdf&amp;diff=14396</id>
		<title>File:Media-Bash baolai 2016.pdf</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=File:Media-Bash_baolai_2016.pdf&amp;diff=14396"/>
				<updated>2016-10-13T18:51:56Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10287</id>
		<title>Using OpenBUGS with R</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10287"/>
				<updated>2014-12-11T16:55:03Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: /* Using OpenBUGS in R */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Obtaining OpenBUGS==&lt;br /&gt;
&lt;br /&gt;
OpenBUGS is an open source project. It can be downloaded from [http://www.openbugs.net/w/FrontPage here]. Look for the package for Linux, it comes as gzipped Unix tar file, named as '''OpenBUGS-''version''.tar.gz''', e.g. OpenBUGS-3.2.3.tar.gz.&lt;br /&gt;
&lt;br /&gt;
==Installing OpenBUGS for Linux==&lt;br /&gt;
&lt;br /&gt;
First, save it and copy it to your account, say, in folder Downloads. Then unpack it with command&lt;br /&gt;
&lt;br /&gt;
 tar zxvf OpenBUGS-3.2.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
This will extract the content from the tar file and put in folder OpenBUGS-3.2.3. Then go into that folder&lt;br /&gt;
&lt;br /&gt;
 cd OpenBUGS&lt;br /&gt;
&lt;br /&gt;
and run configuration first&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=$HOME/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
This sets where to install the package. In this case, it will be installed in /home/you/lib/openbugs-3.2.3. You may choose another location you like. By default the installation directory is /usr/local, which is not what you want.&lt;br /&gt;
&lt;br /&gt;
Then compile and install it with commands&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
The compilation shouldn't take long to complete. It is likely, however, that the compilation may fail due to missing system files. specifically, gnu/stubs-32.h. If this is the case, you will need to ask the system administrators to install the missing system files.&lt;br /&gt;
&lt;br /&gt;
Upon success, you should have three folders created in /home/your/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
 bin   lib   share&lt;br /&gt;
&lt;br /&gt;
In bin, there are two binaries: '''OpenBUGS''' and '''OpenBUGSCli'''. '''OpenBUGS''' is what you will need when you run R calling bugs.&lt;br /&gt;
&lt;br /&gt;
==Installing R2OpenBUGS for R==&lt;br /&gt;
&lt;br /&gt;
In order to user OpenBUGS in R, you need an R interface to BUGS. The package R2OpenBUGS is recommended. The package can be installed in user space. To install it, first, load R module. You might need to unload intel module on SHARCNET systems to avoid possible conflict&lt;br /&gt;
&lt;br /&gt;
 module unload intel&lt;br /&gt;
&lt;br /&gt;
To see what releases of R are available, use command&lt;br /&gt;
&lt;br /&gt;
 module avail r&lt;br /&gt;
&lt;br /&gt;
If you prefer a specific version, e.g. 3.1, then use command&lt;br /&gt;
&lt;br /&gt;
 module load r/3.1&lt;br /&gt;
&lt;br /&gt;
Otherwise, the command&lt;br /&gt;
&lt;br /&gt;
 module load r&lt;br /&gt;
&lt;br /&gt;
would just load the latest version by default.&lt;br /&gt;
&lt;br /&gt;
Then run R from command line. At the R prompt, use R command '''install.packages()''' to install R2OpenBUGS&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;install.packages(&amp;quot;R2OpenBUGS&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
and follow the instructions.&lt;br /&gt;
&lt;br /&gt;
==Using OpenBUGS in R==&lt;br /&gt;
&lt;br /&gt;
The R2OpenBUGS is an interface to OpenBUGS. In order to use OpenBUGS in R, you need to tell where OpenBUGS resides. According to the help info, as you would get from R command&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;library(R2OpenBUGS)&lt;br /&gt;
 &amp;gt;... ...&lt;br /&gt;
 &amp;gt;help(bugs)&lt;br /&gt;
&lt;br /&gt;
there are two ways of telling '''bugs()''' where OpenBUGS is. First you may specify the path to OpenBUGS in the call to bugs() in your R code. Assume that OpenBUGS executable is installed in /home/you/bin (you need to change it to where you have put the binary OpenBUGS), the call to bugs() would like something like this&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;schools.sim &amp;lt;- bugs(data, inits, parameters, OpenBUGS.pgm=&amp;quot;/home/you/bin/OpenBUGS&amp;quot;, model.file=&amp;quot;/home/youschools.txt&amp;quot;, n.chains = 3, n.iter = 1000, working.directory = NULL)&lt;br /&gt;
&lt;br /&gt;
Note, this line has the paths to the OpenBUGS and the model file specific to the system you are using. To make your R code portable, you may simply set environment variable at the command line or put the following line in '''.bash_profile''' in your home directory&lt;br /&gt;
&lt;br /&gt;
 export OpenBUGS_PATH=$HOME/bin/OpenBUGS&lt;br /&gt;
&lt;br /&gt;
and also, set the working directory to the current folder (the last argument) as follows&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;schools.sim &amp;lt;- bugs(data, inits, parameters, model.file=&amp;quot;schools.txt&amp;quot;, n.chains = 3, n.iter = 1000, working.directory = &amp;quot;.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
When working.directory is where the input and output are stored. By default, it is set to NULL and the location is unexpected from one system to another.&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10286</id>
		<title>Using OpenBUGS with R</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10286"/>
				<updated>2014-12-11T15:52:29Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: /* Using OpenBUGS in R */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Obtaining OpenBUGS==&lt;br /&gt;
&lt;br /&gt;
OpenBUGS is an open source project. It can be downloaded from [http://www.openbugs.net/w/FrontPage here]. Look for the package for Linux, it comes as gzipped Unix tar file, named as '''OpenBUGS-''version''.tar.gz''', e.g. OpenBUGS-3.2.3.tar.gz.&lt;br /&gt;
&lt;br /&gt;
==Installing OpenBUGS for Linux==&lt;br /&gt;
&lt;br /&gt;
First, save it and copy it to your account, say, in folder Downloads. Then unpack it with command&lt;br /&gt;
&lt;br /&gt;
 tar zxvf OpenBUGS-3.2.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
This will extract the content from the tar file and put in folder OpenBUGS-3.2.3. Then go into that folder&lt;br /&gt;
&lt;br /&gt;
 cd OpenBUGS&lt;br /&gt;
&lt;br /&gt;
and run configuration first&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=$HOME/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
This sets where to install the package. In this case, it will be installed in /home/you/lib/openbugs-3.2.3. You may choose another location you like. By default the installation directory is /usr/local, which is not what you want.&lt;br /&gt;
&lt;br /&gt;
Then compile and install it with commands&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
The compilation shouldn't take long to complete. It is likely, however, that the compilation may fail due to missing system files. specifically, gnu/stubs-32.h. If this is the case, you will need to ask the system administrators to install the missing system files.&lt;br /&gt;
&lt;br /&gt;
Upon success, you should have three folders created in /home/your/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
 bin   lib   share&lt;br /&gt;
&lt;br /&gt;
In bin, there are two binaries: '''OpenBUGS''' and '''OpenBUGSCli'''. '''OpenBUGS''' is what you will need when you run R calling bugs.&lt;br /&gt;
&lt;br /&gt;
==Installing R2OpenBUGS for R==&lt;br /&gt;
&lt;br /&gt;
In order to user OpenBUGS in R, you need an R interface to BUGS. The package R2OpenBUGS is recommended. The package can be installed in user space. To install it, first, load R module. You might need to unload intel module on SHARCNET systems to avoid possible conflict&lt;br /&gt;
&lt;br /&gt;
 module unload intel&lt;br /&gt;
&lt;br /&gt;
To see what releases of R are available, use command&lt;br /&gt;
&lt;br /&gt;
 module avail r&lt;br /&gt;
&lt;br /&gt;
If you prefer a specific version, e.g. 3.1, then use command&lt;br /&gt;
&lt;br /&gt;
 module load r/3.1&lt;br /&gt;
&lt;br /&gt;
Otherwise, the command&lt;br /&gt;
&lt;br /&gt;
 module load r&lt;br /&gt;
&lt;br /&gt;
would just load the latest version by default.&lt;br /&gt;
&lt;br /&gt;
Then run R from command line. At the R prompt, use R command '''install.packages()''' to install R2OpenBUGS&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;install.packages(&amp;quot;R2OpenBUGS&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
and follow the instructions.&lt;br /&gt;
&lt;br /&gt;
==Using OpenBUGS in R==&lt;br /&gt;
&lt;br /&gt;
The R2OpenBUGS is an interface to OpenBUGS. In order to user OpenBUGS, you need to tell where OpenBUGS resides. According to the help info, as you would get from R command&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;library(R2OpenBUGS)&lt;br /&gt;
 &amp;gt;... ...&lt;br /&gt;
 &amp;gt;help(bugs)&lt;br /&gt;
&lt;br /&gt;
there are two ways of telling '''bugs()''' where OpenBUGS is. First you may specify the path to OpenBUGS in the call to bugs() in your R code, e.g.&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;schools.sim &amp;lt;- bugs(data, inits, parameters, OpenBUGS.pgm=&amp;quot;/home/you/bin/OpenBUGS&amp;quot;, model.file=&amp;quot;/home/youschools.txt&amp;quot;, n.chains = 3, n.iter = 1000, working.directory = NULL)&lt;br /&gt;
&lt;br /&gt;
Note, this line has the paths to the OpenBUGS and the model file specific to the system you are using. To make your R code portable, you may simply set environment variable at the command line or put the following line in '''.bash_profile''' in your home directory.&lt;br /&gt;
&lt;br /&gt;
 export OpenBUGS_PATH=$HOME/bin/OpenBUGS&lt;br /&gt;
&lt;br /&gt;
and also, set the working directory to the current folder (the last argument) as follows&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;schools.sim &amp;lt;- bugs(data, inits, parameters, model.file=&amp;quot;schools.txt&amp;quot;, n.chains = 3, n.iter = 1000, working.directory = &amp;quot;.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
In the example above, it is assumed that OpenBUGS executable is installed in /home/you/bin. You need to change it to where you have put the binary OpenBUGS&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10282</id>
		<title>Using OpenBUGS with R</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=Using_OpenBUGS_with_R&amp;diff=10282"/>
				<updated>2014-12-10T17:42:35Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: Created page with &amp;quot;==Obtaining OpenBUGS==  OpenBUGS is an open source project. It can be downloaded from [http://www.openbugs.net/w/FrontPage here]. Look for the package for Linux, it comes as g...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Obtaining OpenBUGS==&lt;br /&gt;
&lt;br /&gt;
OpenBUGS is an open source project. It can be downloaded from [http://www.openbugs.net/w/FrontPage here]. Look for the package for Linux, it comes as gzipped Unix tar file, named as '''OpenBUGS-''version''.tar.gz''', e.g. OpenBUGS-3.2.3.tar.gz.&lt;br /&gt;
&lt;br /&gt;
==Installing OpenBUGS for Linux==&lt;br /&gt;
&lt;br /&gt;
First, save it and copy it to your account, say, in folder Downloads. Then unpack it with command&lt;br /&gt;
&lt;br /&gt;
 tar zxvf OpenBUGS-3.2.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
This will extract the content from the tar file and put in folder OpenBUGS-3.2.3. Then go into that folder&lt;br /&gt;
&lt;br /&gt;
 cd OpenBUGS&lt;br /&gt;
&lt;br /&gt;
and run configuration first&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=$HOME/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
This sets where to install the package. In this case, it will be installed in /home/you/lib/openbugs-3.2.3. You may choose another location you like. By default the installation directory is /usr/local, which is not what you want.&lt;br /&gt;
&lt;br /&gt;
Then compile and install it with commands&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
The compilation shouldn't take long to complete. It is likely, however, that the compilation may fail due to missing system files. specifically, gnu/stubs-32.h. If this is the case, you will need to ask the system administrators to install the missing system files.&lt;br /&gt;
&lt;br /&gt;
Upon success, you should have three folders created in /home/your/lib/openbugs-3.2.3&lt;br /&gt;
&lt;br /&gt;
 bin   lib   share&lt;br /&gt;
&lt;br /&gt;
In bin, there are two binaries: '''OpenBUGS''' and '''OpenBUGSCli'''. '''OpenBUGS''' is what you will need when you run R calling bugs.&lt;br /&gt;
&lt;br /&gt;
==Installing R2OpenBUGS for R==&lt;br /&gt;
&lt;br /&gt;
In order to user OpenBUGS in R, you need an R interface to BUGS. The package R2OpenBUGS is recommended. The package can be installed in user space. To install it, first, load R module. You might need to unload intel module on SHARCNET systems to avoid possible conflict&lt;br /&gt;
&lt;br /&gt;
 module unload intel&lt;br /&gt;
&lt;br /&gt;
To see what releases of R are available, use command&lt;br /&gt;
&lt;br /&gt;
 module avail r&lt;br /&gt;
&lt;br /&gt;
If you prefer a specific version, e.g. 3.1, then use command&lt;br /&gt;
&lt;br /&gt;
 module load r/3.1&lt;br /&gt;
&lt;br /&gt;
Otherwise, the command&lt;br /&gt;
&lt;br /&gt;
 module load r&lt;br /&gt;
&lt;br /&gt;
would just load the latest version by default.&lt;br /&gt;
&lt;br /&gt;
Then run R from command line. At the R prompt, use R command '''install.packages()''' to install R2OpenBUGS&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;install.packages(&amp;quot;R2OpenBUGS&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
and follow the instructions.&lt;br /&gt;
&lt;br /&gt;
==Using OpenBUGS in R==&lt;br /&gt;
&lt;br /&gt;
The R2OpenBUGS is an interface to OpenBUGS. In order to user OpenBUGS, you need to tell where OpenBUGS resides. According to the help info, as you would get from R command&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;library(R2OpenBUGS)&lt;br /&gt;
 &amp;gt;... ...&lt;br /&gt;
 &amp;gt;help(bugs)&lt;br /&gt;
&lt;br /&gt;
there are two ways of telling '''bugs()''' where OpenBUGS is. First you may specify the path to OpenBUGS in the call to bugs() in your R code, e.g.&lt;br /&gt;
&lt;br /&gt;
 &amp;gt;schools.sim &amp;lt;- bugs(data, inits, parameters, OpenBUGS.pgm=&amp;quot;/home/you/bin/OpenBUGS&amp;quot;, model.file=&amp;quot;/home/bge/schools.txt&amp;quot;, n.chains = 3, n.iter = 1000, working.directory = NULL)&lt;br /&gt;
&lt;br /&gt;
Or, you may simply set environment variable at the command line or put the following line in '''.bash_profile''' in your home directory.&lt;br /&gt;
&lt;br /&gt;
 export OpenBUGS_PATH=$HOME/bin/OpenBUGS&lt;br /&gt;
&lt;br /&gt;
In both cases above, it is assumed that OpenBUGS executable is installed in /home/you/bin.&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8094</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8094"/>
				<updated>2014-02-25T16:27:01Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Menu&lt;br /&gt;
** Main_Page | Main&lt;br /&gt;
** Knowledge Base | FAQs&lt;br /&gt;
** https://www.sharcnet.ca/ | SHARCNET Web Portal&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8093</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8093"/>
				<updated>2014-02-25T03:46:29Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Menu&lt;br /&gt;
** Main_Page | Main&lt;br /&gt;
** Knowledge Base | FAQs&lt;br /&gt;
** https://www.sharcnet.ca/ | SHARCNET&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8091</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8091"/>
				<updated>2014-02-25T03:09:56Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Menu&lt;br /&gt;
** Main_Page | Main&lt;br /&gt;
** Knowledge Base | FAQ&lt;br /&gt;
** https://www.sharcnet.ca/ | SHARCNET&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8090</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8090"/>
				<updated>2014-02-25T03:05:31Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: Undo revision 8089 by Bge (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Main_Page | Main]]&lt;br /&gt;
* [[Knowledge Base | FAQ]]&lt;br /&gt;
* [https://www.sharcnet.ca/ SHARCNET]&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8089</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8089"/>
				<updated>2014-02-25T03:04:45Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Menu&lt;br /&gt;
** [[Main_Page | Main]]&lt;br /&gt;
** [[Knowledge Base | FAQ]]&lt;br /&gt;
** [https://www.sharcnet.ca/ SHARCNET]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Search and Tools will appear by default&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8088</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8088"/>
				<updated>2014-02-25T03:01:43Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Main_Page | Main]]&lt;br /&gt;
* [[Knowledge Base | FAQ]]&lt;br /&gt;
* [https://www.sharcnet.ca/ SHARCNET]&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:MenuSidebar&amp;diff=8087</id>
		<title>MediaWiki:MenuSidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:MenuSidebar&amp;diff=8087"/>
				<updated>2014-02-25T02:57:23Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8085</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8085"/>
				<updated>2014-02-24T21:59:56Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: Replaced content with &amp;quot;* SEARCH * TOOLBOX * LANGUAGES&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:MenuSidebar&amp;diff=8084</id>
		<title>MediaWiki:MenuSidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:MenuSidebar&amp;diff=8084"/>
				<updated>2014-02-24T21:49:58Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Common Destinations&lt;br /&gt;
** [[Main_Page]]&lt;br /&gt;
** [[Knowledge Base]]&lt;br /&gt;
** [http://www.sharcnet.ca/my SHARCNET Web Portal]&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8083</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8083"/>
				<updated>2014-02-24T21:45:07Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: Undo revision 8082 by Bge (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Common Destinations&lt;br /&gt;
** Knowledge_Base|Knowledge Base&lt;br /&gt;
** http://www.sharcnet.ca/my|SHARCNET Web Portal&lt;br /&gt;
* Clusters Facilities&lt;br /&gt;
** Main_Page#SHARCNET|Working with the Clusters&lt;br /&gt;
** Main_Page#Programming|Programming the Clusters&lt;br /&gt;
* Other Facilities&lt;br /&gt;
** Main_Page#Visualization|Visualization&lt;br /&gt;
** Main_Page#AccessGrid|Video Conferencing&lt;br /&gt;
* Domain Specific Portals&lt;br /&gt;
** Astrophysics|Astrophysics&lt;br /&gt;
** Bioinformatics|Bioinformatics&lt;br /&gt;
** Digital_Humanities|Digital Humanities&lt;br /&gt;
** Chemistry,_Biochemistry_and_Biophysics|Chemistry, Biochemistry and Biophysics&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8082</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8082"/>
				<updated>2014-02-24T21:41:48Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Common Destinations&lt;br /&gt;
** Knowledge_Base|Knowledge Base&lt;br /&gt;
** http://www.sharcnet.ca/my|SHARCNET Web Portal&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8081</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8081"/>
				<updated>2014-02-24T21:40:31Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Common Destinations&lt;br /&gt;
** Knowledge_Base|Knowledge Base&lt;br /&gt;
** http://www.sharcnet.ca/my|SHARCNET Web Portal&lt;br /&gt;
* Clusters Facilities&lt;br /&gt;
** Main_Page#SHARCNET|Working with the Clusters&lt;br /&gt;
** Main_Page#Programming|Programming the Clusters&lt;br /&gt;
* Other Facilities&lt;br /&gt;
** Main_Page#Visualization|Visualization&lt;br /&gt;
** Main_Page#AccessGrid|Video Conferencing&lt;br /&gt;
* Domain Specific Portals&lt;br /&gt;
** Astrophysics|Astrophysics&lt;br /&gt;
** Bioinformatics|Bioinformatics&lt;br /&gt;
** Digital_Humanities|Digital Humanities&lt;br /&gt;
** Chemistry,_Biochemistry_and_Biophysics|Chemistry, Biochemistry and Biophysics&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	<entry>
		<id>https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8080</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://www.sharcnet.ca/help/index.php?title=MediaWiki:Sidebar&amp;diff=8080"/>
				<updated>2014-02-24T21:36:58Z</updated>
		
		<summary type="html">&lt;p&gt;Bge: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Main_Page&lt;br /&gt;
* http://www.sharcnet.ca/my |SHARCNET Web Portal&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Bge</name></author>	</entry>

	</feed>