<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.umiacs.umd.edu/cbcb/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gpertea</id>
	<title>Cbcb - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.umiacs.umd.edu/cbcb/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gpertea"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php/Special:Contributions/Gpertea"/>
	<updated>2026-04-12T21:35:45Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Gpertea_gcc&amp;diff=8167</id>
		<title>Gpertea gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Gpertea_gcc&amp;diff=8167"/>
		<updated>2011-01-10T17:26:33Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: /* Compiling gcc/g++ 4.5.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=GCC/G++ notes=&lt;br /&gt;
=== Linking tips ===&lt;br /&gt;
When statically linking with g++, the linker expects  -l arguments (libraries) to come after the files containing references to them, so &#039;&#039;&#039;the .o and .a files must appear before the -l flags&#039;&#039;&#039; in the g++ command line.&lt;br /&gt;
=== Compiling gcc/g++ 4.5.x === &lt;br /&gt;
I prefer to prepare the GCC compiler such that it will statically link the C/C++ runtime libraries into the executables generated by the compiler. This way the portability of the precompiled binaries is maximized.&lt;br /&gt;
In order to compile GCC/G++ this way:&lt;br /&gt;
*Make sure gmp, mpfr and mpc source trees are under the main  gcc-*/ source dir&lt;br /&gt;
For some mpfr versions, the configure script may need to be patched:&lt;br /&gt;
&amp;lt;pre&amp;gt;extra_mpfr_configure_flags=&#039;--with-gmp-build=$$r/$(HOST_SUBDIR)/gmp&#039; &amp;lt;/pre&amp;gt;&lt;br /&gt;
.. replace the above line with:&lt;br /&gt;
&amp;lt;pre&amp;gt;extra_mpfr_configure_flags=&#039;--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/&#039;&amp;quot;$lt_cv_objdir&amp;quot; &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Assuming tcsh, and that the gcc and g++ source were unpacked under the gcc-4.5.1 subdirectory:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ..&lt;br /&gt;
mkdir gcc45obj&lt;br /&gt;
setenv CFLAGS &#039;-O2&#039;&lt;br /&gt;
setenv CXXFLAGS &#039;-O2 -fno-implicit-templates&#039;&lt;br /&gt;
&lt;br /&gt;
../gcc-4.5.1/configure --prefix=/fs/sz-user-supported/Linux-x86_64/packages/gcc-4.5.1 \&lt;br /&gt;
 --enable-threads=posix --disable-shared --disable-multilib --enable-__cxa_atexit \&lt;br /&gt;
 --disable-libunwind-exceptions --disable-checking --build=x86_64-redhat-linux --disable-dssi \&lt;br /&gt;
 --enable-plugin --disable-nls --with-cpu=generic --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
make CFLAGS=&#039;-O2&#039; BOOT_CFLAGS=&#039;-O2&#039; BOOT_FLAGS=&#039;-O2&#039; STAGE1_CFLAGS=&#039;-O2&#039; LIBCFLAGS=&#039;-O2&#039; \&lt;br /&gt;
LIBCXXFLAGS=&#039;-O2 -fno-implicit-templates&#039; CXXFLAGS=&#039;-O2&#039; bootstrap-lean&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Building may take a long time. After it is done, installing it is simply a matter of running &amp;lt;pre&amp;gt;make install&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Gpertea_gcc&amp;diff=8166</id>
		<title>Gpertea gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Gpertea_gcc&amp;diff=8166"/>
		<updated>2011-01-10T16:33:13Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=GCC/G++ notes=&lt;br /&gt;
=== Linking tips ===&lt;br /&gt;
When statically linking with g++, the linker expects  -l arguments (libraries) to come after the files containing references to them, so &#039;&#039;&#039;the .o and .a files must appear before the -l flags&#039;&#039;&#039; in the g++ command line.&lt;br /&gt;
=== Compiling gcc/g++ 4.5.x === &lt;br /&gt;
I prefer to prepare the GCC compiler such that it will statically link the core system and C++ runtime libraries in the executables generated by the compiler. This way the portability of the precompiled binaries is maximized.&lt;br /&gt;
In order to compile GCC/G++ this way:&lt;br /&gt;
*Make sure gmp, mpfr and mpc source trees are under the main  gcc-*/ source dir&lt;br /&gt;
For some mpfr versions, the configure script may need to be patched:&lt;br /&gt;
&amp;lt;pre&amp;gt;extra_mpfr_configure_flags=&#039;--with-gmp-build=$$r/$(HOST_SUBDIR)/gmp&#039; &amp;lt;/pre&amp;gt;&lt;br /&gt;
.. replace the above line with:&lt;br /&gt;
&amp;lt;pre&amp;gt;extra_mpfr_configure_flags=&#039;--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/&#039;&amp;quot;$lt_cv_objdir&amp;quot; &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Assuming tcsh, and that the gcc and g++ source were unpacked under the gcc-4.5.1 subdirectory:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ..&lt;br /&gt;
mkdir gcc45obj&lt;br /&gt;
setenv CFLAGS &#039;-O2&#039;&lt;br /&gt;
setenv CXXFLAGS &#039;-O2 -fno-implicit-templates&#039;&lt;br /&gt;
&lt;br /&gt;
../gcc-4.5.1/configure --prefix=/fs/sz-user-supported/Linux-x86_64/packages/gcc-4.5.1 \&lt;br /&gt;
 --enable-threads=posix --disable-shared --disable-multilib --enable-__cxa_atexit \&lt;br /&gt;
 --disable-libunwind-exceptions --disable-checking --build=x86_64-redhat-linux --disable-dssi \&lt;br /&gt;
 --enable-plugin --disable-nls --with-cpu=generic --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
make CFLAGS=&#039;-O2&#039; BOOT_CFLAGS=&#039;-O2&#039; BOOT_FLAGS=&#039;-O2&#039; STAGE1_CFLAGS=&#039;-O2&#039; LIBCFLAGS=&#039;-O2&#039; \&lt;br /&gt;
LIBCXXFLAGS=&#039;-O2 -fno-implicit-templates&#039; CXXFLAGS=&#039;-O2&#039; bootstrap-lean&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Building may take a long time. After it is done, installing it is simply a matter of running &amp;lt;pre&amp;gt;make install&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Contents&amp;diff=8165</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Contents&amp;diff=8165"/>
		<updated>2011-01-10T16:09:18Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Editing==&lt;br /&gt;
