<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.redbrick.dcu.ie/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Beimear</id>
	<title>Redbrick Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.redbrick.dcu.ie/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Beimear"/>
	<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/Special:Contributions/Beimear"/>
	<updated>2026-05-22T08:13:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.8</generator>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Programming_On_Redbrick&amp;diff=10372</id>
		<title>Programming On Redbrick</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Programming_On_Redbrick&amp;diff=10372"/>
		<updated>2012-11-05T10:34:59Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a general introduction to compiling and running Java, C and C++ programs on redbrick. It is assumed that you already know how to write programs in any of these languages.&lt;br /&gt;
&lt;br /&gt;
Note: there is now a new [[Helpdesk]] C++ tutorial being constructed at the moment here at [[Cplusplus]].&lt;br /&gt;
&lt;br /&gt;
==Programming Environments==&lt;br /&gt;
&lt;br /&gt;
Pygmalion is the recommended programming environment on RedBrick, it has a large amount of programming tools available, and also has fast local disk space (available on request by mailing admins@redbrick).&lt;br /&gt;
&lt;br /&gt;
To connect to pygmalion type: &lt;br /&gt;
&lt;br /&gt;
  ssh username@pygmalion.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
on linux, or on windows with putty set your hostname to pygmalion.redbrick.dcu.ie and click open.&lt;br /&gt;
&lt;br /&gt;
==GCC==&lt;br /&gt;
&lt;br /&gt;
GCC stands for Gnu C Compiler. It is a fairly popular UNIX C compiler and is based on the standard C Compiler, known as CC :o)&lt;br /&gt;
&lt;br /&gt;
Once you have written a program in nano or vim and saved it as a .c file (the c suffix indicates it is a c language file), you can compile it to create a program that you can run on redbrick. Here is an example in which I compile a file I saved as prog.c into a program called program :&lt;br /&gt;
&lt;br /&gt;
 gcc -o program prog.c&lt;br /&gt;
&lt;br /&gt;
If you want to ensure that the code you compile is ANSI compatible (that is that it fits the latest international standards for the way C code should be written), you can add the -ansi switch to the gcc command, so now you have :&lt;br /&gt;
&lt;br /&gt;
 gcc -ansi -o program prog.c&lt;br /&gt;
&lt;br /&gt;
A lot of the time you will want to tidy up your code so that there aren&#039;t any warnings even when you compile it, to turn on warnings so you can see any possible errors in your code, add the -Wall switch to your gcc command, so now my example reads :&lt;br /&gt;
&lt;br /&gt;
 gcc -ansi -Wall -o program prog.c&lt;br /&gt;
&lt;br /&gt;
Now that I have my program compiled and there were no errors, an ls on the directory I&#039;m in will show up a file called program. To execute this program I type :&lt;br /&gt;
&lt;br /&gt;
 ./program&lt;br /&gt;
&lt;br /&gt;
To compile C++ programs, use :&lt;br /&gt;
&lt;br /&gt;
 g++ -o program prog.cpp&lt;br /&gt;
&lt;br /&gt;
==Compiling and Running Java Programs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Java compiler on redbrick is called, unsurprisingly, javac. Compiling Java programs is a little more complex than compiling C programs as you need to have two environment variables set, JAVA_HOME and CLASSPATH. To see what these are set to, at the prompt type :&lt;br /&gt;
&lt;br /&gt;
 echo $JAVA_HOME&lt;br /&gt;
 echo $CLASSPATH&lt;br /&gt;
&lt;br /&gt;
Echo is a command for printing stuff to the screen, what it does in the above example is &amp;quot;echo&amp;quot; the value of the JAVA_HOME and CLASSATH variables to the screen.&lt;br /&gt;
&lt;br /&gt;
Your JAVA_HOME variable should be set to /usr/java and your CLASSPATH should be /usr/java/lib/dt.jar, if they&#039;re anything else you can edit the variables by typing the following :&lt;br /&gt;
&lt;br /&gt;
 JAVA_HOME=/usr/java&lt;br /&gt;
 CLASSPATH=/usr/java/lib/dt.jar&lt;br /&gt;
&lt;br /&gt;
Of course you can add extra directories to this, seperated by a : so that you can compile programs in your home directory. Another difference between javac and gcc is that the main class in your java program has to have the same name as the file it&#039;s in, and the file has to have a .java extension, for example :&lt;br /&gt;
&lt;br /&gt;
 javac progam.java&lt;br /&gt;
&lt;br /&gt;
Then to execute the program (assuming it compiled okay ;o)) you type :&lt;br /&gt;
&lt;br /&gt;
 java program&lt;br /&gt;