* [[Help:Editing|Editing pages]]&lt;br /&gt;
* [[Help:Formatting|Formatting]]&lt;br /&gt;
* [[Help:Links|Links]]&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Links&amp;diff=8164</id>
		<title>Help:Links</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Links&amp;diff=8164"/>
		<updated>2011-01-10T16:08:28Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are four sorts of links in MediaWiki: &lt;br /&gt;
# internal links to other pages in the wiki&lt;br /&gt;
# external links to websites&lt;br /&gt;
# [[Help:Interwiki linking|inter-wiki links]] (links to other wikis)&lt;br /&gt;
# inter-language links to other language versions of the same wiki&lt;br /&gt;
&lt;br /&gt;
To add an internal link, enclose the name of the page you want to link to in double square brackets. When you save the page, you&#039;ll see the new link pointing to your page. If the page exists already, it is displayed in blue, empty pages are displayed in red. Selflinks to the current page are not transformed in URLs but displayed in bold.&lt;br /&gt;
&lt;br /&gt;
The first letter of the target page is automatically capitalized and spaces are represented as underscores (typing an underscore in the link will have a similar effect as typing a space, but is not recommended, since the underscore will also be shown in the text).&lt;br /&gt;
&lt;br /&gt;
== How to link ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| |&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
||&#039;&#039;&#039;You type&#039;&#039;&#039;	&lt;br /&gt;
||&#039;&#039;&#039;You get&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Internal link&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[Main Page]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[Main Page]]&lt;br /&gt;
|-&lt;br /&gt;
|Category link&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[:Category:Help]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[:Category:Help]]&lt;br /&gt;
|-&lt;br /&gt;
|Piped link &lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[Main Page|different text]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[Main Page|different text]]&lt;br /&gt;
|-&lt;br /&gt;
|Anchor link &lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[#External links|Anchor link]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[#External links|Anchor link]]&lt;br /&gt;
|-&lt;br /&gt;
|External link&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;http://mediawiki.org&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|http://mediawiki.org&lt;br /&gt;
|-&lt;br /&gt;
|Internal link to image file&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[media:example.jpg]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[media:example.jpg]]&lt;br /&gt;
|-&lt;br /&gt;
|External link,&amp;lt;br /&amp;gt;&lt;br /&gt;
different title&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[http://mediawiki.org MediaWiki]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[http://mediawiki.org MediaWiki]&lt;br /&gt;
|-&lt;br /&gt;
|External link,&amp;lt;br /&amp;gt;&lt;br /&gt;
unnamed&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[http://mediawiki.org]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[http://mediawiki.org]&lt;br /&gt;
|-&lt;br /&gt;
|External link,&amp;lt;br /&amp;gt;&lt;br /&gt;
same host unnamed&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[http://{{SERVERNAME}}/pagename]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[http://{{SERVERNAME}}/pagename]&lt;br /&gt;
|-&lt;br /&gt;
|Interwiki link&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[Wikipedia:MediaWiki]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[[Wikipedia:MediaWiki]]&lt;br /&gt;
|-&lt;br /&gt;
|mailto&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;mailto:info@example.org&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|mailto:info@example.org&lt;br /&gt;
|-&lt;br /&gt;
|mailto unnamed&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[mailto:info@example.org]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[mailto:info@example.org]&lt;br /&gt;
|-&lt;br /&gt;
|mailto named&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[mailto:info@example.org info]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|[mailto:info@example.org info]&lt;br /&gt;
|-&lt;br /&gt;
|redirect&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;#REDIRECT [[Main Page]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
| &amp;amp;rarr; [[Main Page]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Admin tip&#039;&#039;:&lt;br /&gt;
Which protocols (like http:) are allowed for links is controlled by the [[Manual:$wgUrlProtocols|$wgUrlProtocols]] setting. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Admin tip&#039;&#039;:&lt;br /&gt;
To remove the &#039;external link image&#039; from next to each of the external links, add the following to the page located at &amp;lt;code&amp;gt;MediaWiki:Monobook.css&amp;lt;/code&amp;gt; on your wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#bodyContent a.external,&lt;br /&gt;
#bodyContent a[href ^=&amp;quot;gopher://&amp;quot;] {&lt;br /&gt;
        background: none;&lt;br /&gt;
        padding-right: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Formatting&amp;diff=8163</id>
		<title>Help:Formatting</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Formatting&amp;diff=8163"/>
		<updated>2011-01-10T16:07:39Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can format your text using wiki markup. This consists of normal characters like asterisks, single quotes or equation marks which have a special function in the wiki, sometimes depending on their position. For example, to format a word in &#039;&#039;italic&#039;&#039;, you include it in two single quotes like &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;this&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Text formatting markup ==&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;30%&amp;quot; |&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| |&#039;&#039;&#039;You type&#039;&#039;&#039;	&lt;br /&gt;
| |&#039;&#039;&#039;You get&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;applies anywhere&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Italic text&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;italic&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&#039;&#039;italic&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Bold text&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&#039;bold&#039;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&#039;&#039;&#039;bold&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Bold and italic&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&#039;&#039;&#039;bold &amp;amp; italic&#039;&#039;&#039;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&#039;&#039;&#039;&#039;&#039;bold &amp;amp; italic&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Escape wiki markup&lt;br /&gt;
|&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;no &#039;&#039;markup&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;no &#039;&#039;markup&#039;&#039;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;only at the beginning of the line&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Headings of different levels&amp;lt;br/&amp;gt;Use of a heading created by single equal signs is discouraged as it appears with the same formatting and size as the page title, which can be confusing. An article with four or more headings will automatically create a [http://en.wikipedia.org/wiki/Wikipedia:Section#Table_of_contents_.28TOC.29 table of contents].&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;==level 1==&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;===level 2===&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;====level 3====&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;=====level 4=====&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==Level 1==&lt;br /&gt;
===Level 2===&lt;br /&gt;
====Level 3====&lt;br /&gt;
=====Level 4=====&lt;br /&gt;
|-&lt;br /&gt;
|Horizontal rule&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;----&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
----&lt;br /&gt;
|-&lt;br /&gt;
|Bullet list&lt;br /&gt;
|&lt;br /&gt;
&amp;amp;#42; one&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;amp;#42; two&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;amp;#42; three&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;amp;#42;&amp;amp;#42; three and one-third&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;amp;#42;&amp;amp;#42; three and two-thirds&amp;lt;br&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
* one&lt;br /&gt;
* two&lt;br /&gt;
* three&lt;br /&gt;
** three and one-third&lt;br /&gt;
** three and two-thirds&lt;br /&gt;
|-&lt;br /&gt;
|Numbered list&lt;br /&gt;
|&lt;br /&gt;
&amp;amp;#35; one&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35; two&amp;lt;nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/nowiki&amp;gt;spanning several lines&amp;lt;nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/nowiki&amp;gt;without breaking the numbering&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35; three&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35;&amp;amp;#35; three point one&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35;&amp;amp;#35; three point two&amp;lt;br /&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
# one&lt;br /&gt;
# two&amp;lt;br&amp;gt;spanning several lines&amp;lt;br&amp;gt;without breaking the numbering&lt;br /&gt;
# three&lt;br /&gt;
## three point one&lt;br /&gt;
## three point two&lt;br /&gt;
|-&lt;br /&gt;
| Mixture of bulleted&amp;lt;br /&amp;gt; and numbered lists&lt;br /&gt;
|&lt;br /&gt;
&amp;amp;#35; one&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35; two&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35;&amp;amp;#42; two point one&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#35;&amp;amp;#42; two point two&amp;lt;br /&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
# one&lt;br /&gt;
# two&lt;br /&gt;
#* two point one&lt;br /&gt;
#* two point two&lt;br /&gt;
|-&lt;br /&gt;
|Definition list&lt;br /&gt;
|&lt;br /&gt;
&amp;amp;#59;Definition&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#58;item 1&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;#58;item 2&amp;lt;br /&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
;Definition&lt;br /&gt;
:item 1&lt;br /&gt;
:item 2&lt;br /&gt;
|-&lt;br /&gt;
|Preformatted text&lt;br /&gt;
|&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;preformatted text is done with&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;a space at the&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;beginning of the line&amp;lt;br /&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
 preformatted text is done with&lt;br /&gt;
 a space at the &lt;br /&gt;
 beginning of the line&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Notes: &amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Paragraphs ==&lt;br /&gt;
&lt;br /&gt;
MediaWiki ignores normal line breaks. To start a new paragraph, leave an empty line. You can also start a new line with the HTML tags &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;br&amp;gt; or &amp;lt;br/&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== HTML ==&lt;br /&gt;
&lt;br /&gt;
Some [[w:HTML|HTML]] tags are allowed in MediaWiki, for example &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;code&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;font&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Admin tip&#039;&#039; : If you trust your users you can allow full HTML by setting &amp;lt;code&amp;gt;[[Manual:$wgRawHtml|$wgRawHtml]] = true;&amp;lt;/code&amp;gt; in [[Manual:LocalSettings.php|LocalSettings.php]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other formatting ==&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:WikiProject_User_Page_Help/Do-It-Yourself/Formatting_Text#Underlining More Formatting from Wikipedia]&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Contents&amp;diff=8162</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Contents&amp;diff=8162"/>
		<updated>2011-01-10T16:06:30Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Editing==&lt;br /&gt;
* [[Help:Editing|Editing pages]]&lt;br /&gt;
* [[Help:Formatting|Formatting]]&lt;br /&gt;
* [[Help:Links|Links]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customizing===&lt;br /&gt;
* [[Help:Preferences|Preferences]]&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Editing&amp;diff=8161</id>
		<title>Help:Editing</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Help:Editing&amp;diff=8161"/>
		<updated>2011-01-10T16:04:45Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOEDITSECTION__&lt;br /&gt;
To edit a page, click on the &#039;&#039;&#039;edit&#039;&#039;&#039; or &#039;&#039;&#039;edit this page&#039;&#039;&#039; links at the top of the page. To edit an individual section, click on any of the floating &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;[edit]&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039; links next to a section heading.&lt;br /&gt;
&lt;br /&gt;
Once you&#039;ve made a change, please click on preview to scan for any misspellings, punctuation errors, or other problems before saving the page.&lt;br /&gt;
&lt;br /&gt;
== Wiki markup ==&lt;br /&gt;
The wiki markup is exceedingly simple once you get a firm grasp on it. Below you&#039;ll see a list of common effects, and how to do them.&lt;br /&gt;
&lt;br /&gt;
=== Basic text formatting ===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can &#039;&#039;italicize text&#039;&#039; by putting 2 &lt;br /&gt;
apostrophes on each side. &lt;br /&gt;
&lt;br /&gt;
3 apostrophes will bold &#039;&#039;&#039;the text&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
5 apostrophes will bold and italicize &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;the text&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
(Using 4 apostrophes doesn&#039;t do anything special -- &amp;lt;br&amp;gt; there are just &#039;&#039;&#039;&#039; left over ones&#039;&#039;&#039;&#039; that are included as part of the text.)&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can &#039;&#039;italicize text&#039;&#039; by putting 2 &lt;br /&gt;
apostrophes on each side. &lt;br /&gt;
&lt;br /&gt;
3 apostrophes will bold &#039;&#039;&#039;the text&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
5 apostrophes will bold and italicize &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;the text&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
(Using 4 apostrophes doesn&#039;t do anything&lt;br /&gt;
special -- &amp;lt;br&amp;gt; there are just &#039;&#039;&#039;&#039; left&lt;br /&gt;
over ones&#039;&#039;&#039;&#039; that are included as part of the text.)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
A single new line&lt;br /&gt;
generally has no effect on the layout.&lt;br /&gt;
These can be used to separate&lt;br /&gt;
sentences within a paragraph.&lt;br /&gt;
Some editors find that this aids editing&lt;br /&gt;
and improves the &#039;&#039;diff&#039;&#039; function&lt;br /&gt;
(used internally to compare&lt;br /&gt;
different versions of a page).&lt;br /&gt;
&lt;br /&gt;
But an empty line&lt;br /&gt;
starts a new paragraph.&lt;br /&gt;
&lt;br /&gt;
When used in a list, a newline &#039;&#039;does&#039;&#039; affect the layout ([[#lists|see below]]).&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
A single new line&lt;br /&gt;
generally has no effect on the layout.&lt;br /&gt;
These can be used to separate&lt;br /&gt;
sentences within a paragraph.&lt;br /&gt;
Some editors find that this aids editing&lt;br /&gt;
and improves the &#039;&#039;diff&#039;&#039; function&lt;br /&gt;
(used internally to compare&lt;br /&gt;
different versions of a page).&lt;br /&gt;
&lt;br /&gt;
But an empty line&lt;br /&gt;
starts a new paragraph.&lt;br /&gt;
&lt;br /&gt;
When used in a list, a newline &#039;&#039;does&#039;&#039; &lt;br /&gt;
affect the layout ([[#lists|see below]]).&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can break lines&amp;lt;br&amp;gt;&lt;br /&gt;
without a new paragraph.&amp;lt;br&amp;gt;&lt;br /&gt;
Please use this sparingly.&lt;br /&gt;
&lt;br /&gt;
Please do not start a link or &#039;&#039;italics&#039;&#039; or &#039;&#039;&#039;bold&#039;&#039;&#039; on one line and close it on the next.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can break lines&amp;lt;br&amp;gt;&lt;br /&gt;
without a new paragraph.&amp;lt;br&amp;gt;&lt;br /&gt;
Please use this sparingly.&lt;br /&gt;
&lt;br /&gt;
Please do not start a link or &lt;br /&gt;
&#039;&#039;italics&#039;&#039; or &#039;&#039;&#039;bold&#039;&#039;&#039; on one line &lt;br /&gt;
and close it on the next.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You should &amp;quot;sign&amp;quot; your comments on talk pages: &amp;lt;br&amp;gt;&lt;br /&gt;
- Three tildes gives your user name: [[User:Fyren|Fyren]] &amp;lt;br&amp;gt;&lt;br /&gt;
- Four tildes give your user name plus date/time: [[User:Fyren|Fyren]] 10:06, 30 September 2006 (CDT) &amp;lt;br&amp;gt;&lt;br /&gt;
- Five tildes gives the date/time alone: 10:06, 30 September 2006 (CDT) &amp;lt;br&amp;gt;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You should &amp;quot;sign&amp;quot; your comments &lt;br /&gt;
on talk pages: &amp;lt;br&amp;gt;&lt;br /&gt;
- Three tildes gives your user&lt;br /&gt;
name: ~~~ &amp;lt;br&amp;gt;&lt;br /&gt;
- Four tildes give your user &lt;br /&gt;
name plus date/time: ~~~~ &amp;lt;br&amp;gt;&lt;br /&gt;
- Five tildes gives the &lt;br /&gt;
date/time alone: ~~~~~ &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== HTML tags ===&lt;br /&gt;
You can use some &#039;&#039;&#039;HTML tags&#039;&#039;&#039; too. However, you should avoid HTML in favor of Wiki markup whenever possible.  The following HTML tags are allowed by MediaWiki 1.7.1 (but not all may be supported by your browser):&lt;br /&gt;
*b, i, u, font, big, small, sub, sup, em, s, strike, strong, del, ins&lt;br /&gt;
*br, hr&lt;br /&gt;
*h1, h2, h3, h4, h5, h6&lt;br /&gt;
*cite, div, center, caption, span, p, tt, pre, code, var, blockquote&lt;br /&gt;
*ol, ul, li, dl, dt, dd&lt;br /&gt;
*table, tr, td, th&lt;br /&gt;
*ruby, rt, rb, rp&lt;br /&gt;
*!--, --&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Put text in a &amp;lt;tt&amp;gt;typewriter&lt;br /&gt;
font&amp;lt;/tt&amp;gt;. The same font is &lt;br /&gt;
generally used for &amp;lt;code&amp;gt;&lt;br /&gt;
computer code&amp;lt;/code&amp;gt;.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Put text in a &amp;lt;tt&amp;gt;typewriter&lt;br /&gt;
font&amp;lt;/tt&amp;gt;. The same font is &lt;br /&gt;
generally used for &amp;lt;code&amp;gt;&lt;br /&gt;
computer code&amp;lt;/code&amp;gt;.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;strike&amp;gt;Strike out&amp;lt;/strike&amp;gt;&lt;br /&gt;
or &amp;lt;u&amp;gt;underline&amp;lt;/u&amp;gt; text,&lt;br /&gt;
or write it &amp;lt;span style=&lt;br /&gt;
&amp;quot;font-variant:small-caps&amp;quot;&amp;gt;&lt;br /&gt;
in small caps&amp;lt;/span&amp;gt;.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;strike&amp;gt;Strike out&amp;lt;/strike&amp;gt;&lt;br /&gt;
or &amp;lt;u&amp;gt;underline&amp;lt;/u&amp;gt; text,&lt;br /&gt;
or write it &amp;lt;span style=&lt;br /&gt;
&amp;quot;font-variant:small-caps&amp;quot;&amp;gt;&lt;br /&gt;
in small caps&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Superscripts and subscripts:&lt;br /&gt;
X&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;, H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Superscripts and subscripts:&lt;br /&gt;
X&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;, H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;center&amp;gt;Centered text&amp;lt;/center&amp;gt;&lt;br /&gt;
* Please note the American spelling of &amp;quot;center&amp;quot;.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;Centered text&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
The &#039;&#039;&#039;blockquote&#039;&#039;&#039; command will indent &lt;br /&gt;
both margins when needed instead of the &lt;br /&gt;
left margin only as the colon does.  &lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
The &#039;&#039;&#039;blockquote&#039;&#039;&#039; command will indent &lt;br /&gt;
both margins when needed instead of the &lt;br /&gt;
left margin only as the colon does.  &lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Invisible comments to editors (&amp;amp;lt;!-- --&amp;amp;gt;) &lt;br /&gt;
only appear while editing the page.&lt;br /&gt;
&amp;lt;!-- Note to editors: blah blah blah. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* If you wish to make comments to the public, you should usually use the article&#039;s talk page.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Invisible comments to editors (&amp;amp;amp;lt;!-- --&amp;amp;amp;gt;)&lt;br /&gt;
only appear while editing the page.&lt;br /&gt;
&amp;lt;!-- Note to editors: blah blah blah. --&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Organizing your writing ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:150%;border-bottom:1px solid #000000;&amp;quot;&amp;gt;Section headings&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Headings&#039;&#039; organize your writing into &lt;br /&gt;
sections. The wiki software can automatically &lt;br /&gt;
generate a table of contents from them.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:132%;font-weight:bold;&amp;quot;&amp;gt;Subsection&amp;lt;/div&amp;gt;&lt;br /&gt;
Using more equals signs creates a subsection.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;A smaller subsection&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don&#039;t skip levels, like from two to four equals signs.&lt;br /&gt;
&lt;br /&gt;
Start with 2 equals signs not 1 because 1 creates H1 tags which should be reserved for page title.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
== Section headings ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Headings&#039;&#039; organize your writing into &lt;br /&gt;
sections. The Wiki software can automatically &lt;br /&gt;
generate a table of contents from them.&lt;br /&gt;
&lt;br /&gt;
=== Subsection ===&lt;br /&gt;
&lt;br /&gt;
Using more equals signs creates a subsection.&lt;br /&gt;
&lt;br /&gt;
==== A smaller subsection ====&lt;br /&gt;
&lt;br /&gt;
Don&#039;t skip levels, &lt;br /&gt;
like from two to four equals signs.&lt;br /&gt;
&lt;br /&gt;
Start with 2 equals signs not 1 &lt;br /&gt;
because 1 creates H1 tags&lt;br /&gt;
which should be reserved for page title.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|- id=&amp;quot;lists&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;Unordered lists&#039;&#039; are easy to do:&lt;br /&gt;
** Start every line with a star.&lt;br /&gt;
*** More stars indicate a deeper level.&lt;br /&gt;
*: Previous item continues.&lt;br /&gt;
** A newline&lt;br /&gt;
* in a list  &lt;br /&gt;
marks the end of the list.&lt;br /&gt;
*Of course you can start again.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
* &#039;&#039;Unordered lists&#039;&#039; are easy to do:&lt;br /&gt;
** Start every line with a star.&lt;br /&gt;
*** More stars indicate a deeper level.&lt;br /&gt;
*: Previous item continues.&lt;br /&gt;
** A newline&lt;br /&gt;
* in a list  &lt;br /&gt;
marks the end of the list.&lt;br /&gt;
* Of course you can start again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
# &#039;&#039;Numbered lists&#039;&#039; are:&lt;br /&gt;
## Very organized&lt;br /&gt;
## Easy to follow&lt;br /&gt;
A newline marks the end of the list.&lt;br /&gt;
# New numbering starts with 1.&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
# &#039;&#039;Numbered lists&#039;&#039; are:&lt;br /&gt;
## Very organized&lt;br /&gt;
## Easy to follow&lt;br /&gt;
A newline marks the end of the list.&lt;br /&gt;
# New numbering starts with 1.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Here&#039;s a &#039;&#039;definition list&#039;&#039;:&lt;br /&gt;
; Word : Definition of the word&lt;br /&gt;
; A longer phrase needing definition&lt;br /&gt;
: Phrase defined&lt;br /&gt;
; A word : Which has a definition&lt;br /&gt;
: Also a second one&lt;br /&gt;
: And even a third&lt;br /&gt;
&lt;br /&gt;
Begin with a semicolon. One item per line; &lt;br /&gt;
a newline can appear before the colon, but &lt;br /&gt;
using a space before the colon improves &lt;br /&gt;
parsing.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Here&#039;s a &#039;&#039;definition list&#039;&#039;:&lt;br /&gt;
; Word : Definition of the word&lt;br /&gt;
; A longer phrase needing definition&lt;br /&gt;
: Phrase defined&lt;br /&gt;
; A word : Which has a definition&lt;br /&gt;
: Also a second one&lt;br /&gt;
: And even a third&lt;br /&gt;
&lt;br /&gt;
Begin with a semicolon. One item per line; &lt;br /&gt;
a newline can appear before the colon, but &lt;br /&gt;
using a space before the colon improves &lt;br /&gt;
parsing.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* You can even do mixed lists&lt;br /&gt;
*# and nest them&lt;br /&gt;
*# inside each other&lt;br /&gt;
*#* or break lines&amp;lt;br&amp;gt;in lists.&lt;br /&gt;
*#; definition lists&lt;br /&gt;
*#: can be &lt;br /&gt;
*#:; nested : too&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
* You can even do mixed lists&lt;br /&gt;
*# and nest them&lt;br /&gt;
*# inside each other&lt;br /&gt;
*#* or break lines&amp;lt;br&amp;gt;in lists.&lt;br /&gt;
*#; definition lists&lt;br /&gt;
*#: can be &lt;br /&gt;
*#:; nested : too&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
: A colon (:) indents a line or paragraph.&lt;br /&gt;
A newline starts a new paragraph. &amp;lt;br&amp;gt;&lt;br /&gt;
Often used for discussion on talk pages to&amp;lt;br&amp;gt;&lt;br /&gt;
show the flow of a conversation.&lt;br /&gt;
: We use 1 colon to indent once.&lt;br /&gt;
:: We use 2 colons to indent twice.&lt;br /&gt;
::: 3 colons to indent 3 times, and so on.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
: A colon (:) indents a line or paragraph.&lt;br /&gt;
A newline starts a new paragraph. &amp;lt;br&amp;gt;&lt;br /&gt;
Often used for discussion on talk pages to&amp;lt;br&amp;gt;&lt;br /&gt;
show the flow of a conversation.&lt;br /&gt;
&lt;br /&gt;
: We use 1 colon to indent once.&lt;br /&gt;
:: We use 2 colons to indent twice.&lt;br /&gt;
::: 3 colons to indent 3 times, and so on.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can make horizontal dividing lines (----)&lt;br /&gt;
to separate text.&lt;br /&gt;
----&lt;br /&gt;
But you should usually use sections instead,&lt;br /&gt;
so that they go in the table of contents.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can make horizontal dividing lines (----)&lt;br /&gt;
to separate text.&lt;br /&gt;
----&lt;br /&gt;
But you should usually use sections instead,&lt;br /&gt;
so that they go in the table of contents.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Links ===&lt;br /&gt;
&lt;br /&gt;
You will often want to make clickable &#039;&#039;links&#039;&#039; to other pages.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Here&#039;s a link to a page named [[program]].&lt;br /&gt;
You can even say [[program]]s&lt;br /&gt;
and the link will show up correctly.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Here&#039;s a link to a page named [[program]].&lt;br /&gt;
You can even say [[program]]s&lt;br /&gt;
and the link will show up correctly.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can put formatting around a link.&lt;br /&gt;
Example: &#039;&#039;[[CBCBWiki]]&#039;&#039;.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can put formatting around a link.&lt;br /&gt;
Example: &#039;&#039;[[CBCBWiki]]&#039;&#039;.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
The &#039;&#039;first letter&#039;&#039; of articles is automatically&lt;br /&gt;
capitalized, so [[software]] goes to the same place&lt;br /&gt;
as [[Software]]. Capitalization matters after the&lt;br /&gt;
first letter.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
The &#039;&#039;first letter&#039;&#039; of articles is automatically&lt;br /&gt;
capitalized, so [[software]] goes to the same place&lt;br /&gt;
as [[Software]]. Capitalization matters after the&lt;br /&gt;
first letter.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[Software bugs]] is a page that doesn&#039;t exist&lt;br /&gt;
yet. You could create it by clicking on the link.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
[[Software bugs]] is a page that doesn&#039;t exist&lt;br /&gt;
yet. You could create it by clicking on the link.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can link to a page section by its title:&lt;br /&gt;
&lt;br /&gt;
*[[Software#Notes]].&lt;br /&gt;
&lt;br /&gt;
If multiple sections have the same title, add&lt;br /&gt;
a number. [[#Example section 3]] goes to the&lt;br /&gt;
third section named &amp;quot;Example section&amp;quot;.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can link to a page section by its title:&lt;br /&gt;
&lt;br /&gt;
*[[Software#Notes]].&lt;br /&gt;
&lt;br /&gt;
If multiple sections have the same title, add&lt;br /&gt;
a number. [[#Example section 3]] goes to the&lt;br /&gt;
third section named &amp;quot;Example section&amp;quot;.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can make a link point to a different place&lt;br /&gt;
with a piped link. Put the link&lt;br /&gt;
target first, then the pipe character &amp;quot;|&amp;quot;, then&lt;br /&gt;
the link text.&lt;br /&gt;
&lt;br /&gt;
*[[Software|Our software article]]&lt;br /&gt;
*[[Program#Notes|Program notes]]&lt;br /&gt;
&lt;br /&gt;
Or you can use the &amp;quot;pipe trick&amp;quot; so that text in&lt;br /&gt;
parentheses does not appear. &lt;br /&gt;
&lt;br /&gt;
*[[Notes (Software Tips)|Notes]]&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
You can make a link point to a different place&lt;br /&gt;
with a piped link. Put the link&lt;br /&gt;
target first, then the pipe character &amp;quot;|&amp;quot;, then&lt;br /&gt;
the link text.&lt;br /&gt;
&lt;br /&gt;
*[[Software|Our software article]]&lt;br /&gt;
*[[Program#Notes|Program notes]]&lt;br /&gt;
&lt;br /&gt;
Or you can use the &amp;quot;pipe trick&amp;quot; so that text in&lt;br /&gt;
parentheses does not appear. &lt;br /&gt;
&lt;br /&gt;
*[[Notes (Software Tips)|Notes]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can make an external link just by typing a URL:&lt;br /&gt;
http://www.cbcb.umd.edu&lt;br /&gt;
&lt;br /&gt;
You can give it a title:&lt;br /&gt;
[http://www.cbcb.umd.edu CBCB Home Page]&lt;br /&gt;
&lt;br /&gt;
Or leave the title blank:&lt;br /&gt;
[http://www.cbcb.umd.edu]&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
You can make an external link just by typing a URL:&lt;br /&gt;
http://www.cbcb.umd.edu&lt;br /&gt;
&lt;br /&gt;
You can give it a title:&lt;br /&gt;
[http://www.cbcb.umd.edu CBCB Page]&lt;br /&gt;
&lt;br /&gt;
Or leave the title blank:&lt;br /&gt;
[http://www.cbcb.umd.edu]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Linking to an e-mail address works the same way:&lt;br /&gt;
mailto:someone@domain.com or &lt;br /&gt;
[mailto:someone@domain.com someone]&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linking to an e-mail address works the same way:&lt;br /&gt;
mailto:someone@domain.com or &lt;br /&gt;
[mailto:someone@domain.com someone]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can redirect the user to another page.&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
#REDIRECT [[Software]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Category links do not show up in line&lt;br /&gt;
but instead at page bottom &#039;&#039;and cause the page to be&lt;br /&gt;
listed in the category.&#039;&#039;&lt;br /&gt;
[[Category:Helping out]]&lt;br /&gt;
&lt;br /&gt;
Add an extra colon to &#039;&#039;link&#039;&#039; to a category in line&lt;br /&gt;
without causing the page to be listed in the category:&lt;br /&gt;
[[:Category:Helping out]]&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Category links do not show up in line&lt;br /&gt;
but instead at page bottom &#039;&#039;and cause the page to be&lt;br /&gt;
listed in the category.&#039;&#039;&lt;br /&gt;
[[Category:Helping out]]&lt;br /&gt;
&lt;br /&gt;
Add an extra colon to &#039;&#039;link&#039;&#039; to a category in line&lt;br /&gt;
without causing the page to be listed in the category:&lt;br /&gt;
[[:Category:Helping out]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
You can insert links to other specific wikis with an Interwiki link. &lt;br /&gt;
These will appear similar to regular wiki-links, but will direct the &lt;br /&gt;
browser to another wiki and display it&#039;s page on the provided topic.&lt;br /&gt;
&lt;br /&gt;
A link to Wikipedia&#039;s [[Wikipedia:Indiana Jones|Indiana Jones]] article.&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Links to Wikipedia, the WWW encyclopedia:&lt;br /&gt;
[[Wikipedia:Indiana Jones|Indiana Jones]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Just show what I typed===&lt;br /&gt;
&lt;br /&gt;
A few different kinds of formatting will tell the wiki to display things as you typed them.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
The nowiki tag ignores &lt;br /&gt;
[[wiki]] &#039;&#039;markup&#039;&#039;.&lt;br /&gt;
It reformats text by &lt;br /&gt;
removing&lt;br /&gt;
newlines    and multiple&lt;br /&gt;
 spaces.&lt;br /&gt;
It still interprets special&lt;br /&gt;
characters: &amp;amp;rarr;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;nowiki&amp;amp;gt;&lt;br /&gt;
The nowiki tag ignores &lt;br /&gt;
[[wiki]] &#039;&#039;markup&#039;&#039;.&lt;br /&gt;
It reformats text by &lt;br /&gt;
removing&lt;br /&gt;
newlines    and multiple&lt;br /&gt;
 spaces.&lt;br /&gt;
It still interprets special&lt;br /&gt;
characters: &amp;amp;amp;rarr;&lt;br /&gt;
&amp;amp;lt;/nowiki&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
The pre tag ignores [[wiki]]&lt;br /&gt;
 &#039;&#039;markup&#039;&#039;.&lt;br /&gt;
It also doesn&#039;t     reformat&lt;br /&gt;
 text.&lt;br /&gt;
It still interprets special&lt;br /&gt;
characters: &amp;amp;rarr;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;pre&amp;amp;gt;&lt;br /&gt;
The pre tag ignores [[wiki]]&lt;br /&gt;
 &#039;&#039;markup&#039;&#039;.&lt;br /&gt;
It also doesn&#039;t     reformat&lt;br /&gt;
 text.&lt;br /&gt;
It still interprets special&lt;br /&gt;
characters: &amp;amp;amp;rarr;&lt;br /&gt;
&amp;amp;lt;/pre&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Leading spaces are another way to preserve formatting.&lt;br /&gt;
&lt;br /&gt;
 Putting a space at the&lt;br /&gt;
 beginning of each&lt;br /&gt;
 line stops the text   &lt;br /&gt;
 from being&lt;br /&gt;
 reformatted.  It still &lt;br /&gt;
 interprets [[wiki]]&lt;br /&gt;
 &#039;&#039;markup&#039;&#039; and special&lt;br /&gt;
 characters: &amp;amp;rarr;&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
Leading spaces are another way&lt;br /&gt;
to preserve formatting.&lt;br /&gt;
&lt;br /&gt;
 Putting a space at the&lt;br /&gt;
 beginning of each&lt;br /&gt;
 line stops the text   &lt;br /&gt;
 from being&lt;br /&gt;
 reformatted.  It still &lt;br /&gt;
 interprets [[wiki]]&lt;br /&gt;
 &#039;&#039;markup&#039;&#039; and special&lt;br /&gt;
 characters: &amp;amp;amp;rarr;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Images and tables===&lt;br /&gt;
&lt;br /&gt;
After uploading, just enter the filename, highlight it and press the &amp;quot;embedded image&amp;quot;-button of the edit toolbar.&lt;br /&gt;
&lt;br /&gt;
This syntax will embed an image: &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;[[Image:filename.png]]&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
See [[wikipedia:help:tables|Wikipedia&#039;s table help page]] for more information about table syntax.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;1000&amp;quot;|What it looks like&lt;br /&gt;
!width=&amp;quot;500&amp;quot;|What you type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
A picture, including alternate text:&lt;br /&gt;
&lt;br /&gt;
[[Image:button_math.png|Square root button]]&lt;br /&gt;
&lt;br /&gt;
You can put the image in a frame with a caption:&lt;br /&gt;
[[Image:button_math.png|frame|Square root button]]&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
A picture, including alternate text:&lt;br /&gt;
&lt;br /&gt;
[[Image:button_math.png|Square root button]]&lt;br /&gt;
&lt;br /&gt;
The image in a frame with a caption:&lt;br /&gt;
[[Image:button_math.png|frame|Square root button]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
A link to this Wiki&#039;s page for the image:&lt;br /&gt;
[[:Image:button_math.png]]&lt;br /&gt;
&lt;br /&gt;
Or a link directly to the image itself:&lt;br /&gt;
[[Media:button_math.png]]&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
A link to this Wiki&#039;s page for the image:&lt;br /&gt;
[[:Image:button_math.png]]&lt;br /&gt;
&lt;br /&gt;
Or a link directly to the image itself:&lt;br /&gt;
[[Media:button_math.png]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
! This&lt;br /&gt;
! is&lt;br /&gt;
|- &lt;br /&gt;
| a&lt;br /&gt;
| table&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; &lt;br /&gt;
cellpadding=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
! This&lt;br /&gt;
! is&lt;br /&gt;
|- &lt;br /&gt;
| a&lt;br /&gt;
| table&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Templates===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Templates&#039;&#039;&#039; are segments of wiki markup that are meant to be copied automatically (&amp;quot;transcluded&amp;quot;/&amp;quot;included&amp;quot;) into a page.&lt;br /&gt;
You add them by putting the template&#039;s name in &amp;lt;nowiki&amp;gt;{{double braces}}&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Some templates take &#039;&#039;parameters&#039;&#039;, as well, which you separate with the pipe character.&lt;br /&gt;
&lt;br /&gt;
See [http://en.wikipedia.org/wiki/Help:Template Wikipedia&#039;s template help page] for more information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Saving Changes ==&lt;br /&gt;
Once you&#039;ve edited in your changes to a page, make sure to use the &amp;quot;show preview&amp;quot; button to view your changes. Try to read through your changes as it helps you notice any typos or accidental mistakes. Preferably, also double check any wiki links you&#039;ve added in, in case they are pointing to either non-existent pages (unless intentional) or pointing to the wrong page.&lt;br /&gt;
&lt;br /&gt;
Once you have verified your changes, fill in the &amp;quot;summary&amp;quot; text field. It is used to briefly explain the changes you have made. If there is already a bit of text inside it enclosed within /* and */, it means you&#039;re editing a section on the page. Simply add your explanation after that text to mark the section you added your changes to.&lt;br /&gt;
&lt;br /&gt;
Before saving, there are two checkboxes that you can use. The first is to mark an edit as a minor edit. A minor edit is loosely defined as a change that does not really add new content to a page, such as fixing typos, rewriting sentences, or small formatting changes. Changes like non-trivial notes that identify behavior or adding tips are not minor edits. As a rule of thumb, if it&#039;s an edit that a user who re-reads the page doesn&#039;t really gain any new useful information, then it&#039;s a minor edit.&lt;br /&gt;
&lt;br /&gt;
The second checkbox is for registered users who want to &amp;quot;watch&amp;quot; the page. If checked, the page will be added to that user&#039;s watch list, and any further changes will be bolded if the user views his or her own list.&lt;br /&gt;
&lt;br /&gt;
Finally, click on &amp;quot;save page&amp;quot; to commit and save the changes.&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=User:Gpertea&amp;diff=8160</id>
		<title>User:Gpertea</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=User:Gpertea&amp;diff=8160"/>
		<updated>2011-01-10T15:37:13Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Various Notes and Hints  =&lt;br /&gt;
* [[gpertea_linux|Linux]] &lt;br /&gt;
* [[gpertea_gcc|GCC/G++]] &lt;br /&gt;
* [[gpertea_perl|Perl]]&lt;br /&gt;
* [[gpertea_cpp|C++]]&lt;br /&gt;
&lt;br /&gt;
* [[gpertea_gridx|Gridx Usage]]&lt;br /&gt;
&lt;br /&gt;
* [[gpertea_todo|ToDo list]]&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Communal_Software&amp;diff=7994</id>
		<title>Communal Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Communal_Software&amp;diff=7994"/>
		<updated>2010-12-01T21:23:00Z</updated>

		<summary type="html">&lt;p&gt;Gpertea: /* Core Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
CBCB users do not have root access on their machines or the communal servers. Communal CBCB software is therefore typically installed in&lt;br /&gt;
 /fs/sz-user-supported/&lt;br /&gt;
There are two primary subdirectories which differ by architecture. For the most part, 32bit software is installed in&lt;br /&gt;
 /fs/sz-user-supported/Linux-i686/&lt;br /&gt;
while 64bit software is installed in&lt;br /&gt;
 /fs/sz-user-supported/Linux-x86_64/&lt;br /&gt;
The appropriate subdirectory is typically dynamically chosen by embedding&lt;br /&gt;
 /fs/sz-user-supported/`uname`-`uname -m`&lt;br /&gt;
in a user&#039;s path variables in their bashrc/tcshrc file.&lt;br /&gt;
&lt;br /&gt;
Installing software to these directories and updating a user&#039;s path can be tricky. For this reason, many users choose to maintain specialty software in personal directories.&lt;br /&gt;
&lt;br /&gt;
== Core Software ==&lt;br /&gt;
&lt;br /&gt;
The latest versions of the most frequently used CBCB software is installed under&lt;br /&gt;
  /fs/szdevel/core-cbcb-software/&lt;br /&gt;
and follows a directory structure similar to&lt;br /&gt;
  /fs/sz-user-supported/&lt;br /&gt;
The software is installed and maintained by the cbcb-staff group.&lt;br /&gt;
&lt;br /&gt;
Software list: &lt;br /&gt;
  &#039;&#039;&#039;Name                      version&#039;&#039;&#039;&lt;br /&gt;
  Bio::Perl &lt;br /&gt;
  Biopython&lt;br /&gt;
  Bowtie                    0.12.7&lt;br /&gt;
  Celera Assembler          6.1&lt;br /&gt;
  gcc                       4.5.1&lt;br /&gt;
  GMap,GSnap                2010-07-27&lt;br /&gt;
  Java (JRE only)           1.6.0_22&lt;br /&gt;
  NCBI blast&lt;br /&gt;
  Newbler                   2.5 &lt;br /&gt;
  R&lt;br /&gt;
  Samtools                  0.1.9&lt;br /&gt;
  SOAPdeNovo                1.04&lt;br /&gt;
  Velvet                    1.0.13&lt;br /&gt;
&lt;br /&gt;
== Carl&#039;s World ==&lt;br /&gt;
In an attempt to solve many software installation related headaches for his lab members, Carl Kingsford has created an alternate environment called &amp;quot;Carl&#039;s World&amp;quot; which contains many programs and modules frequently used by his lab members. Little else is known about Carl&#039;s World, but rumor has it that if you ask nicely, he will let you in. It is important to note that Carl&#039;s World is designed and maintained specifically for use by Carl&#039;s lab members, and there are therefore many common and useful software packages not included in Carl&#039;s World. It may therefore be necessary to modify YOUR OWN bashrc file once you have joined, but be warned that attempting to modify Carl&#039;s World itself is a sure way to lose your membership.&lt;br /&gt;
&lt;br /&gt;
== Planned Maintenance (Summer 2010) ==&lt;br /&gt;
The Pop lab is currently planning to update much of the communal software installed in sz-user-supported over the Summer of 2010. So far this list includes:&lt;br /&gt;
* [http://sourceforge.net/apps/mediawiki/amos/index.php?title=AMOS AMOS] -- Already installed&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/staff/tao/URLAPI/blastall/index.html blastall 2.2.23] -- May not be worth upgrading from 2.2.18. Will look at release notes.&lt;br /&gt;
* [http://hmmer.janelia.org/ HMMer3] -- Installed.&lt;br /&gt;
** [http://pfam.sanger.ac.uk/ Pfam 24.0]&lt;br /&gt;
* PERL -- May attempt to standardize default version across servers.&lt;br /&gt;
** [http://www.bioperl.org/wiki/Main_Page BioPERL]&lt;br /&gt;
* Python -- May attempt to standardize default version across servers.&lt;br /&gt;
** [http://biopython.org/wiki/Main_Page BioPython]&lt;br /&gt;
*** [http://numpy.scipy.org/ NumPy]&lt;br /&gt;
*** [http://www.reportlab.com/software/opensource/ ReportLab]&lt;br /&gt;
Please feel free to contact Ted Gibbons at tgibbons@umd.edu to make suggestions or express concerns about tampering with the communal software installations and the corresponding paths in the communal CBCB bashrc file.&lt;/div&gt;</summary>
		<author><name>Gpertea</name></author>
	</entry>
</feed>