&lt;br /&gt;
This will execute the program.&lt;br /&gt;
&lt;br /&gt;
[[Category:Helpdesk]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=User:Paddez&amp;diff=10286</id>
		<title>User:Paddez</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=User:Paddez&amp;diff=10286"/>
		<updated>2012-08-08T10:50:56Z</updated>

		<summary type="html">&lt;p&gt;Beimear: Created page with &amp;quot;Troll&amp;#039;t. &amp;lt;/paddez&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Troll&#039;t.&lt;br /&gt;
&amp;lt;/paddez&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=SSH-Keys&amp;diff=10173</id>
		<title>SSH-Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=SSH-Keys&amp;diff=10173"/>
		<updated>2011-12-21T21:44:34Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SSH-Keys are used to allow passwordless access to a machine. It uses an unique host key to identify who you are.&lt;br /&gt;
&lt;br /&gt;
To use this you will need to have ssh on your current machine. &lt;br /&gt;
&lt;br /&gt;
==Linux SSH-Keys==&lt;br /&gt;
===Creating the Key===&lt;br /&gt;
First of all, you will need to create your secret key which will remain on the machine you are ssh&#039;ing from. This is done by typing:&lt;br /&gt;
 ssh-keygen -t dsa&lt;br /&gt;
This will generate the public and private keys. You will be asked where you wish to store the key. Just press enter to accept the default location.&lt;br /&gt;
&lt;br /&gt;
You will then be asked for a passphrase. A passphrase will help to stop people who get access to your console getting access to different accounts. Its basically to help make it more secure. Once you have entered your passphase , you will be asked to re-type your passphrase. You can just just press enter if you don&#039;t want to use a passphrase.&lt;br /&gt;
&lt;br /&gt;
===Copying the Key to Redbrick===&lt;br /&gt;
Now you will then need to copy your public key (~/.ssh/id_dsa.pub) to the server you wish to ssh to. Redbrick&#039;s machines have a common home directory so you only need to transfer your ssh-key once.&lt;br /&gt;
&lt;br /&gt;
Two options for transferring your key are outlined bellow;&lt;br /&gt;
&lt;br /&gt;
====Option 1====&lt;br /&gt;
 ssh-copy-id -i ~/.ssh/id_dsa.pub username@login.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
This will append your key to your authorized_keys file on redbrick.&lt;br /&gt;
&lt;br /&gt;
====Option 2====&lt;br /&gt;
&lt;br /&gt;
 scp ~/.ssh/id_dsa.pub username@login.redbrick.dcu.ie:.ssh/&lt;br /&gt;
&lt;br /&gt;
This will put the file in the ~/.ssh folder of your account on the machine you want to ssh to.&lt;br /&gt;
&lt;br /&gt;
You will need to log in to the machine you want to ssh to. Just use ssh as you normally would for the moment:&lt;br /&gt;
 ssh username@login.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
You will still be prompted for a password at this stage. Once you are on other machine, you need to move into the .ssh directory cd .ssh. You will have to add the line in the id_dsa.pub into the authorized_keys file. The easiest way to do this is to simple cat the i d_dsa.pub and put the results into the authorized_keys file i.e:&lt;br /&gt;
 cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys&lt;br /&gt;
&lt;br /&gt;
Once all that is done, then all that remains to do is to remove the id_dsa.pub on the machine you wish to ssh to rm ~/.ssh/id_dsa.pub.&lt;br /&gt;
&lt;br /&gt;
===Changing your Passphrase===&lt;br /&gt;
From time to time you may wish to change the passprhase on your ssh-key. To do this run the following command&lt;br /&gt;
 ssh-keygen -f ~/.ssh/id_dsa -p&lt;br /&gt;
It will prompt you for your current passphrase. Once you have typed your current passphrase it will ask you for a new passphrase. You will then be asked to re-enter it to validate it.&lt;br /&gt;
&lt;br /&gt;
The next time you connect to redbrick it should use this new passphrase.&lt;br /&gt;
&lt;br /&gt;
==Windows SSH-Keys with Putty==&lt;br /&gt;
&lt;br /&gt;
You will need to open the Key Generator program usually located in the same menu as Putty.exe. If you do not have this program, you can download it from:&lt;br /&gt;
&lt;br /&gt;
 http://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe&lt;br /&gt;
&lt;br /&gt;
This is what will generate the public and private keys.&lt;br /&gt;
&lt;br /&gt;
When the program loads up, you will be faced with a a small number of options on the the base of the screen. Select DSA as the key type. It will automatically select 1024 for the number of bits but you can change this number to whatever you want. When you have filled in this information, click on &amp;quot;Generate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You will be asked to move the mouse around the blank space on the screen. The more you move the mouse, the more random the keys will be. It will generate the keys straight away. You can then enter a passphrase (if you wish) and then confirm it by typing it again. Then click &amp;quot;save private key&amp;quot; to save this key. You will be asked to give the program a destination folder to save the key to and you will need to give it a filename. Do the same for &amp;quot;save public key&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Now once you have saved your keys, press &amp;quot;Load&amp;quot;. If you gave it a passphrase, you will need to type it in now. At the top you will see the public key that you will need to copy in to your authorised keys. Highlight it and right click and select copy. Then you&#039;ll have to log on to the server you wish to be able to ssh easily too. You will need to go to putty.exe. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will still be prompted for a password at this stage. Once you are on other machine, you need to move into the .ssh directory cd .ssh. You may need to create a authorized_keys file by doing the following :&lt;br /&gt;
 touch ~/.ssh/authorized_keys &lt;br /&gt;
Then all that is left to do is to put the public key into the authorized_keys file. &lt;br /&gt;
 cat &amp;gt;&amp;gt; authorized_keys&lt;br /&gt;
&lt;br /&gt;
You should still have the public key in your buffer, if not just copy it again from the top of the Key Generator program. Just right click on your terminal and you will see it being printed onto the screen. Then hit Ctrl^D.&lt;br /&gt;
&lt;br /&gt;
Now when you run putty.exe, all you have to do is go to connection:SSH:Auth and click on &amp;quot;Browse&amp;quot; to tell putty where your private key is. You can save your settings so you don&#039;t have to do this everytime. Now when you log in you will either get in without a password or only have to give your passphrase. Don&#039;t forget to reload the private key in the key generator next time you log on to your computer.&lt;br /&gt;
&lt;br /&gt;
If you have any problems or something just won&#039;t work for you, just mail or hey a member of helpdesk and they&#039;ll sort it out for ya :-)&lt;br /&gt;
&lt;br /&gt;
[[Category:Helpdesk]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Helpdesk&amp;diff=10036</id>
		<title>Helpdesk</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Helpdesk&amp;diff=10036"/>
		<updated>2011-08-24T20:23:56Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Redbrick&#039;s Helpdesk is &amp;lt;s&amp;gt;a lazy shower of absolute wasters&amp;lt;/s&amp;gt; an elite team of hard working individuals dedicated to helping Redbrick users by answering queries, running workshops and forwarding hundreds of mails to the admins.&lt;br /&gt;
&lt;br /&gt;
== The Helpdesk Team ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Helpdesk.png]]&lt;br /&gt;
&lt;br /&gt;
* [[User:isaac702|isaac702]]&lt;br /&gt;
* [[User:beimear|beimear]]&lt;br /&gt;
&lt;br /&gt;
Feel free to mail helpdesk[at]redbrick[dot]dcu[dot]ie with any problems at all. They also have an IRC channel: #helpdesk&lt;br /&gt;
&lt;br /&gt;
== Helpdesk Tutorials ==&lt;br /&gt;
Here you can find guides on how to use different Redbrick services. These guides are maintained by the Helpdesk team - if there&#039;s something we&#039;ve left out let us know.&lt;br /&gt;
&lt;br /&gt;
=== Using Your Account ===&lt;br /&gt;
*[[Connect|Connecting to Redbrick]] - how to start using your account.&lt;br /&gt;
*[[Intro|Introduction to Redbrick]] - learn the basics.&lt;br /&gt;
*[[Hey|Hey]] - how to use Redbrick&#039;s instant messaging program, hey.&lt;br /&gt;
*[[Account Customisation (zsh)|Account Customisation]] - how to change the look and feel of your Redbrick account.&lt;br /&gt;
*[[Screen]] - a guide to using screen.&lt;br /&gt;
*[[Finch]] - command line tunnel to instant messaging, ie: msn, etc.&lt;br /&gt;
&lt;br /&gt;
=== Chat ===&lt;br /&gt;
*[[IRC|Chat/IRC]] - find out how to chat with other brickies.&lt;br /&gt;
*[[Irssi]] - page about the irssi client, detailing more advanced features and commands.&lt;br /&gt;
*[[BitchX]] - this is an alternate chat client available on RedBrick.&lt;br /&gt;
*[[Bitlbee]] - use chat to connect to MSN, Yahoo &amp;amp; Google talk.&lt;br /&gt;
*[[Peepd]] - use chat to connect to Twitter.&lt;br /&gt;
*[[OtherIrcClients]] - use ssh forwarding to connect with your own IRC client on your computer.&lt;br /&gt;
&lt;br /&gt;
=== Email ===&lt;br /&gt;
*[[Automatic Forwarding]] - how to remove or set up forwarding to different addresses.&lt;br /&gt;
*[[DCU Apps - Redbrick Email]] - setup your DCU Apps account to send and receive emails with your Redbrick address.&lt;br /&gt;
*[[Mutt|Using mutt]] - how to use mutt to read and send emails.&lt;br /&gt;
*[[Webmail]] - learn more about Redbrick&#039;s web-based mail clients.&lt;br /&gt;
&lt;br /&gt;
=== Web ===&lt;br /&gt;
*[[Help:Contents|Redbrick Wiki]] - how to use this wiki.&lt;br /&gt;
*[[Webspace]] - how to use your Redbrick webspace and get your website up and running.&lt;br /&gt;
*[[Transferring Files]] - how to use WinSCP and transfer files to and from Redbrick.&lt;br /&gt;
*[[Htaccess|.htaccess]] - using htaccess to password protect areas of your site.&lt;br /&gt;
*[[PHP]] - tutorial on using PHP on Redbrick.&lt;br /&gt;
*[[Tomcat|TomCat]] - provides an environment for Java code to run in cooperation with a web server.&lt;br /&gt;
*[[Hosting Your Domain On Redbrick]] - a quick guide.&lt;br /&gt;
&lt;br /&gt;
=== News / Message Boards ===&lt;br /&gt;
*[[Redbrick Newsgroups]] - how to read and post to the Redbrick newsgroups using slrn.&lt;br /&gt;
*[[Using the Boards with Thunderbird|Boards with Thunderbird]] - how to use the boards in Thunderbird.&lt;br /&gt;
*[[Newsbeuter]] - how to set up newsbeuter for your rss feeds&lt;br /&gt;
&lt;br /&gt;
=== Unix ===&lt;br /&gt;
*[[Unix Intro]] - an introduction to Unix and basic commands that you can use on Redbrick.&lt;br /&gt;
*[[Unix Advanced]] - some more advanced Unix features.&lt;br /&gt;
*[[File Permissions]] - introduction to different file permissions and how to use chmod.&lt;br /&gt;
*[[SSH-Keys]] - connect without typing a password&lt;br /&gt;
&lt;br /&gt;
=== Programming ===&lt;br /&gt;
*[[Programming On Redbrick]] - how to use Java, C and C++ compilers on RedBrick.&lt;br /&gt;
*[[Cplusplus|C++]] - how to write, compile and run C++ programs using the g++ compiler on RedBrick.&lt;br /&gt;
*[[svn|Subversion]] - Use Subversion for version control on RedBrick&lt;br /&gt;
*[[Mercurial]] - Use Mercurial for version control on RedBrick&lt;br /&gt;
&lt;br /&gt;
=== Misc ===&lt;br /&gt;
*[[Smilies]] - a guide on smilies, with lots of different and bizarre variations. :)&lt;br /&gt;
*[[Creating Man Pages|Creating your own man page]] - how to make your own man page.&lt;br /&gt;
*[[Makefiles]] - how to write makefiles.&lt;br /&gt;
*[[Vim text editor]] - how to use Vim.&lt;br /&gt;
*[[Acronyms]] - a list of commonly used acronyms.&lt;br /&gt;
&lt;br /&gt;
=== RedBrick Ubuntu ===&lt;br /&gt;
*[[RedBrick Ubuntu]] - read all about the special RedBrick ubuntu release.&lt;br /&gt;
&lt;br /&gt;
==Other Useful Stuff==&lt;br /&gt;
These pages weren&#039;t written by us, but are equally helpful, so we&#039;ve included them here, because we&#039;re nice :)&lt;br /&gt;
&lt;br /&gt;
===Web===&lt;br /&gt;
*[[Installing Gallery On Redbrick|Gallery]] - how to install Gallery on your own webspace.&lt;br /&gt;
*[[Installing Wordpress on Redbrick|Wordpress]] - how to install a wordpress blog.&lt;br /&gt;
*[[DokuWiki_on_Redbrick|DokuWiki]] - how to install your own wiki.&lt;br /&gt;
*[[Vanilla_on_Redbrick|Vanilla]] - install a vanilla forum.&lt;br /&gt;
*[[PubCookie_on_Redbrick|PubCookie]] - restrict access to web pages to Redbrick members.&lt;br /&gt;
&lt;br /&gt;
===Chat===&lt;br /&gt;
*[[Redbrick_Jabber/IM|Jabber]] - connect to the Redbrick jabber server.&lt;br /&gt;
&lt;br /&gt;
===Internet===&lt;br /&gt;
*[[How-To:Port Forwarding|Port Forwarding]] - how to port forward through Redbrick.&lt;br /&gt;
&lt;br /&gt;
===Unix===&lt;br /&gt;
*[[Mass Renaming Files]] - how to rename lots of files at once.&lt;br /&gt;
&lt;br /&gt;
===Mac===&lt;br /&gt;
*[[Connecting_to_redbrick_with_Quicksilver|QuickSilver]] - connect to Redbrick from your Mac with QuickSilver.&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
[[Category:Helpdesk]]&lt;br /&gt;
[[Category:HowTo]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Helpdesk.png&amp;diff=10035</id>
		<title>File:Helpdesk.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Helpdesk.png&amp;diff=10035"/>
		<updated>2011-08-24T20:21:13Z</updated>

		<summary type="html">&lt;p&gt;Beimear: helpdesk 2011. :DDDD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;helpdesk 2011. :DDDD&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Committee&amp;diff=9993</id>
		<title>Committee</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Committee&amp;diff=9993"/>
		<updated>2011-05-25T21:03:17Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The name given to the leadership of Redbrick. Elected every year at the Annual General Meeting it is composed of 13 members: three admins, three helpdesk, Webmaster, a first year rep, a Secretary, PRO, Ents Officer, Treasurer and Chairperson. The First Year Rep is elected at an Extraordinary General Meeting (EGM), usually held during Clubs &amp;amp; Socs Week at the start of October. You must be a first year member to run for this position. All members of the committee are given ops in #lobby while the admins, along with previous system administrators still in the root group, hold [http://en.wikipedia.org/wiki/Root_user root]. The webmaster may also hold root, upon passing a root competency test.&lt;br /&gt;
&lt;br /&gt;
They are the Society&#039;s most popular target for abuse and insults and work tirelessly and without compensation for the Society they love so much. A list of past and present Committee members can be found at http://www.redbrick.dcu.ie/about/committee/&lt;br /&gt;
&lt;br /&gt;
An alternative view of the Committee is that it is a collection of the power-mad, the arrogant, the popular and the insulting. All members have their own opinions on that matter but most will agree that without the Committee Redbrick would not be able to function, and for that, and perhaps that alone, they deserve thanks.&lt;br /&gt;
&lt;br /&gt;
--Cain&lt;br /&gt;
&lt;br /&gt;
Originally from the [[Encyclopedia]], updated by atlas and coconut&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The committee can be contacted at: committee@redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Or, you can e-mail individual members via their RedBrick addresses.&lt;br /&gt;
&lt;br /&gt;
=== 2011/12 (Current) ===&lt;br /&gt;
Chairperson&lt;br /&gt;
    David Larkan ( tziegler )&lt;br /&gt;
Secretary&lt;br /&gt;
    Lotta Mikkonen ( attol )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Nina Hanzlikova ( geekity )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Ciaran McNally ( mak )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Meabh Landers ( timelady )&lt;br /&gt;
First Year Representative&lt;br /&gt;
    To be elected at EGM.&lt;br /&gt;
Helpdesk&lt;br /&gt;
    Shane Stacey ( isaac702 )&lt;br /&gt;
    Eimear Tyrell ( beimear ) &lt;br /&gt;
Webmaster&lt;br /&gt;
    Vadim Clyne-Kelly ( vadimck )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Austin Halpin ( haus )&lt;br /&gt;
    James Reilly ( fun )&lt;br /&gt;
    Paul Bunbury ( bunbun )&lt;br /&gt;
&lt;br /&gt;
=== 2010/11 ===&lt;br /&gt;
Chairperson&lt;br /&gt;
    Lotta Mikkonen ( attol )&lt;br /&gt;
Secretary&lt;br /&gt;
    Nina Hanzlikova ( geekity )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Conor Forde ( fordy )&lt;br /&gt;
Events Officer&lt;br /&gt;
    &amp;lt;s&amp;gt;Emma Gallagher ( emma )&amp;lt;/s&amp;gt;&lt;br /&gt;
    Aisling Mulholland ( crash )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Carri Fuery ( carri )&lt;br /&gt;
First Year Representative&lt;br /&gt;
    Dave Larkan ( tziegler )&lt;br /&gt;
Helpdesk&lt;br /&gt;
    Shane Stacey ( isaac702 )&lt;br /&gt;
    Paul Bunbury ( bunbun )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Craig Gavagan MacEntee ( creadak ) &lt;br /&gt;
System Administrators&lt;br /&gt;
    James Reilly ( fun )&lt;br /&gt;
    Seamus Ronan ( train )&lt;br /&gt;
    Austin Halpin ( haus )&lt;br /&gt;
&lt;br /&gt;
=== 2009/10 ===&lt;br /&gt;
Chairperson&lt;br /&gt;
    Lotta Mikkonen ( attol )&lt;br /&gt;
Secretary&lt;br /&gt;
    Emma Gallagher ( emma )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Seán Hand ( revenant )&lt;br /&gt;
Events Officer&lt;br /&gt;
    &amp;lt;del&amp;gt;Carri Fuery  ( carri )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Stephanie Coleman ( steph )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Dan Fox ( maiden )&lt;br /&gt;
First Year Representative&lt;br /&gt;
    David Glennon ( azrael )&lt;br /&gt;
Helpdesk&lt;br /&gt;
    &amp;lt;del&amp;gt;Austin Halpin ( haus )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Diarmaid McManus ( elephant )&lt;br /&gt;
    Gautam Wadhwa ( gw )&lt;br /&gt;
    Craig Gavagan MacEntee (credak)&lt;br /&gt;
Webmaster&lt;br /&gt;
    Kat Farrell ( angelkat )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Eoghan Cotter ( johan )&lt;br /&gt;
    &amp;lt;del&amp;gt;David Lynam ( coconut )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Alan Breathnach ( sonic )&lt;br /&gt;
    Andrew Martin (werdz)&lt;br /&gt;
&lt;br /&gt;
=== 2008/09 ===&lt;br /&gt;
Chairperson&lt;br /&gt;
    &amp;lt;del&amp;gt;Robert O&#039;Reilly ( robby )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Kat Farrell ( angelkat )&lt;br /&gt;
Secretary&lt;br /&gt;
    Damian Rhatigan ( dano )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Leah Doyle ( bambi )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Lotta Mikkonen ( attol )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Carri Fuery ( carri )&lt;br /&gt;
    &amp;lt;del&amp;gt;John Needham ( colossus )&amp;lt;/del&amp;gt;&lt;br /&gt;
First Year Representative&lt;br /&gt;
    Emma Gallagher ( emma )&lt;br /&gt;
Helpdesk&lt;br /&gt;
    &amp;lt;del&amp;gt;Seán Hand ( revenant )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Séamus Ronan ( train )&lt;br /&gt;
    &amp;lt;del&amp;gt;Gavin Tubritt ( gamblitis )&amp;lt;/del&amp;gt;&lt;br /&gt;
Webmaster&lt;br /&gt;
    Andrew Martin ( werdz )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Cian Brennan ( lil_cain )&lt;br /&gt;
    Andrew Harford ( receive )&lt;br /&gt;
    Eoghan Cotter ( johan )&lt;br /&gt;
&lt;br /&gt;
=== 2007/08 ===&lt;br /&gt;
Chairperson (also known as Failchair)&lt;br /&gt;
    Andrew Harford ( receive )&lt;br /&gt;
Secretary&lt;br /&gt;
    Kevin Fox ( undone )&lt;br /&gt;
Treasurer&lt;br /&gt;
    &amp;lt;del&amp;gt;Ashley Samuel Dooley Martyn ( mythe )&amp;lt;/del&amp;gt;&lt;br /&gt;
Events Officer&lt;br /&gt;
    Kat Farrell ( angelkat )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Damian Rhatigan ( dano )&lt;br /&gt;
Education Officers (also known as Helpdesk, also known as Faildesk)&lt;br /&gt;
    Padraig O&#039;Connor ( landa2 )&lt;br /&gt;
    Eoghan Cotter ( johan )&lt;br /&gt;
    David Lynam ( coconut )&lt;br /&gt;
    &amp;lt;del&amp;gt;Matthew Barrington ( moju )&amp;lt;/del&amp;gt;&lt;br /&gt;
    &amp;lt;del&amp;gt;Declan Whelan ( castle )&amp;lt;/del&amp;gt;&lt;br /&gt;
Webmaster&lt;br /&gt;
    Richard Dalton ( d_fens )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Andrew Martin ( werdz )&lt;br /&gt;
    Cian Brennan ( lil_cain )&lt;br /&gt;
    &amp;lt;del&amp;gt;Diarmuid Bourke ( drag0n )&amp;lt;/del&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2006/07 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Charlie Von Metzradt ( phaxx )&lt;br /&gt;
Secretary&lt;br /&gt;
    Jessica Ni Chonchubhair ( jesjes )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Andrew Harford ( receive )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    &amp;lt;del&amp;gt;Padraig O&#039;Connor ( landa2 )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Damien Rathigan ( dano )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Kat Farrell ( angelkat )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Kevin Fox ( undone )&lt;br /&gt;
    Simon Kilroy ( gizmo )&lt;br /&gt;
    Diarmuid Bourke ( drag0n )&lt;br /&gt;
Webmaster&lt;br /&gt;
    John Doyle ( art_wolf )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Sarunas Vancevicius ( svan )&lt;br /&gt;
    Eoghan Gaffney ( atlas )&lt;br /&gt;
    Stephen Doyle ( igy )&lt;br /&gt;
&lt;br /&gt;
=== 2005/06 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Michelle Graham (drusilla)&lt;br /&gt;
Secretary&lt;br /&gt;
    Dave Couse ( phreak )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Kenneth Barrett ( sionnach )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Jessica Ni Chonchubhair ( jesjes )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Bernard McKeever ( dregin )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Stephen Doyle ( igy )&lt;br /&gt;
    Simon Kilroy ( gizmo )&lt;br /&gt;
    Graham Bishop ( winters )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Una Kehoe ( keloe )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Charlie Von Metzradt ( phaxx )&lt;br /&gt;
    Eoghan Gaffney ( atlas )&lt;br /&gt;
    Stephen Ryan ( ryaner )&lt;br /&gt;
&lt;br /&gt;
=== 2004/05 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Michelle Graham (drusilla)&lt;br /&gt;
Secretary&lt;br /&gt;
    Aisling Devlin ( aeris )&lt;br /&gt;
    &amp;lt;del&amp;gt;Donal Mulligan ( thor )&amp;lt;/del&amp;gt;&lt;br /&gt;
Treasurer&lt;br /&gt;
    Charlene Barrett ( charlene )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Martina Frain ( dramaq )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Mark Grenham ( kyper )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    John Doyle ( art_wolf )&lt;br /&gt;
    &amp;lt;del&amp;gt;Una Kehoe ( keloe )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Stephen Doyle ( igy )&lt;br /&gt;
    Eoghan Gaffney ( atlas )&lt;br /&gt;
Webmaster&lt;br /&gt;
    David Whelan ( biteme )&lt;br /&gt;
System Administrators&lt;br /&gt;
    &amp;lt;del&amp;gt;Martin Clarke ( prolix )&amp;lt;/del&amp;gt;&lt;br /&gt;
    Charlie Von Metzradt ( phaxx )&lt;br /&gt;
    Michael Dowling ( mickeyd )&lt;br /&gt;
    Padraic Hallinan ( halenger )&lt;br /&gt;
&lt;br /&gt;
=== 2003/04 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    David Johnston ( emperor )&lt;br /&gt;
Secretary&lt;br /&gt;
    Cillian Sharkey ( cns )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Seamus O&#039;Toole ( mael )&lt;br /&gt;
    &amp;lt;del&amp;gt;Grainne Sheerin ( dimples )&amp;lt;/del&amp;gt;&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Aisling Devlin ( aeris )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Martina Frain ( dramaq )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Eoin Campbell ( cambo )&lt;br /&gt;
    Una Kehoe ( keloe )&lt;br /&gt;
    Sun Ning ( sunshine )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Declan McMullen ( skyhawk )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Martin Clarke ( prolix )&lt;br /&gt;
    Dermot Duffy ( dizer )&lt;br /&gt;
    Martin Harte ( tuama )&lt;br /&gt;
&lt;br /&gt;
=== 2002/03 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Nikki Kenny ( kamili )&lt;br /&gt;
Secretary&lt;br /&gt;
    Trevor Johnston ( trevj )&lt;br /&gt;
    &amp;lt;del&amp;gt;Andrew MacCann ( montoya )&amp;lt;/del&amp;gt;&lt;br /&gt;
Treasurer&lt;br /&gt;
    Grainne Sheerin ( dimples )&lt;br /&gt;
    &amp;lt;del&amp;gt;Neil Walsh ( marvin )&amp;lt;/del&amp;gt;&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Shane Tallon ( del_boy )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Elaine Bannon (purdy)&lt;br /&gt;
    &amp;lt;del&amp;gt;Carla Coleman&amp;lt;/del&amp;gt;&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Eoin Campbell ( cambo )&lt;br /&gt;
    Declan McMullen ( skyhawk )&lt;br /&gt;
    Declan O&#039;Neill ( dec )&lt;br /&gt;
    &amp;lt;del&amp;gt;Mark Campbell&amp;lt;/del&amp;gt;&lt;br /&gt;
Webmaster&lt;br /&gt;
    David Johnston ( emperor )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Mark Dunne ( pixies )&lt;br /&gt;
    Dermot Duffy ( dizer )&lt;br /&gt;
    Cillian Sharkey ( cns )&lt;br /&gt;
&lt;br /&gt;
=== 2001/02 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Donal Mulligan ( thor )&lt;br /&gt;
Secretary&lt;br /&gt;
    Brian Banbrick ( moridin )&lt;br /&gt;
Treasurer&lt;br /&gt;
    John Canavan ( tibor )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Andrew MacCann ( montoya )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Micheal Glennon ( magluby )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Kevin Dermody ( esoteric )&lt;br /&gt;
    Nikki Kenny ( kamili )&lt;br /&gt;
    Neil Walsh ( marvin )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Colm MacCarthaigh ( colmmacc ) &lt;br /&gt;
System Administrators&lt;br /&gt;
    Philip Reynolds ( phil )&lt;br /&gt;
    Mark Campbell ( mark )&lt;br /&gt;
    Cillian Sharkey ( cns )&lt;br /&gt;
&lt;br /&gt;
=== 2000/01 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Karl Podesta ( kpodesta )&lt;br /&gt;
Secretary&lt;br /&gt;
    Brian Banbrick ( moridin )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Jonathan Lundberg ( spock )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Kevin Cannon ( p )&lt;br /&gt;
Events Officer&lt;br /&gt;
    John Canavan ( tibor )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Conor O&#039;Kane ( cokane )&lt;br /&gt;
    Mark Campbell ( mark )&lt;br /&gt;
    Donal Hunt ( redgiant )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Barry O&#039;Neill ( bubble ) &lt;br /&gt;
System Administrators&lt;br /&gt;
    Philip Reynolds ( phil )&lt;br /&gt;
    Sarvesh Singh ( macbain )&lt;br /&gt;
    Noel Fitzpatrick ( noelfitz )&lt;br /&gt;
    Mark Dunne ( pixies )&lt;br /&gt;
    Robert Crosbie ( bobb)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 1999/2000 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Jonathan Lundberg ( spock )&lt;br /&gt;
Secretary&lt;br /&gt;
    Caroline Sheedy ( bootie )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Damien Martin ( otto )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Julie Kerin ( julie )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Orla McGan ( orly )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Conor O&#039;Kane ( cokane )&lt;br /&gt;
    Nigel Parkes ( elmer )&lt;br /&gt;
    Eileen Gavin ( munchkin )&lt;br /&gt;
    Barry O&#039;Neill ( bubble )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Karl Podesta ( kpodesta )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Adam Kelly ( cthulhu )&lt;br /&gt;
    Hoi Chau Wong ( whc )&lt;br /&gt;
    Robert Crosbie ( bobb)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 1998/99 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Justin Moran ( cain )&lt;br /&gt;
Secretary&lt;br /&gt;
    Jonathan Lundberg ( spock )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Caroline Sheedy ( bootie )&lt;br /&gt;
Public Relations Officer/Events Officer&lt;br /&gt;
    Cecily Murray ( celery )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Aoife Cahill ( ace )&lt;br /&gt;
    Sarvesh Singh ( macbain )&lt;br /&gt;
    Eoin McGrath ( bob )&lt;br /&gt;
    Barry O&#039;Neill ( bubble )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Brian Scanlan ( singer )&lt;br /&gt;
    David Murphy ( drjolt )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Adam Kelly ( cthulhu )&lt;br /&gt;
    John Looney ( valen )&lt;br /&gt;
    Hoi Chau Wong ( whc )&lt;br /&gt;
    Colin Whittaker ( grimnar)&lt;br /&gt;
    John Bolger (jbolger )&lt;br /&gt;
    Cian Synnott ( pooka )&lt;br /&gt;
    Ka Chun Leung ( plop )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 1997/98 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Patrick Grant ( floppy )&lt;br /&gt;
    Mike Bennett ( thalia )&lt;br /&gt;
Secretary&lt;br /&gt;
    Jonathan Lundberg ( spock )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Aoife McGoveran ( hms )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Dave O&#039;Flynn ( firefly )&lt;br /&gt;
Events Officer&lt;br /&gt;
    Kevin O&#039;Donovan ( kod )&lt;br /&gt;
Education Officers (helpdesk)&lt;br /&gt;
    Daire McKenna ( fatwa )&lt;br /&gt;
    Shane O&#039;hUid ( wishkah )&lt;br /&gt;
    John Barker ( barkerj )&lt;br /&gt;
Webmaster&lt;br /&gt;
    Andrew Lawless ( andy )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Dermot Hanley ( wibble )&lt;br /&gt;
    Ka Chun Leung ( plop )&lt;br /&gt;
    David Murphy ( drjolt )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 1996/97 ===&lt;br /&gt;
&lt;br /&gt;
Chairperson&lt;br /&gt;
    Sean Cullen ( hyper )&lt;br /&gt;
Secretary&lt;br /&gt;
    Dermot Hanley ( wibble )&lt;br /&gt;
Treasurer&lt;br /&gt;
    Paraic O&#039;Ceallaigh ( swipe )&lt;br /&gt;
Public Relations Officer&lt;br /&gt;
    Michael McHugh ( sandman )&lt;br /&gt;
System Administrators&lt;br /&gt;
    Fergus Donohue ( fergus )&lt;br /&gt;
    David Murphy ( drjolt )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Encyclopedia]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Great_Quiz_Rig_of_2010&amp;diff=9958</id>
		<title>Great Quiz Rig of 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Great_Quiz_Rig_of_2010&amp;diff=9958"/>
		<updated>2011-04-13T14:39:37Z</updated>

		<summary type="html">&lt;p&gt;Beimear: Unprotected &amp;quot;Great Quiz of 2010&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On the evening of the 30th March 2010, RedBrick had a grand wee quiz.&lt;br /&gt;
&lt;br /&gt;
In the raffle, receive won the Dell netbook. &lt;br /&gt;
&lt;br /&gt;
Debate came first winning external hard drives&lt;br /&gt;
&lt;br /&gt;
Team Alice? Came second wining Sega Mega Drives,&lt;br /&gt;
&lt;br /&gt;
&amp;quot;A N otherW team came third, winning nerf guns&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Great_Quiz_Rig_of_2010&amp;diff=9957</id>
		<title>Great Quiz Rig of 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Great_Quiz_Rig_of_2010&amp;diff=9957"/>
		<updated>2011-04-13T14:38:25Z</updated>

		<summary type="html">&lt;p&gt;Beimear: Changed protection level for &amp;quot;Great Quiz of 2010&amp;quot; [edit=sysop:move=autoconfirmed]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On the evening of the 30th March 2010, RedBrick had a grand wee quiz.&lt;br /&gt;
&lt;br /&gt;
In the raffle, receive won the Dell netbook. &lt;br /&gt;
&lt;br /&gt;
Debate came first winning external hard drives&lt;br /&gt;
&lt;br /&gt;
Team Alice? Came second wining Sega Mega Drives,&lt;br /&gt;
&lt;br /&gt;
&amp;quot;A N otherW team came third, winning nerf guns&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=The_Hat_Of_Drunkenness&amp;diff=9948</id>
		<title>The Hat Of Drunkenness</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=The_Hat_Of_Drunkenness&amp;diff=9948"/>
		<updated>2011-04-04T00:55:45Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Hat of Drunkenness is one of RedBrick&#039;s finest possessions. Apparently &amp;quot;[[User:gw|gw]] was walking home drunk one night, and some wrecked guy gave him the hat saying something along the lines of &amp;quot;LOOK AT THIS HAT. I CAN&#039;T TAKE ALL THE COLOURS. TAKE THIS blah blah&amp;quot;, and so the hat of drunkenness was born.&lt;br /&gt;
&lt;br /&gt;
It gets passed on at parties and is given to the most drunk person there. Somehow it manages to find it&#039;s way back to the next event.&lt;br /&gt;
&lt;br /&gt;
One must never refuse to wear the hat, however, if offered it you&#039;re usually wrecked enough to do anything.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Thehat.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Encyclopedia]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=The_Hat_Of_Drunkenness&amp;diff=9947</id>
		<title>The Hat Of Drunkenness</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=The_Hat_Of_Drunkenness&amp;diff=9947"/>
		<updated>2011-04-04T00:38:00Z</updated>

		<summary type="html">&lt;p&gt;Beimear: New page: Image:Thehat.jpg  Category:Encyclopedia&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Thehat.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Encyclopedia]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Thehat.jpg&amp;diff=9946</id>
		<title>File:Thehat.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Thehat.jpg&amp;diff=9946"/>
		<updated>2011-04-04T00:33:29Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Emo&amp;diff=9928</id>
		<title>Emo</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Emo&amp;diff=9928"/>
		<updated>2011-03-14T20:17:36Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;After many users both laid claim to and denied their affiliation with the tag &amp;quot;emo&amp;quot;, it has been decided that the wiki is the best Redbrick tool with which to lay the matter to rest. Here is a list of known emos on Redbrick and pics with which to both prove their &amp;quot;emoness&amp;quot; and identify/avoid them in the real world.&lt;br /&gt;
&lt;br /&gt;
==aisling==&lt;br /&gt;
[[image:aeris.jpg]]&lt;br /&gt;
 03:20 &amp;lt;        Aisling &amp;gt; but i feel emo&lt;br /&gt;
^^ Proof enough.&lt;br /&gt;
&lt;br /&gt;
==atlas ==&lt;br /&gt;
[[Image:Atlas_emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
Although not showing some of the more classic emo signs this person never seems to be happy, and has  almost never been recorded smiling. That, and his other somewhat &amp;quot;unusual&amp;quot; habits make him emo enough for this page.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;b&amp;gt;Saturday, 25th Feb 2007, Doyles Pub&amp;lt;/b&amp;gt;&lt;br /&gt;
 receive: this is ac/dc! enjoy yourself&lt;br /&gt;
 atlas: I shall do no such thing&lt;br /&gt;
&lt;br /&gt;
== beimear ==&lt;br /&gt;
[[Image:Emo_beimear1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; ... ;_;&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; knowing you&#039;ve ruined my life...................&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; *slit*&lt;br /&gt;
 01:27 &amp;lt; beimear&amp;gt; ........ i&#039;m too sad to be emo ;_;&lt;br /&gt;
&lt;br /&gt;
== bincheol ==&lt;br /&gt;
[[Image:emobinky.jpg]]&lt;br /&gt;
[[Image:Emo_binky.jpg]]&lt;br /&gt;
&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; fightstar are EPCI.&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; EPIC. even&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; seriously one of my favourite bands right now.&lt;br /&gt;
&lt;br /&gt;
 [16:58:36]    binncheol | &#039;everything is beautiful and nothing hurts&#039;&lt;br /&gt;
&lt;br /&gt;
Went to Taking Back Sunday - EMO!&lt;br /&gt;
&lt;br /&gt;
== bunbun ==&lt;br /&gt;
&lt;br /&gt;
 23:56 * bunbun cuts&lt;br /&gt;
 00:00  &amp;lt;bunbun&amp;gt; Also because you all hate me ;_;&lt;br /&gt;
 00:00 * bunbun cuts&lt;br /&gt;
 00:00  &amp;lt;bunbun&amp;gt; tziegler: We should be depressed together&lt;br /&gt;
 00:01  &amp;lt;bunbun&amp;gt; Make one with black eyes and mouth, and tears of blood red&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== carri ==&lt;br /&gt;
&lt;br /&gt;
 16:03:36 &amp;lt; nanaki&amp;gt; carri: you have no heart&lt;br /&gt;
 16:03:46 &amp;lt;@carri&amp;gt; No. BECAUSE YOU BROKE IT&lt;br /&gt;
 16:03:48 &amp;lt;@carri&amp;gt; &amp;lt;cut&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 carri ? I like taking back sunday.&lt;br /&gt;
&lt;br /&gt;
== chris ==&lt;br /&gt;
&lt;br /&gt;
Seen here with eyeliner and straightened hair. His teary eyed appearance really defines him as a person...&lt;br /&gt;
&lt;br /&gt;
[[Image:Emo_chris.jpg]]&lt;br /&gt;
&lt;br /&gt;
== dano ==&lt;br /&gt;
 22:37:13 &amp;lt; DamoDarko&amp;gt; attol: to this cruel world i am alone&lt;br /&gt;
 22:37:35  * nanaki hands DamoDarko some eyeliner&lt;br /&gt;
 22:37:42 &amp;lt; DamoDarko&amp;gt; nanaki: get some chicken kievs and load it with chilli :P&lt;br /&gt;
 22:37:59 &amp;lt; DamoDarko&amp;gt; nanaki: could you pass the razo while your at it....need&lt;br /&gt;
                       to shave&lt;br /&gt;
 22:38:02 &amp;lt; DamoDarko&amp;gt; SOME EMOTION&lt;br /&gt;
 22:38:07 &amp;lt; DamoDarko&amp;gt; ; ;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  17:19  * DamoDarko i want to kill myself&lt;br /&gt;
&lt;br /&gt;
== doc ==&lt;br /&gt;
[[Image:Emo_doc_grey.jpg]]&lt;br /&gt;
&lt;br /&gt;
== dregin ==&lt;br /&gt;
[[Image:Cornd.jpg]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BREAKING NEWS: &#039;&#039;&#039;Dregin just came out of the emo closet to Castle in #lobby. Check [http://www.redbrick.dcu.ie/~dregin/emo_out.txt here] for proof.&lt;br /&gt;
&lt;br /&gt;
There is also evidence of dregin&#039;s allegiance to the ultra-faggy &#039;&#039;straight edge&#039;&#039; trend.&lt;br /&gt;
&lt;br /&gt;
 13:06 &amp;lt; Attol&amp;gt; someone recently told me they&#039;d gone straight edge, can&#039;t remember who&lt;br /&gt;
 13:07 &amp;lt; Dregin&amp;gt; Attol: It WAS ME!&lt;br /&gt;
&lt;br /&gt;
The proof is undeniable.&lt;br /&gt;
&lt;br /&gt;
== elephant ==&lt;br /&gt;
[[Image:Emophant.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== emma ==&lt;br /&gt;
&lt;br /&gt;
10:47 &amp;lt; emma&amp;gt; I hate everything :(&lt;br /&gt;
&lt;br /&gt;
10:47 &amp;lt; emma&amp;gt; I&#039;ll just go cut my self&lt;br /&gt;
&lt;br /&gt;
[[Image:Emmagingemo.jpg]]&lt;br /&gt;
&lt;br /&gt;
If this isn&#039;t emo.... (also, she&#039;s 16 when this was taken.. JAILBAIT++;)&lt;br /&gt;
&lt;br /&gt;
== exzantia ==&lt;br /&gt;
[[image:Emo_exzantia.jpg]]&lt;br /&gt;
&lt;br /&gt;
==finch==&lt;br /&gt;
[[Image:Emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
== gizmo ==&lt;br /&gt;
[[Image:emo gizmo.jpg]]&lt;br /&gt;
&lt;br /&gt;
gizmo&#039;s second baptism.&lt;br /&gt;
&lt;br /&gt;
 18:23:19 &amp;lt; g1zmo&amp;gt; I&#039;m just an awesome guy&lt;br /&gt;
 18:26:31 &amp;lt; g1zmo&amp;gt; jesus&lt;br /&gt;
 18:26:36 &amp;lt; g1zmo&amp;gt; don&#039;t all rush to agree with me or anything &lt;br /&gt;
 18:32:49 &amp;lt; g1zmo&amp;gt; ...&lt;br /&gt;
 18:32:51 &amp;lt; g1zmo&amp;gt; I fucking hate you guys&lt;br /&gt;
 18:32:57 &amp;lt; g1zmo&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
== goldfish ==&lt;br /&gt;
[[Image:EmoGoldie.jpg]]&lt;br /&gt;
&lt;br /&gt;
 14:10 &amp;lt; go|dfish&amp;gt; LIFE IS FUCKING SHIT.&lt;br /&gt;
 14:10 &amp;lt; joe5ie&amp;gt; an hero time.&lt;br /&gt;
 14:11 &amp;lt; go|dfish&amp;gt; i hope my manager died in a plane crash on his way back from usa&lt;br /&gt;
 14:11 &amp;lt; undone&amp;gt; emo|fish&lt;br /&gt;
&lt;br /&gt;
 22:35 &amp;lt; go|dfish&amp;gt; because life is shit?&lt;br /&gt;
 22:35 &amp;lt; go|dfish&amp;gt; &amp;lt;/emo&amp;gt;&lt;br /&gt;
 22:35 &amp;lt; roro&amp;gt; how come??&lt;br /&gt;
 22:35 &amp;lt; roro&amp;gt; stop being soo EMO&lt;br /&gt;
&lt;br /&gt;
 20:10:30  goldfish | i may have to end my life&lt;br /&gt;
&lt;br /&gt;
== hauk ==&lt;br /&gt;
&lt;br /&gt;
 01:04:33 &amp;lt; HAUK&amp;gt; I want another life.&lt;br /&gt;
 01:04:38 &amp;lt; HAUK&amp;gt; This one sucks.&lt;br /&gt;
 01:04:41 &amp;lt; HAUK&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
==haus==&lt;br /&gt;
Image says it all. &lt;br /&gt;
&lt;br /&gt;
[[image:8323_178900470395_505410395_3857158_7804031_n.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  &amp;lt; haus&amp;gt; ;_; &lt;br /&gt;
  &amp;lt; haus&amp;gt; I&#039;ve been cut, cut deep&lt;br /&gt;
&lt;br /&gt;
  * haus gets his emo on&lt;br /&gt;
  * haus - I&#039;m Not Okay - MCR&lt;br /&gt;
&lt;br /&gt;
  &amp;lt; haus&amp;gt; He makes me want to cut other people&lt;br /&gt;
  &amp;lt; elephant&amp;gt; for once&lt;br /&gt;
&lt;br /&gt;
  * haus thinks he needs a new blade&lt;br /&gt;
&lt;br /&gt;
  &amp;lt; haus&amp;gt; yea, you could always cut yourself or something instead&lt;br /&gt;
&lt;br /&gt;
Text of http://redbrick.dcu.ie/~haus&lt;br /&gt;
  &lt;br /&gt;
  Life.&lt;br /&gt;
  It&#039;s all just one big fuck up really. People spend the majority of it looking for somebody else.&lt;br /&gt;
  Like, what if you never do find that person who&#039;s supposed to make you happy? Do you die miserable?&lt;br /&gt;
  Is anyone ever really always happy? Sure, I&#039;ve been happy. But it never seems to last.&lt;br /&gt;
  Happiness, building you up just to shatter it all down again when you won&#039;t see it coming since the beginning of time.&lt;br /&gt;
  So what&#039;s the answer to avoid being shattered? Not letting anything external to your own body/mind.&lt;br /&gt;
  That&#039;ll never work. You&#039;ll die alone like that.&lt;br /&gt;
  But maybe it is better to die alone rather than just get hurt, over and over again.&lt;br /&gt;
  I sure know I&#039;m sick of being hurt, aren&#039;t you?&lt;br /&gt;
&lt;br /&gt;
== lil_cain ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Lil cain emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
Recently spotted at the DCU Clubs &amp;amp; Socs Ball. Notice the anger expressed on his visage.&lt;br /&gt;
&lt;br /&gt;
  15:36 &amp;lt; lil_cain&amp;gt; hello great depression&lt;br /&gt;
  15:37 &amp;lt; lil_cain&amp;gt; time to start stockpiling cigarettes, alchol, and razorblades me thinks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  In Clubs and Socs: &amp;quot;I resign from life!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  Plan:&lt;br /&gt;
  Life. Loath it or ignore it, you can&#039;t like it.&lt;br /&gt;
&lt;br /&gt;
EEEMMMOOOOO!!!!&lt;br /&gt;
&lt;br /&gt;
== maK ==&lt;br /&gt;
[[Image:426404945a4491595700b660418857l.jpg]]&lt;br /&gt;
 [19:12:26]          maK | thisrbthingisreallyboring.&lt;br /&gt;
 [19:13:07]          maK | ilikeditatfirstbutnownoonetalknsaboutanythinelsebutinsults.&lt;br /&gt;
&lt;br /&gt;
 12:43 &amp;lt; maK&amp;gt; is this not hell already?&lt;br /&gt;
 12:44 &amp;lt; maK&amp;gt; you cant feel pain when your dead.&lt;br /&gt;
 12:44 &amp;lt; maK&amp;gt; death &amp;gt; life.&lt;br /&gt;
 12:45 &amp;lt; maK&amp;gt; ;_;&lt;br /&gt;
 12:45 &amp;lt; maK&amp;gt; *slit*&lt;br /&gt;
&lt;br /&gt;
== marvin ==&lt;br /&gt;
[[Image:Marvin.jpg]]&lt;br /&gt;
 [13:52:29]       marvin | life is a heap of shit&lt;br /&gt;
 [13:52:32]       marvin | good riddance&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merchelo ==&lt;br /&gt;
&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; it&#039;s true&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; my friends call me lovely so i don&#039;t cut myself&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
== nemo ==&lt;br /&gt;
 [14:08]  * nemo prays for the sweet release of death.&lt;br /&gt;
&lt;br /&gt;
His name even has the word &amp;quot;emo&amp;quot; in it. How much more evidence do you need?&lt;br /&gt;
&lt;br /&gt;
==ornat==&lt;br /&gt;
[[Image:emo_ornat.jpg]]&lt;br /&gt;
&lt;br /&gt;
Don&#039;t let this user&#039;s seemingly happy facade fool you, as this photo evidence proves her emoness. Also has a strange obsession with hugs.&lt;br /&gt;
&lt;br /&gt;
==phaxx==&lt;br /&gt;
[[Image:DSC01727.jpg]]&lt;br /&gt;
&lt;br /&gt;
Apart from the trademark frown, phaxx appears here to be taking an uncharacteristically feminine interest in hair, make-up and wearing womens clothing; all hallmarks of the emo.&lt;br /&gt;
&lt;br /&gt;
==tiroskan==&lt;br /&gt;
&lt;br /&gt;
In clubs and socs office: &amp;quot;I&#039;m too tired for life ;_;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== twiggy == &lt;br /&gt;
[[Image:emo_twiggy.JPG]]&lt;br /&gt;
 Likes to mention the war - emo.&lt;br /&gt;
&lt;br /&gt;
[13:41:46]      @twiggy | i wasn&#039;t about to suggest i was going to&lt;br /&gt;
&lt;br /&gt;
[13:41:51]      @twiggy | I&#039;m clearly not welcome &lt;br /&gt;
&lt;br /&gt;
[13:41:55]        @Zyox | YEAH&lt;br /&gt;
&lt;br /&gt;
[13:41:56]      @twiggy | *cuts wrists*&lt;br /&gt;
&lt;br /&gt;
[13:42:05]             -*- twiggy cries emo tears&lt;br /&gt;
&lt;br /&gt;
== undone ==&lt;br /&gt;
[[Image:Undone_emo.JPG]]&lt;br /&gt;
&lt;br /&gt;
Photographical evidence of undone on the loose in the real world has proven hard to come by.&lt;br /&gt;
He has made it onto the list due to his constant claims to haircare prowess and threats to kill his parents in #lobby. Any better pictures may save the life of many an ill-educated DCU student should they approach him unaware of his &amp;quot;emoness&amp;quot; so, please act with the utmost urgency in passing these on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
coconut: Away cutting himself.&lt;br /&gt;
&lt;br /&gt;
undone: i was just finding a razor&lt;br /&gt;
&lt;br /&gt;
undone: gonna do it now&lt;br /&gt;
&lt;br /&gt;
undone: liveblogging&lt;br /&gt;
&lt;br /&gt;
== zero ==&lt;br /&gt;
[[Image:Emo_zero.jpg]]&lt;br /&gt;
&lt;br /&gt;
WAF!&lt;br /&gt;
&lt;br /&gt;
Note: zero is no longer a member of RedBrick due to his epic exam fail and subsequent dropping out. Fagwaffery.&lt;br /&gt;
&lt;br /&gt;
== zyox ==&lt;br /&gt;
[[Image:ZyoxHair.jpg]]&lt;br /&gt;
&lt;br /&gt;
Although many have long suspected zyox of being emo, evidence has only recently come to light:&lt;br /&gt;
&lt;br /&gt;
 14:05:01 &amp;lt; Zyox&amp;gt; pain is good&lt;br /&gt;
 14:05:06 &amp;lt; Zyox&amp;gt; it reminds me im still alive&lt;br /&gt;
 14:05:10 &amp;lt; Zyox&amp;gt; ;_;&lt;br /&gt;
 14:05:12 &amp;lt; Zyox&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Cornd.jpg&amp;diff=9927</id>
		<title>File:Cornd.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Cornd.jpg&amp;diff=9927"/>
		<updated>2011-03-14T20:14:40Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Why_Did_You_Choose_Your_Username&amp;diff=9918</id>
		<title>Why Did You Choose Your Username</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Why_Did_You_Choose_Your_Username&amp;diff=9918"/>
		<updated>2011-03-02T18:06:55Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Feel free to add an an entry about your username below!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username in alphabetical order --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:AngelKat|AngelKat]]==&lt;br /&gt;
&lt;br /&gt;
Drusilla picked it...&lt;br /&gt;
&lt;br /&gt;
==[[User:art_wolf|art_wolf]]==&lt;br /&gt;
&lt;br /&gt;
Cool picture I have hanging up. Have had it for ages and its by Art Wolfe.&lt;br /&gt;
&lt;br /&gt;
==[[User:atlas|atlas]]==&lt;br /&gt;
&lt;br /&gt;
I originally handed in my student card, and said &amp;quot;Use my first name, please&amp;quot;. I got an email later giving me my username as &#039;James&#039; ( my middle name ). When I asked them to change, I decided to go with something a little cooler. I had been up for hours before that playing Mechwarrior somethingorother, and the Atlas mech was my favourite. I also, occasionally, feel like I have the weight of the world on my shoulders.&lt;br /&gt;
&lt;br /&gt;
==[[User:Attol|Attol]]==&lt;br /&gt;
My name, but backwards.&lt;br /&gt;
&lt;br /&gt;
==[[User:beimear|beimear]]==&lt;br /&gt;
It&#039;s eimear, with a &amp;quot;b&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
==[[User:bilco|bilco]]==&lt;br /&gt;
&lt;br /&gt;
Cause as a fresher I though it was the character&#039;s name from The Hobbit&lt;br /&gt;
&lt;br /&gt;
==[[User:bunbun|bunbun]]==&lt;br /&gt;
It&#039;s kinda from my surname, in a way...&lt;br /&gt;
Also elephant made me.&lt;br /&gt;
&lt;br /&gt;
==[[User:cain|cain]]==&lt;br /&gt;
&lt;br /&gt;
I always thought Cain got a raw deal. Firstborn son of Adam, built the first city on earth and he&#039;s remembered for allegedly killing his brother Abel though the evidence is, to put it mildly, unconvincing and God was clearly biased against him. When I joined Redbrick, Cain was gone so I got Caine, which was the spelling of the name in an RPG I played at the time. Dropped the &#039;e&#039; in my second year.&lt;br /&gt;
&lt;br /&gt;
==[[User:calyx|calyx]]==&lt;br /&gt;
Misread the name of a song. In a perfect world, I would have been calx.&lt;br /&gt;
&lt;br /&gt;
==[[User:cambo|cambo]]==&lt;br /&gt;
&lt;br /&gt;
An abbreviation of sorts on my surname (campbell)... original eh?&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
I was using it as a web handle long before I joined Redbrick. It comes from the name of one of my first roleplaying characters that wasn&#039;t just a bunch of stats. The name for that roleplaying character though, came from the computer game Streetfighter 2.&lt;br /&gt;
&lt;br /&gt;
Well actually cammy was my second choice. I would have liked to use The_Dead_One but that exceeds the 8 character limit.&lt;br /&gt;
&lt;br /&gt;
==[[User:carri|carri]]==&lt;br /&gt;
I wanted giggleberry but its too long. So me being my epically cool self just used my actual &#039;name&#039;. &lt;br /&gt;
&lt;br /&gt;
==[[User:coconut|coconut]]==&lt;br /&gt;
&lt;br /&gt;
On Clubs and Socs Day 2005 I was put on the spot while joining Redbrick (LIKE EVERYONE ELSE WAS)! It went a little something like this:&lt;br /&gt;
&lt;br /&gt;
atlas: &amp;quot;Okay, and pick a username.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
Me: &amp;quot;What... now?!&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
atlas: &amp;quot;Yes.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
Me: &amp;quot;Right now?!?&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
atlas: &amp;quot;Yes.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
Me: &amp;quot;Errr..&amp;quot; *looks down at the free chocolate being given away - notices the wrappers and ingredients* &amp;quot;Em.. coconut?&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
atlas: &amp;quot;kk lol fag&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
Me: &amp;quot;I&#039;ll change it later!&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That last part was, evidently, a lie.&lt;br /&gt;
&lt;br /&gt;
==[[User:colmmacc|colmmacc]]==&lt;br /&gt;
I was assigned the username colmmacc for the purposes of my first ever internet account (and job), colmmacc@clubi.ie , way back when in 1995/6 (I think). Ever since, I&#039;ve used it  for all my accounts and it works at every domain on which I hold an account. Despite the huge coincidence, my username is fact not just a mere contracted concatonation of my real name &amp;quot;Colm MacCarthaigh&amp;quot;, but is fact an acronym. It stands for &amp;quot;Colm&#039;s On-Line Memetic Mechanism [for] Accessing Complicated Computers&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
==[[User:cooker3|cooker3]]==&lt;br /&gt;
It is my username for the lab machines in the CA building, it&#039;s not to do with an obcession with cookers!&lt;br /&gt;
&lt;br /&gt;
==[[User:credak|credak]]==&lt;br /&gt;
Originally I wanted creadak (notice the extra a), cause Crea Dak was a character I had on Guild wars. I wrote it down, and the admins left out the extra a. I kinda like it better this way now...&lt;br /&gt;
&lt;br /&gt;
==[[User:david|david]]==&lt;br /&gt;
The year that I joined DCU Hasselhoff was given a star on the Hollywood walk of fame.  With all the new challenges in my life at that time I found that he was someone I could look up to.  I could admire his achievements.  He was like an uncle to me.  I grew up on Kinght Rider and am looking forward to the new movie coming out this year.  And then when I got a little older and started noticing girls I got interested in Baywatch.  I wanted to be the stud that he was on that show.  Appropriately in 2000 when I joined redbrick he released one of his many hit albums in Germany - &amp;quot;The Magic Colleciton&amp;quot;.  So I chose david as my redbrick username because ... well actually its not that interesting really, its my name in real life.&lt;br /&gt;
&lt;br /&gt;
==[[User:doc|DoC]]==&lt;br /&gt;
It&#039;s the initials of my real name. I&#039;ve been called DoC in real life by friends, family, etc, for as long as I can remember.&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
Friends in college said that I needed a nickname, probably because they&#039;re too lazy to say my full name &amp;quot;Diarmuid&amp;quot; and I find &amp;quot;Diarm&amp;quot; quite creepy, so basically, &amp;quot;dragon&amp;quot; popped into their heads and it stuck! I used be called siphi (for no particular reason, it was a random name I was known by onli ne), then changed to drag0n (with a zero). The zero is because the user &amp;quot;dragon&amp;quot; is allready taken on rb. But everyone loved the new name so I added the zero. If you hey the other dragon, you generally get a confused hey in response, so I generally have heys disabled. anyways...&lt;br /&gt;
&lt;br /&gt;
==[[User:dramabob|dramabob]]==&lt;br /&gt;
When I signed up, along with everyone else in known history, back in 2004 I honestly can&#039;t remember being asked to pick a username. Imagine my surprise when later that week I got an email telling me my username was &amp;quot;roibeard&amp;quot; (er, my first name). Boo-urns. I approached one of the Kings Of Redbrick ([[User:Dizer|dizer]], [[User:Atlas|atlas]] or [[User:Phaxx|phaxx]], can&#039;t remember which) and asked to change my username to the much cooler sounding &amp;quot;silentbob&amp;quot; of &amp;quot;Clerks&amp;quot; fame (and several other, less good, movies). Further boo-urns ensued when t&#039;was revealed that &amp;quot;silentbob&amp;quot; had one character too many, so having joined DCU Drama in addition to RB, I opted to go with &amp;quot;dramabob&amp;quot; - thus was born dramabob. w00t. I admit to being miffed upon hearing that both &amp;quot;bob&amp;quot; and &amp;quot;bobb&amp;quot; were already used up, but found out many many years later that &amp;quot;bobb&amp;quot; was a next door neighbour of mine in my long lost childhood in the mid 1970&#039;s. Bizarre.&lt;br /&gt;
&lt;br /&gt;
==[[User:dregin|dregin]]==&lt;br /&gt;
The lead guitarist with the Backyard Babys&#039; name is dregen[sic]. I took it and stuck an x on the end for a few years as a forum alias but then knocked off the x. tada!! &lt;br /&gt;
&lt;br /&gt;
==[[User:drusilla|drusilla]]==&lt;br /&gt;
My nick was surprisingly enough, from the character on Buffy! Friends of mine in second year of school gave it to me when they noticed the similarities between myself and the insane vampire. Funnily, dru was my second nick on RedBrick, before that I was zerocool&lt;br /&gt;
&lt;br /&gt;
==[[User:duff|duff]]==&lt;br /&gt;
It&#039;s my surname.&lt;br /&gt;
&lt;br /&gt;
==[[User:elmer|elmer]]==&lt;br /&gt;
My username came from my first ever email address(elmer@clubi.ie) which i chose based on the looney tunes character elmer fudd&lt;br /&gt;
&lt;br /&gt;
==[[User:exzantia|exzantia]]==&lt;br /&gt;
As many, many people have pointed out, my name seems like a random string of letters, and it kinda is... When I was signing up for a Yahoo mail account in &#039;98 everything I tried was already taken. I was not having under-scores or numbers so I decided to come up with something that would always be available! I thus far have succeeded.&lt;br /&gt;
&lt;br /&gt;
==[[User:eondev|eondev]]==&lt;br /&gt;
I use a different username elsewhere but decided it was time for a change. I always liked the word Eon and I started to develop (dev) an MMORPG around the time I was joining redbrick so I chose EonDev. Yes, horribly boring but /shrug&lt;br /&gt;
&lt;br /&gt;
==[[User:fatwa|fatwa]]==&lt;br /&gt;
&lt;br /&gt;
In first year, whilst learning to program, my friend Andrew wrote a program that printed out &amp;quot;That&#039;s a fatwa on you, mein freund&amp;quot;.&lt;br /&gt;
I thought it was funny and it must have stuck in my head for redbrick registering.  Also, it&#039;s short for &amp;quot;fat wanker&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:fox_chic|fox_chic]]==&lt;br /&gt;
&lt;br /&gt;
Cause I&#039;m an xphile and Mulder&#039;s first name is Fox. :)&lt;br /&gt;
&lt;br /&gt;
==[[User:gizmo|gizmo]]==&lt;br /&gt;
My nick came from a combination of thinking gizmo was a pretty cool name due to that little flurry critter in Gremlins and also cns putting me on the spot on Clubs And Socs day when I first joined so that I couldn&#039;t think of anything else. Strange, but true.&lt;br /&gt;
&lt;br /&gt;
==[[User:gary|gary]]==&lt;br /&gt;
Well, my original name was garyod and there was wordplay went around with that *cough*gayrod*cough*, so I got it changed to my actual name :)&lt;br /&gt;
==[[User:gavin|gavin]]==&lt;br /&gt;
I needed a username I wouldn&#039;t forget and seeing as Gavin was written on my underpants I decided to use that. Handy quinkadink that it is also my real name eh !&lt;br /&gt;
&lt;br /&gt;
==[[User:geekity|geekity]]==&lt;br /&gt;
Tis from PhD comic, the Thesis arc (a PhD comic take on Matrix) and the character which loosely coincided with Trinity in the Matrix series. It&#039;s been my profile on most things for a while, although it was supposed to be geekity2 originally, someone just didn&#039;t bother with the 2 when they created my account. &lt;br /&gt;
&lt;br /&gt;
==[[User:gmblitis|gmblitis]]==&lt;br /&gt;
Would&#039;ve been gamblitis but for those dam restrictions!so the idea came in the first place came from my unhealthy obsession with horses and cards!&lt;br /&gt;
&lt;br /&gt;
==[[User:gw|gw]]==&lt;br /&gt;
They are my initials.&lt;br /&gt;
&lt;br /&gt;
==[[User:hauk|hauk]]==&lt;br /&gt;
Well, I got put on the spot when I first went to play UT in secondary school(We used to play it on the old shitty computers they had, at lunch time). So Dalamar from #intersocs, who was in my school, started to lose the plot with player12, and shouted at player12 to change his/her name. So I tried to think of a good name. And at the time I was reading Stormblade from the Dragonlance series, and Hauk was a ranger in that book. So I eh &amp;quot;temporarily&amp;quot; used the name.. It wasn&#039;t meant to stick! But I like it now ^_^&lt;br /&gt;
&lt;br /&gt;
==[[User:hurl|hurl]]==&lt;br /&gt;
My second name is Hurrell and people cant pronouce it so I went by hurl. Turns out Hurrell was originally Hurl, you know, in the old country, so its my family name. No, I dont have a vomit fetish, but I&#039;m always open to new experiences :P&lt;br /&gt;
&lt;br /&gt;
==[[User:ian|ian]]==&lt;br /&gt;
&lt;br /&gt;
Its my name JACKASS!&lt;br /&gt;
&lt;br /&gt;
==[[User:jesjes|jesjes]]==&lt;br /&gt;
My name is Jessica. And people from home call me Jesi, and at some stage during sixth year I decided I liked Jess much more. So when I got THE INTERNETS, I just called myself jesjes. It stuck.&lt;br /&gt;
&lt;br /&gt;
==[[User:johan|johan]]==&lt;br /&gt;
&lt;br /&gt;
Was given this nick when a German Assistant in Secondary School tried to pronounce my name, Eoghan, and came out with Johan, and it stuck&lt;br /&gt;
&lt;br /&gt;
==[[User:keloe|keloe]]==&lt;br /&gt;
&lt;br /&gt;
I wrote down kehoe, my surname and an old nickname, on the slip. However, due to my incapability to write h&#039;s correctly, the admins read it as keloe.&lt;br /&gt;
&lt;br /&gt;
==[[User:kpodesta|kpodesta]]==&lt;br /&gt;
&lt;br /&gt;
Because that&#039;s my real name. I thought Redbrick was some email yoke - all else fails, I was getting a decent email address.&lt;br /&gt;
&lt;br /&gt;
==[[User:lil_cain|lil_cain]]==&lt;br /&gt;
&lt;br /&gt;
Wanted lil_cian, as he is the smaller Cian, it was mistyped.&lt;br /&gt;
&lt;br /&gt;
At this point, I&#039;ve grown quite fond of it. Unlike lil_cian, it makes me almost unique on the internet.&lt;br /&gt;
&lt;br /&gt;
==[[User:lithium|lithium]]==&lt;br /&gt;
&lt;br /&gt;
Coz I like the sound of it. And coz it goes crazy when you put it in water. And not because of the Nirvana song.&lt;br /&gt;
&lt;br /&gt;
==[[User:macbain|macbain]]==&lt;br /&gt;
He wanted the username &#039;mcbain&#039; but Karlos (mcbain) got it before him. Being original, Sarv decided that macbain would do instead, so he could forever confuse new users between himself and Karl.&lt;br /&gt;
&lt;br /&gt;
==[[User:maK|maK]]==&lt;br /&gt;
Drugs.&lt;br /&gt;
&lt;br /&gt;
==[[User:marvin|marvin]]==&lt;br /&gt;
There are three references here : Starvin Marvin from South Park, Marvin The Paranoid Android from Hitch Hikers Guide To The Galaxy and Marvin the Martian from the Warner Bros cartoon. I&#039;ll leave it to the reader to decide which one was the greatest influence (hint: it wasn&#039;t Starvin Marvin).&lt;br /&gt;
&lt;br /&gt;
==[[User:merchelo|merchelo]]==&lt;br /&gt;
On a school trip back when I was young, sitting in an italian hotel, talking to the chef about football, he suddenly asked my name, and he couldn&#039;t pronounce my surname, Maxwell, so he decided to italianiase my name, by calling me Roberto Merchello, I thought the name was cool, and started to use it in championship manager, and after registering with the most shittest nick ever, &amp;quot;partyb&amp;quot; I changed it to the 8 char nick, merchelo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:mephisto|mephisto]]==&lt;br /&gt;
Diablo and Baal were taken, and i registered after staggering in to college, having been up about 20 hours straight playing a LAN game of Diablo 2. Also my trademark nickname was too long.&lt;br /&gt;
&lt;br /&gt;
==[[User:mo|mo]]==&lt;br /&gt;
Due to my considerable soccer talent, I was nicknamed &amp;quot;mo&amp;quot; after Mo Johnston, the scottish football hero.&lt;br /&gt;
&lt;br /&gt;
==[[User:MoJu|MoJu]]==&lt;br /&gt;
It&#039;s in a similar vein to HoJu(Homer Junior) from the Simpsons. Given to me by a someone on a forum after they saw a picture of me and thought I was someone named Mordeth. So they suggested Mordeth Junior which was then condensed to MoJu. I then adopted it as my second online nick.&lt;br /&gt;
&lt;br /&gt;
==[[User:montoya|montoya]]==&lt;br /&gt;
&lt;br /&gt;
The name is that of a character from the book &amp;quot;The Princess Bride&amp;quot; by William Goldman. The specific character is Inigo Montoya, a Spanish swordsman out for revenge against a 6-fingered man who killed Inigo&#039;s father.&lt;br /&gt;
&lt;br /&gt;
==[[User:moridin|moridin]]==&lt;br /&gt;
&lt;br /&gt;
The most evil and therefore cool character in a series of books that I was reading. Said series of books has since degenerated into a mush of crap writing. Boo.&lt;br /&gt;
&lt;br /&gt;
==[[User:nanaki|nanaki]]==&lt;br /&gt;
&lt;br /&gt;
Used the name on forums for a while, first thing that came to mind when signing up. Favourite character from FF7. And no, I didn&#039;t use a soft.&lt;br /&gt;
&lt;br /&gt;
==[[User:nit|niT]]==&lt;br /&gt;
Originally my name was a combination of many words that described me, and was dreamt up whilst I was at college in Aylesbury.  It all started when I got a demo copy of Diablo from my cousin in Singapore, and us lads built our first LAN at my mate Dave&#039;s house.  We also played Carmegeddon, the Star Wars game and Quake 2 (of which my mate Dave had a 600mhz processor and TWO 3dfx cards linked up in parallell - he was our God).  It was necessary for me to have a character name in Diablo so I chose Nitsuj Buaya Chen, the latter two meaning &#039;Crocadile man that snaps up ladies&#039; (in Singapore slang) and monkey (as my star sign is golden monkey).  I later joined a CS clan called Black Legion and people naturally shortened my name down to nit. At that time I also had a friend who was called &#039;kippy&#039; in real life and online, so I started using nit in real life too.  Later I joined a &#039;talker&#039; called theManor which was a twin site to the LambdaMoo, there was a guy there who set it all up and went by the nick &#039;beN&#039;, he and girlfriend sadly died in a car accident and so manor spods paid tribute but capitalising the final letter of their nick, hence why I use niT.&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
8 letter truncation of my real name (boring but true.)&lt;br /&gt;
&lt;br /&gt;
==[[User:noodlez|noodlez]]==&lt;br /&gt;
&lt;br /&gt;
Shorter version of one of my most commonly used user names. I picked that one before when I needed a quick username for an IRC channel and I was eating a bowl of noodles.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:ornat|ornat]]==&lt;br /&gt;
&lt;br /&gt;
You&#039;d have to ask my parents that question. Ornat is my real name, and unlike popular belief, no, I am not a guy!&lt;br /&gt;
&lt;br /&gt;
==[[User:p|p]]==&lt;br /&gt;
&lt;br /&gt;
Back the old days of IOL/Indigo&#039;s IRC servers I used a variety of names, which all began with the letter p. Eventually, I ditched the different nicknames and used ^P^. Redbrick doesn&#039;t support weird characters though, so now it&#039;s just p. It also happens to be my middle initial.&lt;br /&gt;
&lt;br /&gt;
==[[User:Paddez|Paddez]]==&lt;br /&gt;
Used to use the name Paddee on various other online communities/games, Wanted an Irish sounding name so I settled on the variation of Paddy with 2 E&#039;s instead of the Y. When signing up for Redbrick the person who took down my name either misheard me or I said it wrong, whatever the reason i am now an Irish-Mexican that goes by the name of Paddez&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:phaxx|phaxx]]==&lt;br /&gt;
&lt;br /&gt;
Originally from the character Lord Fax in the book [http://www.google.com/search?q=dragonriders+of+pern Dragonriders Of Pern] by Anne McCaffrey. I used Lord_Fax in [http://research.microsoft.com/vwg/projectsheets/comicchat.htm MS Comic Chat] for a while. I saw somebody using a &#039;ph&#039; instead of an &#039;f&#039;, and thought, in that usual 13-year-old way, OMGZ COOL, and promptly became LordPhaxx. &lt;br /&gt;
I was LordPhaxx for a few years, until until around 16 when I met a bunch of other Irish nerds one afternoon. [[User:jerry|jerry]] was among them, and commented, &amp;quot;With a name like LordPhaxx, I expected you to be taller.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
So er, I dropped the pretentious &#039;Lord&#039;, and I&#039;ve been &#039;phaxx&#039; ever since.&lt;br /&gt;
&lt;br /&gt;
See, nothing to do with fax machines! :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:receive|receive]]==&lt;br /&gt;
&lt;br /&gt;
It was Michelle Smith (swallow) that dragged me along to sign up during first year, so I&#039;d handed over my 4euro before I&#039;d begun to think of a username, so I turned and said &amp;quot;Shit, Michelle, what will I pick?&amp;quot; and she suggested &amp;quot;receive&amp;quot; because it went so well with swallow. Stupidly I agreed, and it stuck (after we found a spell checker to check how to spell it that is), so i never changed it to anything better. Ironically, i never have been at the receiving end of swallows abilities.&lt;br /&gt;
&lt;br /&gt;
==[[User:r0b|r0b]]==&lt;br /&gt;
Rob is my name *shock* *gasp* rob was taken so used r0b instead. Amazing story tbh&lt;br /&gt;
&lt;br /&gt;
==[[User:robby|robby]]==&lt;br /&gt;
&lt;br /&gt;
its short for robert...thats cool no?&lt;br /&gt;
&lt;br /&gt;
==[[User:ru|ru]]==&lt;br /&gt;
&lt;br /&gt;
I really had no clue what I wanted to have as my username so just picked my most used nick name - ru...short for Ruaidhri...&lt;br /&gt;
&lt;br /&gt;
==[[User:sadpanda|sadpanda]]==&lt;br /&gt;
&lt;br /&gt;
Well like everyone, I had to pick on the day so i picked a nickname i had been using for yahoo answers. That account has since been deleted for either calling creationists braindead, redneck, ignorant, arrogant fucks or posting a howtohackwindowsandbel33t.on.nimp.org to a &amp;quot;how do i hack and be cool?&amp;quot;. &lt;br /&gt;
Those 2 things happened the same week so it could be either. The nickname originally came up a few years after the sexual harassment panda episode but I was watching some westboro baptist church protests (the &amp;quot;god hates fags&amp;quot;/&amp;quot;god hates ireland&amp;quot;/&amp;quot;god hates sweden&amp;quot; people who shocked even fox). There would always be a bigger counter protest than their protest.&lt;br /&gt;
One of the counter protesters had on the panda suit and had a sign &amp;quot;Phelps makes me a sad panda&amp;quot;. I found that funny and used it for a few sites.&lt;br /&gt;
Now looking back on it, I don&#039;t find it funny at all. Thank you redbrick article for ruining the way I look at my nickname.&lt;br /&gt;
&lt;br /&gt;
==[[User:sandman|sandman]]==&lt;br /&gt;
&lt;br /&gt;
I didn&#039;t. It was assigned on the basis that a) I was asleep and b) I read comics, didn&#039;t I? Ironically, I hadn&#039;t read much Sandman at the time.&lt;br /&gt;
&lt;br /&gt;
==[[User:scraib|scraib]]==&lt;br /&gt;
&lt;br /&gt;
I&#039;m from Kilkenny and &#039;ScrÃ¡ib&#039; is the Irish for &#039;Cat-Scratch&#039;! &#039;Tis a very GAA name, but to be honest I could never play hurling so I picked it really cause it sounded cool... &lt;br /&gt;
&lt;br /&gt;
==[[User:shimoda|shimoda]]==&lt;br /&gt;
&lt;br /&gt;
It was a character in a book (Illusions by Richard Bach) I read during my formative years. Another rb user thought the description of the protagonist was suited to me so I nabbed the name.&lt;br /&gt;
&lt;br /&gt;
==[[User:singer|singer]]==&lt;br /&gt;
&lt;br /&gt;
I was a singer in a band. The guitarist mocked me for being the singer by calling me &amp;quot;singer&amp;quot;. The nickname stuck. Non-Redbrick people address me as singer! My 2nd choice username was &amp;quot;scano&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
==[[User:spanner|spanner]]==&lt;br /&gt;
&lt;br /&gt;
In fact eeh! picked it out during the hay days of eeh gift grub and in fairness now sometimes im a bit of a spanner.&lt;br /&gt;
&lt;br /&gt;
==[[User:spock|spock]]==&lt;br /&gt;
&lt;br /&gt;
I chose spock because I had no idea that it would follow me around for at least the next 10 years.&lt;br /&gt;
I didn&#039;t even know what Redbrick was when I was joining, and when I had a membership form thrust&lt;br /&gt;
in my face by Hyper on Freshers day 1996, we had three preferences for username.  I put down &amp;quot;spock&amp;quot; as my first preference.  It wasn&#039;t taken, and that is how I didn&#039;t end up with the username &amp;quot;data&amp;quot;, or &amp;quot;benji&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==[[User:Steef|Steef]]==&lt;br /&gt;
&lt;br /&gt;
When i joined games soc i chose the name of character i liked from a game as my user name, but it ended up with allot of people thinking my real name was steve :( . &lt;br /&gt;
&lt;br /&gt;
==[[User:svan|svan]]==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;S&amp;lt;/u&amp;gt;arunas &amp;lt;u&amp;gt;Van&amp;lt;/u&amp;gt;cevicius. First letter of name, then first 3 letters from surname.&lt;br /&gt;
&lt;br /&gt;
==[[User:Taurus|Taurus]]==&lt;br /&gt;
&lt;br /&gt;
It is my star sign, so I just went with that. Sounds cool enough. :-)&lt;br /&gt;
&lt;br /&gt;
==[[User:thedara|thedara]]==&lt;br /&gt;
&lt;br /&gt;
My nick was given to me years before redbrick on irc (irc.phishy.net) I was the first person some americans had met called Dara and they&lt;br /&gt;
found that interesting for some reason or other and hence I became thedara.&lt;br /&gt;
On redbrick irc i&#039;m known as Darz0re, It was a in-joke at the time when myself and dizer stuck z0re at the end of out names&lt;br /&gt;
hence thez0rekorp.com and z0re.org&lt;br /&gt;
&lt;br /&gt;
==[[User:tnkrbell|tnkrbell]]==&lt;br /&gt;
&lt;br /&gt;
As a kid my dad used to always call me Belle.When I got older and after many trips to Disney I took a loving to the mischiefious tinkerbell from Peter Pan. Tinkerbell though was too long so JesJes decided on tnkrbell instead.&lt;br /&gt;
&lt;br /&gt;
==[[User:train|train]]==&lt;br /&gt;
&lt;br /&gt;
It&#039;s a shortened version of a gaming nickname I use.&lt;br /&gt;
&lt;br /&gt;
==[[User:tyro|tyro]]==&lt;br /&gt;
&lt;br /&gt;
It means: A beginner in learning something.&lt;br /&gt;
&lt;br /&gt;
==[[User:tziegler|tziegler]]==&lt;br /&gt;
&lt;br /&gt;
I have a strange addiction to The West Wing.&lt;br /&gt;
&lt;br /&gt;
==[[User:undone|undone]] ==&lt;br /&gt;
&lt;br /&gt;
Couldn&#039;t think of anything on Clubs &amp;amp; Socs day, so for about 2 days my username was my actual name. Then I picked this, because of the Weezer song, but also because I think it&#039;s a nice word.&lt;br /&gt;
&lt;br /&gt;
==[[User:Urizen|Urizen]]==&lt;br /&gt;
&lt;br /&gt;
A God from one of William Blake&#039;s epic poems. Thought it sounded epic, so that seemed right.&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
&lt;br /&gt;
A long time ago in a net cafe far, far away, a sexy asian friend by the name of quank said &amp;quot;Hey Andrew, stop using the name andrew in CS. Use werdna instead. It&#039;s andrew only backwards!&amp;quot; - That lasted about five minutes until people got bored trying to pronounce it (&amp;quot;OMG! WERDNA! QUIT TK&#039;ING YOU NOOB!&amp;quot;) and just started shouting werdz instead (&amp;quot;OMG! WERDZ! QUIT TK&#039;ING YOU NOOB!&amp;quot;). And that&#039;s my life story up until this point.&lt;br /&gt;
&lt;br /&gt;
==[[User:wilburt|wilburt]]==&lt;br /&gt;
&lt;br /&gt;
Long story, guys i used to know named me Wilburtino, i didnt really like it cos they were muppets. However, it grew on me over time. Wanted Wilburtino or Will as my username but they wouldnt let me :( so wilburt  was the only one left. Like all rb usernames i think, they are spur of the moment. (or admin mistakes)&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Spam&amp;diff=9912</id>
		<title>Spam</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Spam&amp;diff=9912"/>
		<updated>2011-03-01T02:58:09Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Spam, like sarcasm, is often referred to as the highest form of intelligence.&lt;br /&gt;
&lt;br /&gt;
There are varying degrees of spam. For instance, at the lower end of the scale, you have flooding a channel with a repeated line of text, or links to a shock site. The classier spammer will choose a form of ASCII art to flood a channel, such as a figlet, cowsay or epic coloured drawing such as baconcorn.txt.&lt;br /&gt;
&lt;br /&gt;
[[image:Bacon.JPG]]&lt;br /&gt;
&lt;br /&gt;
The only real problem with spam of this magnitude is flooding your buffer. If you&#039;re in an active channel, you&#039;re guaranteed some [[Waf]] is going to combo break, or you&#039;re going to get kicked. Hence spam is quite useless and this page is now [[Spam]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Spam&amp;diff=9911</id>
		<title>Spam</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Spam&amp;diff=9911"/>
		<updated>2011-03-01T02:57:04Z</updated>

		<summary type="html">&lt;p&gt;Beimear: New page: Spam, like sarcasm, is often referred to as the highest form of intelligence.  There are varying degrees of spam. For instance, at the lower end of the scale, you have flooding a channel w...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Spam, like sarcasm, is often referred to as the highest form of intelligence.&lt;br /&gt;
&lt;br /&gt;
There are varying degrees of spam. For instance, at the lower end of the scale, you have flooding a channel with a repeated line of text, or links to a shock site. The classier spammer will choose a form of ASCII art to flood a channel, such as a figlet, cowsay or epic coloured drawing such as baconcorn.txt.&lt;br /&gt;
&lt;br /&gt;
[[image:Bacon.jpg]]&lt;br /&gt;
&lt;br /&gt;
The only real problem with spam of this magnitude is flooding your buffer. If you&#039;re in an active channel, you&#039;re guaranteed some [[Waf]] is going to combo break, or you&#039;re going to get kicked. Hence spam is quite useless and this page is now [[Spam]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Bacon.JPG&amp;diff=9910</id>
		<title>File:Bacon.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Bacon.JPG&amp;diff=9910"/>
		<updated>2011-03-01T02:30:43Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9909</id>
		<title>Gay.pl</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9909"/>
		<updated>2011-03-01T02:29:54Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gay.pl is the most useful irssi script you will ever come across. EVER.&lt;br /&gt;
&lt;br /&gt;
[[image:Gay.jpeg]]&lt;br /&gt;
&lt;br /&gt;
===How Do I Get Gay.pl===&lt;br /&gt;
First of all you should go to [http://www.gay.pl www.gay.pl] (which is clearly a link to Poland&#039;s Gay website).&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve spent many hours there, you should also take a look at [http://www.gay.pl  http://gruntle.org/projects/irssi/gay/] and place the latest version of gay.pl into your very own .irssi/scripts folder. Now all you have to do is /run gay.pl and you&#039;re totally GAY! \o/&lt;br /&gt;
&lt;br /&gt;
To view all of gay.pl&#039;s options, just type /gay -help, and you&#039;ll see the wide variety of flags the script has to offer.&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Gay.jpeg&amp;diff=9908</id>
		<title>File:Gay.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Gay.jpeg&amp;diff=9908"/>
		<updated>2011-03-01T02:27:52Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9907</id>
		<title>Gay.pl</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9907"/>
		<updated>2011-03-01T01:57:33Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gay.pl is the most useful irssi script you will ever come across. EVER.&lt;br /&gt;
&lt;br /&gt;
===How Do I Get Gay.pl===&lt;br /&gt;
First of all you should go to [http://www.gay.pl www.gay.pl] (which is clearly a link to Poland&#039;s Gay website).&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve spent many hours there, you should also take a look at [http://www.gay.pl  http://gruntle.org/projects/irssi/gay/] and place the latest version of gay.pl into your very own .irssi/scripts folder. Now all you have to do is /run gay.pl and you&#039;re totally GAY! \o/&lt;br /&gt;
&lt;br /&gt;
To view all of gay.pl&#039;s options, just type /gay -help, and you&#039;ll see the wide variety of flags the script has to offer.&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Great_Ban_Of_%2711&amp;diff=9906</id>
		<title>Great Ban Of &#039;11</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Great_Ban_Of_%2711&amp;diff=9906"/>
		<updated>2011-03-01T01:54:55Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Early in January 2011, when the student population of RedBrick were under pressure studying for their exams, a strange phenomenon occurred. Some students resorted to spamming channels with figlets and the like to get an intense buzz of adrenaline before the 1st semester exams. &lt;br /&gt;
&lt;br /&gt;
The spam wasn&#039;t tolerated.&lt;br /&gt;
&lt;br /&gt;
The associates and majority of the students were angered, forcing the committee to implement an automatic 24hour ban at the first sign of a figlet. #lobby went +t for the remainder of the exams (with something to the effect of &amp;quot;WARNING FIGLET = 24 HOUR BAN&amp;quot;) and the spammers looked for new ways to get their kicks. They came up with the ingenious concept of collaborative figleting, in which 3 or more members would create a single figlet - If you&#039;re only posting two lines you can&#039;t get banned, right?&lt;br /&gt;
&lt;br /&gt;
WRONG&lt;br /&gt;
&lt;br /&gt;
 16:50 &amp;lt; a&amp;gt;    ____                _     ____                       __   _ _ _&lt;br /&gt;
 16:50 &amp;lt; a&amp;gt;   / ___|_ __ ___  __ _| |_  | __ )  __ _ _ __     ___  / _| ( ) / |&lt;br /&gt;
 16:50 &amp;lt; n&amp;gt;  | |  _| &#039;__/ _ \/ _` | __| |  _ \ / _` | &#039;_ \   / _ \| |_  |/| | |&lt;br /&gt;
 16:50 &amp;lt; n&amp;gt;  | |_| | | |  __/ (_| | |_  | |_) | (_| | | | | | (_) |  _|   | | |&lt;br /&gt;
 16:50 &amp;lt; l&amp;gt;   \____|_|  \___|\__,_|\__| |____/ \__,_|_| |_|  \___/|_|     |_|_|&lt;br /&gt;
 16:51 &amp;lt; hauK&amp;gt; lol&lt;br /&gt;
 16:51 &amp;lt; dever&amp;gt; lol&lt;br /&gt;
 16:51 &amp;lt; atlas&amp;gt; Smooth.&lt;br /&gt;
 16:51 &amp;lt; dever&amp;gt; no bans. not figlet. excellent.&lt;br /&gt;
 16:51 &amp;lt; beimear&amp;gt; grand&lt;br /&gt;
 16:52 -!- mode/#lobby [+o isaac702] by ChanServ&lt;br /&gt;
 16:52 &amp;lt; dever&amp;gt; have the rules on figlets been solidified yet?&lt;br /&gt;
 16:52 &amp;lt; a&amp;gt; WHUWHUWHU&lt;br /&gt;
 16:52 &amp;lt; dever&amp;gt; that is not a figlet isaac702&lt;br /&gt;
 16:52 &amp;lt; a&amp;gt; I only pasted 2 lines. is that a ban?&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*lithium@*.dcu.ie] by isaac702&lt;br /&gt;
 16:52 -!- l was kicked from #lobby by isaac702 [l]&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*e@*.redbrick.dcu.ie] by bunbun&lt;br /&gt;
 16:52 -!- a was kicked from #lobby by bunbun [a]&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*nanaki@*.dcu.ie] by bunbun&lt;br /&gt;
 16:52 -!- n was kicked from #lobby by bunbun [n]&lt;br /&gt;
 --- Log closed Mon Jan 17 16:52:24 2011&lt;br /&gt;
&lt;br /&gt;
The ops went on a banning rampage and our heroes memory lived on for those 24 hours in /bans #lobby.&lt;br /&gt;
Soon the carnage spread to other channels (mainly #intersocs) and even pms.&lt;br /&gt;
&lt;br /&gt;
After exams, order was somewhat restored with spam returning to normal(ish) levels.&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Great_Ban_Of_%2711&amp;diff=9905</id>
		<title>Great Ban Of &#039;11</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Great_Ban_Of_%2711&amp;diff=9905"/>
		<updated>2011-03-01T01:54:20Z</updated>

		<summary type="html">&lt;p&gt;Beimear: New page: Early in January 2011, when the student population of RedBrick were under pressure studying for their exams, a strange phenomenon occurred. Some students resorted to spamming channels with...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Early in January 2011, when the student population of RedBrick were under pressure studying for their exams, a strange phenomenon occurred. Some students resorted to spamming channels with figlets and the like to get an intense buzz of adrenaline before the 1st semester exams. &lt;br /&gt;
&lt;br /&gt;
The spam wasn&#039;t tolerated.&lt;br /&gt;
&lt;br /&gt;
The associates and majority of the students were angered, forcing the committee to implement an automatic 24hour ban at the first sign of a figlet. #lobby went +t for the remainder of the exams (with something to the effect of &amp;quot;WARNING FIGLET = 24 HOUR BAN&amp;quot;) and the spammers looked for new ways to get their kicks. They came up with the ingenious concept of collaborative figleting, in which 3 or more members would create a single figlet - If you&#039;re only posting two lines you can&#039;t get banned, right?&lt;br /&gt;
&lt;br /&gt;
WRONG&lt;br /&gt;
&lt;br /&gt;
 16:50 &amp;lt; a&amp;gt;    ____                _     ____                       __   _ _ _&lt;br /&gt;
 16:50 &amp;lt; a&amp;gt;   / ___|_ __ ___  __ _| |_  | __ )  __ _ _ __     ___  / _| ( ) / |&lt;br /&gt;
 16:50 &amp;lt; n&amp;gt;  | |  _| &#039;__/ _ \/ _` | __| |  _ \ / _` | &#039;_ \   / _ \| |_  |/| | |&lt;br /&gt;
 16:50 &amp;lt; n&amp;gt;  | |_| | | |  __/ (_| | |_  | |_) | (_| | | | | | (_) |  _|   | | |&lt;br /&gt;
 16:50 &amp;lt; l&amp;gt;   \____|_|  \___|\__,_|\__| |____/ \__,_|_| |_|  \___/|_|     |_|_|&lt;br /&gt;
 16:51 &amp;lt; hauK&amp;gt; lol&lt;br /&gt;
 16:51 &amp;lt; dever&amp;gt; lol&lt;br /&gt;
 16:51 &amp;lt; atlas&amp;gt; Smooth.&lt;br /&gt;
 16:51 &amp;lt; dever&amp;gt; no bans. not figlet. excellent.&lt;br /&gt;
 16:51 &amp;lt; beimear&amp;gt; grand&lt;br /&gt;
 16:52 -!- mode/#lobby [+o isaac702] by ChanServ&lt;br /&gt;
 16:52 &amp;lt; dever&amp;gt; have the rules on figlets been solidified yet?&lt;br /&gt;
 16:52 &amp;lt; a&amp;gt; WHUWHUWHU&lt;br /&gt;
 16:52 &amp;lt; dever&amp;gt; that is not a figlet isaac702&lt;br /&gt;
 16:52 &amp;lt; a&amp;gt; I only pasted 2 lines. is that a ban?&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*lithium@*.dcu.ie] by isaac702&lt;br /&gt;
 16:52 -!- l was kicked from #lobby by isaac702 [l]&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*e@*.redbrick.dcu.ie] by bunbun&lt;br /&gt;
 16:52 -!- a was kicked from #lobby by bunbun [a]&lt;br /&gt;
 16:52 -!- mode/#lobby [+b *!*nanaki@*.dcu.ie] by bunbun&lt;br /&gt;
 16:52 -!- n was kicked from #lobby by bunbun [n]&lt;br /&gt;
 --- Log closed Mon Jan 17 16:52:24 2011&lt;br /&gt;
&lt;br /&gt;
The ops went on a banning rampage and our heroes memory lived on for those 24 hours in /bans #lobby.&lt;br /&gt;
Soon the carnage spread to other channels (mainly #intersocs) and even pms.&lt;br /&gt;
&lt;br /&gt;
After exams, order was somewhat restored with spam returning to normal(ish) levels.&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9904</id>
		<title>Gay.pl</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9904"/>
		<updated>2011-03-01T01:33:18Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gay.pl is the most useful irssi script you will ever come across.&lt;br /&gt;
&lt;br /&gt;
===How Do I Get Gay.pl===&lt;br /&gt;
First of all you should go to [http://www.gay.pl www.gay.pl] (which is clearly a link to Poland&#039;s Gay website).&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve spent many hours there, you should also take a look at [http://www.gay.pl  http://gruntle.org/projects/irssi/gay/] and place the latest version of gay.pl into your very own .irssi/scripts folder. Now all you have to do is /run gay.pl and you&#039;re totally GAY! \o/&lt;br /&gt;
&lt;br /&gt;
To view all of gay.pl&#039;s options, just type /gay -help, and you&#039;ll see the wide variety of flags the script has to offer.&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9903</id>
		<title>Gay.pl</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Gay.pl&amp;diff=9903"/>
		<updated>2011-03-01T01:32:39Z</updated>

		<summary type="html">&lt;p&gt;Beimear: New page: ==Gay.pl==  Gay.pl is the most useful irssi script you will ever come across.  ===How Do I Get Gay.pl=== First of all you should go to [http://www.gay.pl www.gay.pl] (which is clearly a li...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Gay.pl==&lt;br /&gt;
&lt;br /&gt;
Gay.pl is the most useful irssi script you will ever come across.&lt;br /&gt;
&lt;br /&gt;
===How Do I Get Gay.pl===&lt;br /&gt;
First of all you should go to [http://www.gay.pl www.gay.pl] (which is clearly a link to Poland&#039;s Gay website).&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve spent many hours there, you should also take a look at [http://www.gay.pl  http://gruntle.org/projects/irssi/gay/] and place the latest version of gay.pl into your very own .irssi/scripts folder. Now all you have to do is /run gay.pl and you&#039;re totally GAY! \o/&lt;br /&gt;
&lt;br /&gt;
To view all of gay.pl&#039;s options, just type /gay -help, and you&#039;ll see the wide variety of flags the script has to offer.&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Emo&amp;diff=9902</id>
		<title>Emo</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Emo&amp;diff=9902"/>
		<updated>2011-03-01T00:14:13Z</updated>

		<summary type="html">&lt;p&gt;Beimear: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;After many users both laid claim to and denied their affiliation with the tag &amp;quot;emo&amp;quot;, it has been decided that the wiki is the best Redbrick tool with which to lay the matter to rest. Here is a list of known emos on Redbrick and pics with which to both prove their &amp;quot;emoness&amp;quot; and identify/avoid them in the real world.&lt;br /&gt;
&lt;br /&gt;
==aisling==&lt;br /&gt;
[[image:aeris.jpg]]&lt;br /&gt;
 03:20 &amp;lt;        Aisling &amp;gt; but i feel emo&lt;br /&gt;
^^ Proof enough.&lt;br /&gt;
&lt;br /&gt;
==atlas ==&lt;br /&gt;
[[Image:Atlas_emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
Although not showing some of the more classic emo signs this person never seems to be happy, and has  almost never been recorded smiling. That, and his other somewhat &amp;quot;unusual&amp;quot; habits make him emo enough for this page.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;b&amp;gt;Saturday, 25th Feb 2007, Doyles Pub&amp;lt;/b&amp;gt;&lt;br /&gt;
 receive: this is ac/dc! enjoy yourself&lt;br /&gt;
 atlas: I shall do no such thing&lt;br /&gt;
&lt;br /&gt;
== beimear ==&lt;br /&gt;
&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; ... ;_;&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; knowing you&#039;ve ruined my life...................&lt;br /&gt;
 01:26 &amp;lt; beimear&amp;gt; *slit*&lt;br /&gt;
 01:27 &amp;lt; beimear&amp;gt; ........ i&#039;m too sad to be emo ;_;&lt;br /&gt;
&lt;br /&gt;
== bincheol ==&lt;br /&gt;
[[Image:emobinky.jpg]]&lt;br /&gt;
[[Image:Emo_binky.jpg]]&lt;br /&gt;
&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; fightstar are EPCI.&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; EPIC. even&lt;br /&gt;
 16:26 &amp;lt;      binncheol &amp;gt; seriously one of my favourite bands right now.&lt;br /&gt;
&lt;br /&gt;
 [16:58:36]    binncheol | &#039;everything is beautiful and nothing hurts&#039;&lt;br /&gt;
&lt;br /&gt;
Went to Taking Back Sunday - EMO!&lt;br /&gt;
&lt;br /&gt;
== bunbun ==&lt;br /&gt;
&lt;br /&gt;
 23:56 * bunbun cuts&lt;br /&gt;
 00:00  &amp;lt;bunbun&amp;gt; Also because you all hate me ;_;&lt;br /&gt;
 00:00 * bunbun cuts&lt;br /&gt;
 00:00  &amp;lt;bunbun&amp;gt; tziegler: We should be depressed together&lt;br /&gt;
 00:01  &amp;lt;bunbun&amp;gt; Make one with black eyes and mouth, and tears of blood red&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== carri ==&lt;br /&gt;
&lt;br /&gt;
 16:03:36 &amp;lt; nanaki&amp;gt; carri: you have no heart&lt;br /&gt;
 16:03:46 &amp;lt;@carri&amp;gt; No. BECAUSE YOU BROKE IT&lt;br /&gt;
 16:03:48 &amp;lt;@carri&amp;gt; &amp;lt;cut&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 carri ? I like taking back sunday.&lt;br /&gt;
&lt;br /&gt;
== chris ==&lt;br /&gt;
&lt;br /&gt;
Seen here with eyeliner and straightened hair. His teary eyed appearance really defines him as a person...&lt;br /&gt;
&lt;br /&gt;
[[Image:Emo_chris.jpg]]&lt;br /&gt;
&lt;br /&gt;
== dano ==&lt;br /&gt;
 22:37:13 &amp;lt; DamoDarko&amp;gt; attol: to this cruel world i am alone&lt;br /&gt;
 22:37:35  * nanaki hands DamoDarko some eyeliner&lt;br /&gt;
 22:37:42 &amp;lt; DamoDarko&amp;gt; nanaki: get some chicken kievs and load it with chilli :P&lt;br /&gt;
 22:37:59 &amp;lt; DamoDarko&amp;gt; nanaki: could you pass the razo while your at it....need&lt;br /&gt;
                       to shave&lt;br /&gt;
 22:38:02 &amp;lt; DamoDarko&amp;gt; SOME EMOTION&lt;br /&gt;
 22:38:07 &amp;lt; DamoDarko&amp;gt; ; ;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  17:19  * DamoDarko i want to kill myself&lt;br /&gt;
&lt;br /&gt;
== doc ==&lt;br /&gt;
[[Image:Emo_doc_grey.jpg]]&lt;br /&gt;
&lt;br /&gt;
== dregin ==&lt;br /&gt;
[[Image:emo_dregin.JPG]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BREAKING NEWS: &#039;&#039;&#039;Dregin just came out of the emo closet to Castle in #lobby. Check [http://www.redbrick.dcu.ie/~dregin/emo_out.txt here] for proof.&lt;br /&gt;
&lt;br /&gt;
There is also evidence of dregin&#039;s allegiance to the ultra-faggy &#039;&#039;straight edge&#039;&#039; trend.&lt;br /&gt;
&lt;br /&gt;
 13:06 &amp;lt; Attol&amp;gt; someone recently told me they&#039;d gone straight edge, can&#039;t remember who&lt;br /&gt;
 13:07 &amp;lt; Dregin&amp;gt; Attol: It WAS ME!&lt;br /&gt;
&lt;br /&gt;
The proof is undeniable.&lt;br /&gt;
&lt;br /&gt;
== elephant ==&lt;br /&gt;
[[Image:Emophant.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== emma ==&lt;br /&gt;
&lt;br /&gt;
10:47 &amp;lt; emma&amp;gt; I hate everything :(&lt;br /&gt;
&lt;br /&gt;
10:47 &amp;lt; emma&amp;gt; I&#039;ll just go cut my self&lt;br /&gt;
&lt;br /&gt;
[[Image:Emmagingemo.jpg]]&lt;br /&gt;
&lt;br /&gt;
If this isn&#039;t emo.... (also, she&#039;s 16 when this was taken.. JAILBAIT++;)&lt;br /&gt;
&lt;br /&gt;
== exzantia ==&lt;br /&gt;
[[image:Emo_exzantia.jpg]]&lt;br /&gt;
&lt;br /&gt;
==finch==&lt;br /&gt;
[[Image:Emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
== gizmo ==&lt;br /&gt;
[[Image:emo gizmo.jpg]]&lt;br /&gt;
&lt;br /&gt;
gizmo&#039;s second baptism.&lt;br /&gt;
&lt;br /&gt;
 18:23:19 &amp;lt; g1zmo&amp;gt; I&#039;m just an awesome guy&lt;br /&gt;
 18:26:31 &amp;lt; g1zmo&amp;gt; jesus&lt;br /&gt;
 18:26:36 &amp;lt; g1zmo&amp;gt; don&#039;t all rush to agree with me or anything &lt;br /&gt;
 18:32:49 &amp;lt; g1zmo&amp;gt; ...&lt;br /&gt;
 18:32:51 &amp;lt; g1zmo&amp;gt; I fucking hate you guys&lt;br /&gt;
 18:32:57 &amp;lt; g1zmo&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
== goldfish ==&lt;br /&gt;
[[Image:EmoGoldie.jpg]]&lt;br /&gt;
&lt;br /&gt;
 14:10 &amp;lt; go|dfish&amp;gt; LIFE IS FUCKING SHIT.&lt;br /&gt;
 14:10 &amp;lt; joe5ie&amp;gt; an hero time.&lt;br /&gt;
 14:11 &amp;lt; go|dfish&amp;gt; i hope my manager died in a plane crash on his way back from usa&lt;br /&gt;
 14:11 &amp;lt; undone&amp;gt; emo|fish&lt;br /&gt;
&lt;br /&gt;
 22:35 &amp;lt; go|dfish&amp;gt; because life is shit?&lt;br /&gt;
 22:35 &amp;lt; go|dfish&amp;gt; &amp;lt;/emo&amp;gt;&lt;br /&gt;
 22:35 &amp;lt; roro&amp;gt; how come??&lt;br /&gt;
 22:35 &amp;lt; roro&amp;gt; stop being soo EMO&lt;br /&gt;
&lt;br /&gt;
 20:10:30  goldfish | i may have to end my life&lt;br /&gt;
&lt;br /&gt;
== hauk ==&lt;br /&gt;
&lt;br /&gt;
 01:04:33 &amp;lt; HAUK&amp;gt; I want another life.&lt;br /&gt;
 01:04:38 &amp;lt; HAUK&amp;gt; This one sucks.&lt;br /&gt;
 01:04:41 &amp;lt; HAUK&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
==haus==&lt;br /&gt;
Image says it all. &lt;br /&gt;
&lt;br /&gt;
[[image:8323_178900470395_505410395_3857158_7804031_n.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  &amp;lt; haus&amp;gt; ;_; &lt;br /&gt;
  &amp;lt; haus&amp;gt; I&#039;ve been cut, cut deep&lt;br /&gt;
&lt;br /&gt;
  * haus gets his emo on&lt;br /&gt;
  * haus - I&#039;m Not Okay - MCR&lt;br /&gt;
&lt;br /&gt;
  &amp;lt; haus&amp;gt; He makes me want to cut other people&lt;br /&gt;
  &amp;lt; elephant&amp;gt; for once&lt;br /&gt;
&lt;br /&gt;
  * haus thinks he needs a new blade&lt;br /&gt;
  &lt;br /&gt;
Text of http://redbrick.dcu.ie/~haus&lt;br /&gt;
  &lt;br /&gt;
  Life.&lt;br /&gt;
  It&#039;s all just one big fuck up really. People spend the majority of it looking for somebody else.&lt;br /&gt;
  Like, what if you never do find that person who&#039;s supposed to make you happy? Do you die miserable?&lt;br /&gt;
  Is anyone ever really always happy? Sure, I&#039;ve been happy. But it never seems to last.&lt;br /&gt;
  Happiness, building you up just to shatter it all down again when you won&#039;t see it coming since the beginning of time.&lt;br /&gt;
  So what&#039;s the answer to avoid being shattered? Not letting anything external to your own body/mind.&lt;br /&gt;
  That&#039;ll never work. You&#039;ll die alone like that.&lt;br /&gt;
  But maybe it is better to die alone rather than just get hurt, over and over again.&lt;br /&gt;
  I sure know I&#039;m sick of being hurt, aren&#039;t you? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== lil_cain ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Lil cain emo.jpg]]&lt;br /&gt;
&lt;br /&gt;
Recently spotted at the DCU Clubs &amp;amp; Socs Ball. Notice the anger expressed on his visage.&lt;br /&gt;
&lt;br /&gt;
  15:36 &amp;lt; lil_cain&amp;gt; hello great depression&lt;br /&gt;
  15:37 &amp;lt; lil_cain&amp;gt; time to start stockpiling cigarettes, alchol, and razorblades me thinks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  In Clubs and Socs: &amp;quot;I resign from life!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  Plan:&lt;br /&gt;
  Life. Loath it or ignore it, you can&#039;t like it.&lt;br /&gt;
&lt;br /&gt;
EEEMMMOOOOO!!!!&lt;br /&gt;
&lt;br /&gt;
== maK ==&lt;br /&gt;
[[Image:426404945a4491595700b660418857l.jpg]]&lt;br /&gt;
 [19:12:26]          maK | thisrbthingisreallyboring.&lt;br /&gt;
 [19:13:07]          maK | ilikeditatfirstbutnownoonetalknsaboutanythinelsebutinsults.&lt;br /&gt;
&lt;br /&gt;
 12:43 &amp;lt; maK&amp;gt; is this not hell already?&lt;br /&gt;
 12:44 &amp;lt; maK&amp;gt; you cant feel pain when your dead.&lt;br /&gt;
 12:44 &amp;lt; maK&amp;gt; death &amp;gt; life.&lt;br /&gt;
 12:45 &amp;lt; maK&amp;gt; ;_;&lt;br /&gt;
 12:45 &amp;lt; maK&amp;gt; *slit*&lt;br /&gt;
&lt;br /&gt;
== marvin ==&lt;br /&gt;
[[Image:Marvin.jpg]]&lt;br /&gt;
 [13:52:29]       marvin | life is a heap of shit&lt;br /&gt;
 [13:52:32]       marvin | good riddance&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merchelo ==&lt;br /&gt;
&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; it&#039;s true&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; my friends call me lovely so i don&#039;t cut myself&lt;br /&gt;
 19:35 &amp;lt; Merchelo&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
== nemo ==&lt;br /&gt;
 [14:08]  * nemo prays for the sweet release of death.&lt;br /&gt;
&lt;br /&gt;
His name even has the word &amp;quot;emo&amp;quot; in it. How much more evidence do you need?&lt;br /&gt;
&lt;br /&gt;
==ornat==&lt;br /&gt;
[[Image:emo_ornat.jpg]]&lt;br /&gt;
&lt;br /&gt;
Don&#039;t let this user&#039;s seemingly happy facade fool you, as this photo evidence proves her emoness. Also has a strange obsession with hugs.&lt;br /&gt;
&lt;br /&gt;
==phaxx==&lt;br /&gt;
[[Image:DSC01727.jpg]]&lt;br /&gt;
&lt;br /&gt;
Apart from the trademark frown, phaxx appears here to be taking an uncharacteristically feminine interest in hair, make-up and wearing womens clothing; all hallmarks of the emo.&lt;br /&gt;
&lt;br /&gt;
==tiroskan==&lt;br /&gt;
&lt;br /&gt;
In clubs and socs office: &amp;quot;I&#039;m too tired for life ;_;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== twiggy == &lt;br /&gt;
[[Image:emo_twiggy.JPG]]&lt;br /&gt;
 Likes to mention the war - emo.&lt;br /&gt;
&lt;br /&gt;
[13:41:46]      @twiggy | i wasn&#039;t about to suggest i was going to&lt;br /&gt;
&lt;br /&gt;
[13:41:51]      @twiggy | I&#039;m clearly not welcome &lt;br /&gt;
&lt;br /&gt;
[13:41:55]        @Zyox | YEAH&lt;br /&gt;
&lt;br /&gt;
[13:41:56]      @twiggy | *cuts wrists*&lt;br /&gt;
&lt;br /&gt;
[13:42:05]             -*- twiggy cries emo tears&lt;br /&gt;
&lt;br /&gt;
== undone ==&lt;br /&gt;
[[Image:Undone_emo.JPG]]&lt;br /&gt;
&lt;br /&gt;
Photographical evidence of undone on the loose in the real world has proven hard to come by.&lt;br /&gt;
He has made it onto the list due to his constant claims to haircare prowess and threats to kill his parents in #lobby. Any better pictures may save the life of many an ill-educated DCU student should they approach him unaware of his &amp;quot;emoness&amp;quot; so, please act with the utmost urgency in passing these on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
coconut: Away cutting himself.&lt;br /&gt;
&lt;br /&gt;
undone: i was just finding a razor&lt;br /&gt;
&lt;br /&gt;
undone: gonna do it now&lt;br /&gt;
&lt;br /&gt;
undone: liveblogging&lt;br /&gt;
&lt;br /&gt;
== zero ==&lt;br /&gt;
[[Image:Emo_zero.jpg]]&lt;br /&gt;
&lt;br /&gt;
WAF!&lt;br /&gt;
&lt;br /&gt;
Note: zero is no longer a member of RedBrick due to his epic exam fail and subsequent dropping out. Fagwaffery.&lt;br /&gt;
&lt;br /&gt;
== zyox ==&lt;br /&gt;
[[Image:ZyoxHair.jpg]]&lt;br /&gt;
&lt;br /&gt;
Although many have long suspected zyox of being emo, evidence has only recently come to light:&lt;br /&gt;
&lt;br /&gt;
 14:05:01 &amp;lt; Zyox&amp;gt; pain is good&lt;br /&gt;
 14:05:06 &amp;lt; Zyox&amp;gt; it reminds me im still alive&lt;br /&gt;
 14:05:10 &amp;lt; Zyox&amp;gt; ;_;&lt;br /&gt;
 14:05:12 &amp;lt; Zyox&amp;gt; *cut*&lt;br /&gt;
&lt;br /&gt;
[[Category:Humour]]&lt;/div&gt;</summary>
		<author><name>Beimear</name></author>
	</entry>
</feed>