<?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=Creadak</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=Creadak"/>
	<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/Special:Contributions/Creadak"/>
	<updated>2026-05-21T23:05:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.8</generator>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10694</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10694"/>
		<updated>2015-07-23T14:34:59Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Conditions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
You can run &lt;br /&gt;
  ~edu/compileweechat&lt;br /&gt;
or &lt;br /&gt;
 git clone https://github.com/weechat/weechat&lt;br /&gt;
 cd weechat&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake .. -DCMAKE_INSTALL_PREFIX=$HOME -DENABLE_NLS=OFF&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
 echo &#039;*/upgrade ~/bin/weechat&#039; &amp;gt; `find ~/.weechat -name &amp;quot;weechat_fifo_*&amp;quot;`&lt;br /&gt;
 rm -rf ~/weechat&lt;br /&gt;
&lt;br /&gt;
==Customising Weechat ==&lt;br /&gt;
Weechat can be very basic when you first run it so here are some conf files to set it up with.&lt;br /&gt;
 cp ~edu/wcconf/* ~/.weechat/ &lt;br /&gt;
you need to set your nick for the server&lt;br /&gt;
 vim ~/.weechat/irc.conf&lt;br /&gt;
change “nicks” field to your username&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
 /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
 /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
Unlike irssi you can do Alt+j then &amp;lt;num&amp;gt; to change to a number greather the 10 .&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
 /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Mobile ==&lt;br /&gt;
&lt;br /&gt;
weechat has a mobile app you can get from the [https://play.google.com/store/apps/details?id=com.ubergeek42.WeechatAndroid google play store] or from the [https://github.com/ubergeek42/weechat-android github].&lt;br /&gt;
Before we set up the app we need to go too weechat on the terminal and type in:&lt;br /&gt;
  /relay add weechat 1337&lt;br /&gt;
then we need to set the password &lt;br /&gt;
  /set relay.network.password &amp;quot;your-secret-password&amp;quot;&lt;br /&gt;
&lt;br /&gt;
now on the Phone launch the app and in settings&lt;br /&gt;
In connection settings &lt;br /&gt;
 Relay host: localhost&lt;br /&gt;
 Relay Port: 1337 (choose your own port) &lt;br /&gt;
 Relay password: your-secret-password&lt;br /&gt;
 Connect type: SSH tunnel&lt;br /&gt;
then in  SSH Tunnel settings&lt;br /&gt;
 SSH host: redbrick.dcu.ie&lt;br /&gt;
 SSH username: your username&lt;br /&gt;
 SSH port: 22&lt;br /&gt;
if you have an ssh key add the route to the key on your phone in SSH Private key file and put the passphrase in the SSH password/key passphrase box, if you dont just put your password in there&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Triggers ==&lt;br /&gt;
&lt;br /&gt;
Triggers are the swiss army knife of weechat. They can replace a &#039;&#039;&#039;lot&#039;&#039;&#039; of scripts, and we&#039;re still finding things to turn into trigger&lt;br /&gt;
&lt;br /&gt;
=== Turn any line with &amp;quot;nsfw&amp;quot; in it bright red ===&lt;br /&gt;
 /trigger addreplace nsfw modifier weechat_print &amp;quot;${tg_notify} &amp;amp;&amp;amp; ${tg_message_nocolor} =~ .*nsfw.*&amp;quot; &amp;quot;/(.*)/${tg_prefix}\t${color:red}!NSFW! ${tg_message}&amp;quot;&lt;br /&gt;
=== Make urls underlined and blue ===&lt;br /&gt;
 /trigger addreplace url_color modifier &amp;quot;weechat_print&amp;quot; &amp;quot;${tg_tags} !~ irc_quit&amp;quot; &amp;quot;;[a-z]+://\S+;${color:32}${color:underline}${re:0}${color:-underline}${color:reset};&amp;quot; &amp;quot;&amp;quot;&lt;br /&gt;
===Strip items such as time from screen on smaller screens ===&lt;br /&gt;
 /trigger addreplace resize_small_timestamp signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 200&amp;quot; &amp;quot;&amp;quot; &amp;quot;/set weechat.look.buffer_time_format \&amp;quot;\&amp;quot;&amp;quot;&lt;br /&gt;
===add items such as time from screen on bigger screens ===&lt;br /&gt;
  /trigger addreplace resize_big_timestamp signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;=200&amp;quot; &amp;quot;&amp;quot; &amp;quot;/set weechat.look.buffer_time_format %H:%M:%S &amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== turn off nicklist on smaller screens ===&lt;br /&gt;
 /trigger addreplace resize_big signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show nicklist&amp;quot;&lt;br /&gt;
 /trigger addreplace resize_small signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide nicklist&amp;quot;&lt;br /&gt;
=== turn off buffer list on small screens ===&lt;br /&gt;
 /trigger addreplace resize_small_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide buffers&amp;quot;&lt;br /&gt;
 /trigger addreplace resize_big_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show buffers&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Conditions==&lt;br /&gt;
&lt;br /&gt;
Conditions can be used to customize weechat depending on certain variables&lt;br /&gt;
&lt;br /&gt;
===Turn off nicklist on small windows===&lt;br /&gt;
 /set weechat.bar.nicklist.conditions &amp;quot;${nicklist} &amp;amp;&amp;amp; (${window.win_width} &amp;gt; 100 || ${buffer.full_name} == irc.bitlbee.&amp;amp;bitlbee)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Hide buffer list on small terminals===&lt;br /&gt;
 /set weechat.bar.buffers.conditions &amp;quot;${info:term_width &amp;gt; 100}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Turn off status on nonactive windows ===&lt;br /&gt;
 /set weechat.bar.status.conditions &amp;quot;${active} &amp;amp;&amp;amp; ${window}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Spell Checker ==&lt;br /&gt;
&lt;br /&gt;
Weechat uses a handy aspell plugin to check your spelling. To enable it, either use iset or use&lt;br /&gt;
 /set aspell.check.enabled on&lt;br /&gt;
&lt;br /&gt;
Aspell has a few settings which you may find useful&lt;br /&gt;
&lt;br /&gt;
 /set aspell.check.real_time on&lt;br /&gt;
 /set aspell.check.word_min_length 2&lt;br /&gt;
 /set aspell.check.default_dict &amp;quot;en&amp;quot;&lt;br /&gt;
 /set aspell.check.suggestions 3&lt;br /&gt;
&lt;br /&gt;
Or alternatively if you use iset, search for aspell&lt;br /&gt;
&lt;br /&gt;
The aspell plugin can also offer suggestions as of 0.4.0 and it can be added as an item to your status bar. The item should be added to weechat.bar.status.items. For instance:&lt;br /&gt;
 /set weechat.bar.status.items &amp;quot;time |,buffer_number+:buffer_name+(buffer_modes)+ |,buffer_nicklist_count |,hotlist |,[aspell_suggest]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10676</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10676"/>
		<updated>2015-07-15T08:46:12Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
You can run &lt;br /&gt;
  ~edu/compileweechat&lt;br /&gt;
or &lt;br /&gt;
 git clone https://github.com/weechat/weechat&lt;br /&gt;
 cd weechat&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake .. -DCMAKE_INSTALL_PREFIX=$HOME -DENABLE_NLS=OFF&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
 echo &#039;*/upgrade ~/bin/weechat&#039; &amp;gt; `find ~/.weechat -name &amp;quot;weechat_fifo_*&amp;quot;`&lt;br /&gt;
 rm -rf ~/weechat&lt;br /&gt;
&lt;br /&gt;
==Customising Weechat ==&lt;br /&gt;
Weechat can be very basic when you first run it so here are some conf files to set it up with.&lt;br /&gt;
 cp ~edu/wcconf/* ~/.weechat/ &lt;br /&gt;
you need to set your nick for the server&lt;br /&gt;
 vim ~/.weechat/irc.conf&lt;br /&gt;
change “nicks” field to your username&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
 /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
 /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
Unlike irssi you can do Alt+j then &amp;lt;num&amp;gt; to change to a number greather the 10 .&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
 /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Mobile ==&lt;br /&gt;
&lt;br /&gt;
weechat has a mobile app you can get from the [https://play.google.com/store/apps/details?id=com.ubergeek42.WeechatAndroid google play store] or from the [https://github.com/ubergeek42/weechat-android github].&lt;br /&gt;
Before we set up the app we need to go too weechat on the terminal and type in:&lt;br /&gt;
  /relay add weechat 1337&lt;br /&gt;
then we need to set the password &lt;br /&gt;
  /set relay.network.password &amp;quot;your-secret-password&amp;quot;&lt;br /&gt;
&lt;br /&gt;
now on the Phone launch the app and in settings&lt;br /&gt;
In connection settings &lt;br /&gt;
 Relay host: localhost&lt;br /&gt;
 Relay Port: 1337 (choose your own port) &lt;br /&gt;
 Relay password: your-secret-password&lt;br /&gt;
 Connect type: SSH tunnel&lt;br /&gt;
then in  SSH Tunnel settings&lt;br /&gt;
 SSH host: redbrick.dcu.ie&lt;br /&gt;
 SSH username: your username&lt;br /&gt;
 SSH port: 22&lt;br /&gt;
if you have an ssh key add the route to the key on your phone in SSH Private key file and put the passphrase in the SSH password/key passphrase box, if you dont just put your password in there&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Triggers ==&lt;br /&gt;
&lt;br /&gt;
Triggers are the swiss army knife of weechat. They can replace a &#039;&#039;&#039;lot&#039;&#039;&#039; of scripts, and we&#039;re still finding things to turn into trigger&lt;br /&gt;
&lt;br /&gt;
=== Turn any line with &amp;quot;nsfw&amp;quot; in it bright red ===&lt;br /&gt;
 /trigger addreplace nsfw modifier weechat_print &amp;quot;${tg_notify} &amp;amp;&amp;amp; ${tg_message_nocolor} =~ .*nsfw.*&amp;quot; &amp;quot;/(.*)/${tg_prefix}\t${color:red}!NSFW! ${tg_message}&amp;quot;&lt;br /&gt;
=== Make urls underlined and blue ===&lt;br /&gt;
 /trigger addreplace url_color modifier &amp;quot;weechat_print&amp;quot; &amp;quot;${tg_tags} !~ irc_quit&amp;quot; &amp;quot;;[a-z]+://\S+;${color:32}${color:underline}${re:0}${color:-underline}${color:reset};&amp;quot; &amp;quot;&amp;quot;&lt;br /&gt;
=== Strip items such as buffer list and nick list from screen on smaller screens ===&lt;br /&gt;
 /trigger addreplace resize_small_timestamp signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 200&amp;quot; &amp;quot;&amp;quot; &amp;quot;/set weechat.look.buffer_time_format &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
=== turn off nicklist on smaller screens ===&lt;br /&gt;
 /trigger addreplace resize_big signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show nicklist&amp;quot;&lt;br /&gt;
 /trigger addreplace resize_small signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide nicklist&amp;quot;&lt;br /&gt;
=== turn off buffer list on small screens ===&lt;br /&gt;
 /trigger addreplace resize_small_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide buffer&amp;quot;&lt;br /&gt;
 /trigger add replace resize_big_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show buffer&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Spell Checker ==&lt;br /&gt;
&lt;br /&gt;
Weechat uses a handy aspell plugin to check your spelling. To enable it, either use iset or use&lt;br /&gt;
 /set aspell.check.enabled on&lt;br /&gt;
&lt;br /&gt;
Aspell has a few settings which you may find useful&lt;br /&gt;
&lt;br /&gt;
 /set aspell.check.real_time on&lt;br /&gt;
 /set aspell.check.word_min_length 2&lt;br /&gt;
 /set aspell.check.default_dict &amp;quot;en&amp;quot;&lt;br /&gt;
 /set aspell.check.suggestions 3&lt;br /&gt;
&lt;br /&gt;
Or alternatively if you use iset, search for aspell&lt;br /&gt;
&lt;br /&gt;
The aspell plugin can also offer suggestions as of 0.4.0 and it can be added as an item to your status bar. The item should be added to weechat.bar.status.items. For instance:&lt;br /&gt;
 /set weechat.bar.status.items &amp;quot;time |,buffer_number+:buffer_name+(buffer_modes)+ |,buffer_nicklist_count |,hotlist |,[aspell_suggest]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10675</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10675"/>
		<updated>2015-07-14T23:25:34Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Triggers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
You can run &lt;br /&gt;
  ~edu/compileweechat&lt;br /&gt;
or &lt;br /&gt;
 git clone https://github.com/weechat/weechat&lt;br /&gt;
 cd weechat&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake .. -DCMAKE_INSTALL_PREFIX=$HOME -DENABLE_NLS=OFF&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
 echo &#039;*/upgrade ~/bin/weechat&#039; &amp;gt; `find ~/.weechat -name &amp;quot;weechat_fifo_*&amp;quot;`&lt;br /&gt;
 rm -rf ~/weechat&lt;br /&gt;
&lt;br /&gt;
==Customising Weechat ==&lt;br /&gt;
Weechat can be very basic when you first run it so here are some conf files to set it up with.&lt;br /&gt;
 cp ~edu/wcconf/* ~/.weechat/ &lt;br /&gt;
you need to set your nick for the server&lt;br /&gt;
 vim ~/.weechat/irc.conf&lt;br /&gt;
change “nicks” field to your username&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
 /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
 /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
Unlike irssi you can do Alt+j then &amp;lt;num&amp;gt; to change to a number greather the 10 .&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
 /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Mobile ==&lt;br /&gt;
&lt;br /&gt;
weechat has a mobile app you can get from the [https://play.google.com/store/apps/details?id=com.ubergeek42.WeechatAndroid google play store] or from the [https://github.com/ubergeek42/weechat-android github].&lt;br /&gt;
Before we set up the app we need to go too weechat on the terminal and type in:&lt;br /&gt;
  /relay add weechat 1337&lt;br /&gt;
then we need to set the password &lt;br /&gt;
  /set relay.network.password &amp;quot;your-secret-password&amp;quot;&lt;br /&gt;
&lt;br /&gt;
now on the Phone launch the app and in settings&lt;br /&gt;
In connection settings &lt;br /&gt;
 Relay host: localhost&lt;br /&gt;
 Relay Port: 1337 (choose your own port) &lt;br /&gt;
 Relay password: your-secret-password&lt;br /&gt;
 Connect type: SSH tunnel&lt;br /&gt;
then in  SSH Tunnel settings&lt;br /&gt;
 SSH host: redbrick.dcu.ie&lt;br /&gt;
 SSH username: your username&lt;br /&gt;
 SSH port: 22&lt;br /&gt;
if you have an ssh key add the route to the key on your phone in SSH Private key file and put the passphrase in the SSH password/key passphrase box, if you dont just put your password in there&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;br /&gt;
&lt;br /&gt;
== Cool Things ==&lt;br /&gt;
&lt;br /&gt;
=== Scripts ===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using creadak&#039;s weechat script you can use the /script command to view, add/remove, and update scripts that do really handy things, if you are using any version pre 0.3.9 you&#039;ll want to use the weeget script to manage your scripts. Some really handy scripts include buffers, iset, buffer_autoclose, cron, pybuffer, shell and screen_away.&lt;br /&gt;
 /script&lt;br /&gt;
&lt;br /&gt;
=== Spell Checker ===&lt;br /&gt;
&lt;br /&gt;
Weechat uses a handy aspell plugin to check your spelling. To enable it, either use iset or use&lt;br /&gt;
 /set aspell.check.enabled on&lt;br /&gt;
&lt;br /&gt;
Aspell has a few settings which you may find useful&lt;br /&gt;
&lt;br /&gt;
 /set aspell.check.real_time on&lt;br /&gt;
 /set aspell.check.word_min_length 2&lt;br /&gt;
 /set aspell.check.default_dict &amp;quot;en&amp;quot;&lt;br /&gt;
 /set aspell.check.suggestions 3&lt;br /&gt;
&lt;br /&gt;
Or alternatively if you use iset, search for aspell&lt;br /&gt;
&lt;br /&gt;
The aspell plugin can also offer suggestions as of 0.4.0 and it can be added as an item to your status bar. The item should be added to weechat.bar.status.items. For instance:&lt;br /&gt;
 /set weechat.bar.status.items &amp;quot;time |,buffer_number+:buffer_name+(buffer_modes)+ |,buffer_nicklist_count |,hotlist |,[aspell_suggest]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Triggers ===&lt;br /&gt;
&lt;br /&gt;
==== Turn any line with &amp;quot;nsfw&amp;quot; in it bright red ====&lt;br /&gt;
 /trigger addreplace nsfw modifier weechat_print &amp;quot;${tg_notify} &amp;amp;&amp;amp; ${tg_message_nocolor} =~ .*nsfw.*&amp;quot; &amp;quot;/(.*)/${tg_prefix}\t${color:red}!NSFW! ${tg_message}&amp;quot;&lt;br /&gt;
==== Make urls underlined and blue ====&lt;br /&gt;
 /trigger addreplace url_color modifier &amp;quot;weechat_print&amp;quot; &amp;quot;${tg_tags} !~ irc_quit&amp;quot; &amp;quot;;[a-z]+://\S+;${color:32}${color:underline}${re:0}${color:-underline}${color:reset};&amp;quot; &amp;quot;&amp;quot;&lt;br /&gt;
==== Strip items such as buffer list and nick list from screen on smaller screens ====&lt;br /&gt;
 /trigger addreplace resize_small_timestamp signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 200&amp;quot; &amp;quot;&amp;quot; &amp;quot;/set weechat.look.buffer_time_format &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
==== turn off nicklist on smaller screens ====&lt;br /&gt;
 /trigger addreplace resize_big signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show nicklist&amp;quot;&lt;br /&gt;
 /trigger addreplace resize_small signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide nicklist&amp;quot;&lt;br /&gt;
==== turn off buffer list on small screens ====&lt;br /&gt;
 /trigger addreplace resize_small_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;lt; 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar hide buffer&amp;quot;&lt;br /&gt;
 /trigger add replace resize_big_buffer signal signal_sigwinch &amp;quot;${info:term_width} &amp;gt;= 100&amp;quot; &amp;quot;&amp;quot; &amp;quot;/bar show buffer&amp;quot;&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10471</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10471"/>
		<updated>2013-03-29T16:02:11Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Spell Checker */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
Creadak has also written a script that will compile and install weechat to a local directory and then tell the currently running weechat to upgrade itself, so it&#039;s perfect for cronjobbing. The script is available from [http://creadak.tk/upgrade-weechat http://creadak.tk/upgrade-weechat] and instructions are at the top of the script.&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;br /&gt;
&lt;br /&gt;
== Cool Things ==&lt;br /&gt;
&lt;br /&gt;
=== Scripts ===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using creadak&#039;s weechat script you can use the /script command to view, add/remove, and update scripts that do really handy things, if you are using any version pre 0.3.9 you&#039;ll want to use the weeget script to manage your scripts. Some really handy scripts include buffers, iset, buffer_autoclose, cron, pybuffer, shell and screen_away.&lt;br /&gt;
&lt;br /&gt;
=== Spell Checker ===&lt;br /&gt;
&lt;br /&gt;
Weechat uses a handy aspell plugin to check your spelling. To enable it, either use iset or use&lt;br /&gt;
  /set aspell.check.enabled on&lt;br /&gt;
&lt;br /&gt;
Aspell has a few settings which you may find useful&lt;br /&gt;
&lt;br /&gt;
  aspell.check.real_time on&lt;br /&gt;
  aspell.check.word_min_length 2&lt;br /&gt;
  aspell.check.default_dict &amp;quot;en&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Or alternatively if you use iset, search for aspell&lt;br /&gt;
&lt;br /&gt;
The aspell plugin can also offer suggestions as of 0.4.0 and it can be added as an item to your status bar. The item should be added to weechat.bar.status.items. For instance:&lt;br /&gt;
  /set weechat.bar.status.items &amp;quot;time |,buffer_number+:buffer_name+(buffer_modes)+ |,buffer_nicklist_count |,hotlist |,[aspell_suggest]&lt;br /&gt;
&lt;br /&gt;
You should then see something like [http://creadak.tk/scrn.png this]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10470</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10470"/>
		<updated>2013-03-29T15:59:55Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
Creadak has also written a script that will compile and install weechat to a local directory and then tell the currently running weechat to upgrade itself, so it&#039;s perfect for cronjobbing. The script is available from [http://creadak.tk/upgrade-weechat http://creadak.tk/upgrade-weechat] and instructions are at the top of the script.&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;br /&gt;
&lt;br /&gt;
== Cool Things ==&lt;br /&gt;
&lt;br /&gt;
=== Scripts ===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using creadak&#039;s weechat script you can use the /script command to view, add/remove, and update scripts that do really handy things, if you are using any version pre 0.3.9 you&#039;ll want to use the weeget script to manage your scripts. Some really handy scripts include buffers, iset, buffer_autoclose, cron, pybuffer, shell and screen_away.&lt;br /&gt;
&lt;br /&gt;
=== Spell Checker ===&lt;br /&gt;
&lt;br /&gt;
Weechat uses a handy aspell plugin to check your spelling. To enable it, either use iset or use&lt;br /&gt;
  /set aspell.check enabled on&lt;br /&gt;
&lt;br /&gt;
Aspell has a few settings which you may find useful&lt;br /&gt;
&lt;br /&gt;
  aspell.check.real_time on&lt;br /&gt;
  aspell.check.word_min_length 2&lt;br /&gt;
  aspell.check.default_dict &amp;quot;en&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Or alternatively if you use iset, search for aspell&lt;br /&gt;
&lt;br /&gt;
The aspell plugin can also offer suggestions as of 0.4.0 and it can be added as an item to your status bar. The item should be added to weechat.bar.status.items. For instance:&lt;br /&gt;
  /set weechat.bar.status.items &amp;quot;time |,buffer_number+:buffer_name+(buffer_modes)+ |,buffer_nicklist_count |,hotlist |,[aspell_suggest]&lt;br /&gt;
&lt;br /&gt;
You should then see something like [http://creadak.tk/scrn.png this]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10469</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10469"/>
		<updated>2013-03-29T13:57:54Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
Creadak has also written a script that will compile and install weechat to a local directory and then tell the currently running weechat to upgrade itself, so it&#039;s perfect for cronjobbing. The script is available from [http://creadak.tk/upgrade-weechat http://creadak.tk/upgrade-weechat] and instructions are at the top of the script.&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10224</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10224"/>
		<updated>2012-04-18T12:39:38Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Compiling Weechat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, and like the hero that he is, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME/bin --disable-ruby&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
Creadak has also written a script that will upgrade weechat, install it to a local directory, and text you that it&#039;s upgraded, so it&#039;s perfect for cronjobbing. The script is available from [http://creadak.tk/upgrade-weechat http://creadak.tk/upgrade-weechat] and instructions are at the top of the script.&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10223</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10223"/>
		<updated>2012-04-18T12:18:55Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Compiling Weechat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, and like the hero that he is, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME/bin --disable-ruby&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10222</id>
		<title>Weechat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Weechat&amp;diff=10222"/>
		<updated>2012-04-18T12:05:44Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Compiling Weechat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Once upon a time there was BitchX. Then there was Irssi. Now there is Weechat. More and more people are switching over to Weechat from Irssi, probably coz the colours make IRC easier to read and follow. Problem is, for the Irssi user, Weechat may be a tad confusing.&lt;br /&gt;
&lt;br /&gt;
Weechat documentation can be tricky to follow, so this page is an attempt to make simple those bizarre and abstract commands.&lt;br /&gt;
&lt;br /&gt;
== Running Weechat ==&lt;br /&gt;
&lt;br /&gt;
Dregin is a big Weechat fanboi. And as such, he has his own special builds designed for Redbrick. Azazel is the current login machine, and like the hero that he is, dregin has compiled a version of Weechat that runs on azazel:&lt;br /&gt;
&lt;br /&gt;
  /home/associat/d/dregin/root_azazel/bin/weechat-curses&lt;br /&gt;
&lt;br /&gt;
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.&lt;br /&gt;
&lt;br /&gt;
== Compiling Weechat ==&lt;br /&gt;
&lt;br /&gt;
Weechat requires a bit of jiggery pokery before building on azazel using &#039;&#039;make &amp;amp;&amp;amp; make install&#039;&#039;. Here&#039;s how to do it:&lt;br /&gt;
&lt;br /&gt;
  git clone git://git.sv.gnu.org/weechat.git&lt;br /&gt;
  cd weechat&lt;br /&gt;
  ./autogen.sh&lt;br /&gt;
  ./configure --prefix=$HOME/bin --disable-ruby&lt;br /&gt;
  for f in `ls po/*.po`&lt;br /&gt;
  do&lt;br /&gt;
    /usr/bin/msgmerge --update $f po/weechat.pot	&lt;br /&gt;
  done;&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Creadak has also written a script that will upgrade weechat, install it to a local directory, and text you that it&#039;s upgraded, so it&#039;s perfect for cronjobbing. The script is available from [http://creadak.tk/upgrade-weechat http://creadak.tk/upgrade-weechat] and instructions are at the top of the script&lt;br /&gt;
&lt;br /&gt;
== Basic use ==&lt;br /&gt;
&lt;br /&gt;
=== Connecting to a server and channel ===&lt;br /&gt;
&lt;br /&gt;
When you hit &#039;chat&#039; on Redbrick, you start Irssi, you&#039;re automatically connected to a server, then you&#039;re joined to Redbrick&#039;s #lobby. This all happens behind the scenes, and with Weechat, you need to do this manually. Fear not: it&#039;s easy.&lt;br /&gt;
&lt;br /&gt;
When you start Weechat, you won&#039;t get connected to a server or channel. To connect to Redbrick&#039;s IRC sever, type:&lt;br /&gt;
&lt;br /&gt;
  /connect irc.redbrick.dcu.ie&lt;br /&gt;
&lt;br /&gt;
Then to join #lobby:&lt;br /&gt;
&lt;br /&gt;
  /join #lobby&lt;br /&gt;
&lt;br /&gt;
As well as showing you how IRC clients (such as Weechat or Irssi or whatever) connect to stuff, this should also show you how to connect to other servers and channels outside of Redbrick.&lt;br /&gt;
&lt;br /&gt;
To connect to any server, simply enter /connect &amp;lt;server_address&amp;gt;. You will probably be greeted with various messages and such from that server. To join a channel on that server, just type /join &amp;lt;channel_name&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
&lt;br /&gt;
Like Irssi, you can move between windows/buffers using Alt+&amp;lt;num&amp;gt;. You can also type /buffer &amp;lt;num&amp;gt; (similar to /win &amp;lt;num&amp;gt; in Irssi).&lt;br /&gt;
&lt;br /&gt;
F5 and F6 move to the predecessing and successing buffer, respectively.&lt;br /&gt;
&lt;br /&gt;
You can move buffers (chat windows) with /buffer move. In a channel, type:&lt;br /&gt;
&lt;br /&gt;
  /buffer move &amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where &amp;lt;num&amp;gt; is any number you want). That channel is now accessible at Alt+&amp;lt;num&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Changing between servers ===&lt;br /&gt;
&lt;br /&gt;
Weechat will generally assume that whatever channel you&#039;re in, that&#039;s also the server you&#039;re operating on. So you can chat away as you wish and issue general commands.&lt;br /&gt;
&lt;br /&gt;
However, for some commands, you will need to let Weechat know what server you&#039;re on.&lt;br /&gt;
&lt;br /&gt;
Hit Alt+1. This will bring you to your status window. Along the bottom you will see the time, number of channels, the server you&#039;re connect to, as well as other channel stuff.&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+x. If you&#039;re connected to multiple servers, the &#039;&#039;server&#039;&#039; section will change, telling you which server Weechat is connect to. So now you can issue commands to that server (such as /nick) without affecting other servers.&lt;br /&gt;
&lt;br /&gt;
For example, I am currently connected to irc.redbrick.dcu.ie and to irc.starchat.net. If I hit Ctrl-x I can switch to StarChat, and change my nickname there without it affecting Redbrick&#039;s IRC.&lt;br /&gt;
&lt;br /&gt;
== Special commands ==&lt;br /&gt;
&lt;br /&gt;
=== Keybinds ===&lt;br /&gt;
&lt;br /&gt;
Keybinds are handy, especially if you have over 10 channels open. I use Alt+&amp;lt;num&amp;gt; to get to channels, but clearly this only works from 1 up to 0 (on a keyboard). So for channels in higher numbers, you can &#039;&#039;bind&#039;&#039; keys: i.e. Alt+q gets me to channel 11; Alt+y gets me to channel 16.&lt;br /&gt;
&lt;br /&gt;
  /key bind meta-q /buffer 11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Key&amp;quot; and &amp;quot;bind&amp;quot; are self-explanatory. &amp;quot;Meta&amp;quot; is Weechat&#039;s word for Alt (so meta-q is the same as Alt+q). /buffer 11 is the command that&#039;s executed once meta-q (Alt-q) is typed.&lt;br /&gt;
&lt;br /&gt;
You can build up these to meta-w, meta-e, meta-r for buffer 2, buffer 3, buffer 4, etc etc.&lt;br /&gt;
&lt;br /&gt;
Of course, you can bind any key combo to any weechat command; it&#039;s not necessary to make them Alt+&amp;lt;num&amp;gt; commands.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Watch out for caps lock if you&#039;re keybinding. If you bind Alt+y to a command, Alt+Y won&#039;t work (unless you bind that separately). If you find your binds aren&#039;t working, check your caps.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Screen&amp;diff=10095</id>
		<title>Screen</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Screen&amp;diff=10095"/>
		<updated>2011-10-21T18:25:20Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Reattaching Screen Automatically */ talked about ~/.zlogin and ~/.bash_login&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Basics ==&lt;br /&gt;
&#039;&#039;&#039;Screen&#039;&#039;&#039; usually does not exist; this &amp;lt;s&amp;gt;is the committee&#039;s&amp;lt;/s&amp;gt; was a former committee&#039;s general position on screen due to the disastrous and/or hilarious situations which often result from new members&#039; attempts to get it working. However, for the purpose of this tutorial, screen &#039;&#039;&#039;does&#039;&#039;&#039; exist, and this is how you use it. (Blame coconut for this defiance.)&lt;br /&gt;
&lt;br /&gt;
=== Omg, what&#039;s screen? ===&lt;br /&gt;
&lt;br /&gt;
Screen is most commonly known as &amp;quot;that thing that lets you stay logged in to chat when you log out of RedBrick&amp;quot;. It&#039;s a terminal multiplexer, which allows you to log into multiple terminal sessions from one terminal window and keeps them open when you go away to bed or whatever it is you do with your time.&lt;br /&gt;
&lt;br /&gt;
=== Opening ===&lt;br /&gt;
Type &amp;quot;screen&amp;quot; at the prompt like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will open a new screen session. First you&#039;ll see the screen startup message, which gives a little info on the program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Just hit space/return as it says and you&#039;ll be running screen. You won&#039;t notice anything immediately different once running screen, instead, you&#039;ll be back at the same old terminal. Now, however, you have access to a large variety of commands and features that you didn&#039;t before.&lt;br /&gt;
&lt;br /&gt;
== Screen commands ==&lt;br /&gt;
=== Ctrl-a commands ===&lt;br /&gt;
Nearly all of screen&#039;s commands are used via the ctrl-a key combination. First, you press the ctrl and a keys together, then release. Next, press the key you want to run a command. These commands can be a little awkward and difficult to remember at first, but you&#039;ll soon get the hang of it. In this tutorial, the commands will be shown as ctrl-a and then a letter, with the following letter being associated with a command.&lt;br /&gt;
&lt;br /&gt;
=== Creating a new window ===&lt;br /&gt;
When you start screen, it presents you with the normal single window terminal you&#039;re used to. You can, however, create many more and run them all within the one screen session. The following command will create another window for you:&lt;br /&gt;
 ctrl-a c&lt;br /&gt;
&lt;br /&gt;
Just hit ctrl and a together, then release them and hit c. This keybinding will open a new window (window 2) inside screen. Now you&#039;ll have two windows to use, so you&#039;ll have to learn how to use the ctrl-a commands to switch between them.&lt;br /&gt;
&lt;br /&gt;
=== Switching windows===&lt;br /&gt;
Once you have more than one window open, you can switch between them using some of the following commands:&lt;br /&gt;
 ctrl-a n&lt;br /&gt;
This command will switch you over to the next window.&lt;br /&gt;
 &lt;br /&gt;
 ctrl-a p&lt;br /&gt;
This one will bring you back to the previous window.&lt;br /&gt;
&lt;br /&gt;
 ctrl-a a&lt;br /&gt;
This will switch between the last two windows that you&#039;ve been using.&lt;br /&gt;
&lt;br /&gt;
 ctrl-a window_number&lt;br /&gt;
Using this command, you can specify exactly which window you want to jump to by hitting ctrl and a, then the number on the keyboard of your desired window. This is pretty useful for when you have a lot of windows open in screen.&lt;br /&gt;
&lt;br /&gt;
=== Naming your windows ===&lt;br /&gt;
You can give each of your windows its own name too for convenience by using this command:&lt;br /&gt;
 ctrl-a A&lt;br /&gt;
&lt;br /&gt;
This one might seem confusing first as the A is a capital letter in this case, but all you need to do is hit ctrl and a together and release as before, then hold shift and press a to get the capital. After you run it, you&#039;ll see a white bar appear at the bottom of your window, where you can change the name of your screen to whatever you like. In this case, the window has just been renamed to &amp;quot;chat&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve named a few windows, you can try this command:&lt;br /&gt;
 ctrl-a &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Yup, even quotation marks can be used in screen commands. So as before you do ctrl-a, then hold shift and hit the 2 key to get the &amp;quot; :) This will bring up a convenient list of all your windows with their names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From this window you can view and go to any of your windows. The flags on the right indicate whether your window is logged in or not with $ symbol.&lt;br /&gt;
&lt;br /&gt;
=== Detaching and reattaching screen ===&lt;br /&gt;
&lt;br /&gt;
One of the most popular features of screen is that it can keep you logged in even when you&#039;re offline. This means you can leave programs running or even stay on IRC even when you&#039;re not online. When you &amp;quot;minimise&amp;quot; screen or make it invisible, it is called detaching it.&lt;br /&gt;
&lt;br /&gt;
To do this, you just detach from screen instead of exiting it. To detach from screen without exiting, use the following command:&lt;br /&gt;
 ctrl-a d&lt;br /&gt;
&lt;br /&gt;
You&#039;ll then be returned to the prompt with a message telling you screen has been detached, like so:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Later, you&#039;ll come back online and want to reattach to your screen session. When you &amp;quot;maximise&amp;quot; screen or bring it back onto your terminal, this is known as attaching. To reattach a detached screen, use this command at the prompt:&lt;br /&gt;
 screen -dr&lt;br /&gt;
&lt;br /&gt;
The -d will detach any attached screens and -r will reattach your screen.&lt;br /&gt;
&lt;br /&gt;
If you have more than one screen session available, you will need to specify the screen id you wish to open. You&#039;ll be given a list of the currently available screens, so then you type:&lt;br /&gt;
&lt;br /&gt;
 screen -r&lt;br /&gt;
&lt;br /&gt;
followed by the id listed above of the screen you want to reattach to.&lt;br /&gt;
&lt;br /&gt;
=== Start and stop signals ===&lt;br /&gt;
Quite often it happens someone may end up using the stop signal command in screen by mistake. This command is:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a s&lt;br /&gt;
&lt;br /&gt;
and you should probably avoid using it! But as the s key is beside the a key, people will occasionally run this command by accident without knowing it. As this is a stop signal, it has the unfortunate side effect of freezing up your window :( Worry not however, for to fix it, all you need to do is use the start signal again to bring it back from the dead:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a q&lt;br /&gt;
&lt;br /&gt;
This should have you back in action very shortly. However, if your screen is frozen and you can&#039;t figure out why, try asking a member of [[Helpdesk]] and they should know the answer :)&lt;br /&gt;
&lt;br /&gt;
=== Killing screen while attached ===&lt;br /&gt;
Often enough new members (and often, experienced people) will make mistakes with screen that they can&#039;t fix. To kill screen altogether and start over, use:&lt;br /&gt;
 ctrl-a \&lt;br /&gt;
&lt;br /&gt;
Or, if you just want to kill a single window in screen, use:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a k&lt;br /&gt;
&lt;br /&gt;
or even just type &amp;quot;exit&amp;quot; at the prompt.&lt;br /&gt;
&lt;br /&gt;
=== Killing screen while detached ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: using the &#039;&#039;kill&#039;&#039; command to do anything can be very dangerous if you don&#039;t know what you&#039;re doing. If you&#039;re unsure, reattach the screen you want to kill and follow the instructions above.&lt;br /&gt;
&lt;br /&gt;
If you have more than one screen session and you want to kill one of them, type &amp;quot;screen -dr&amp;quot; to get a list of the available screens (from the terminal which appears when you first log in to RedBrick). Note the &#039;&#039;&#039;number&#039;&#039;&#039; (also known as a process id, or pid) at the beginning of each screen name. This is the process number. Ensure you know which screen session is which.&lt;br /&gt;
&lt;br /&gt;
To terminate a session, use this command (&#039;&#039;pid&#039;&#039; is the number of the session you want to kill)&lt;br /&gt;
&lt;br /&gt;
 kill &#039;&#039;pid&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will send the signal SIGTERM to the process, requesting its termination.&lt;br /&gt;
&lt;br /&gt;
If that fails and you want lil_cain to start complaining&lt;br /&gt;
&lt;br /&gt;
 kill -9 &#039;&#039;pid&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will send the signal SIGKILL to the process, terminating it immediately and with lots of blood.&lt;br /&gt;
&lt;br /&gt;
Then, to then get rid of the dead screen session, type&lt;br /&gt;
&lt;br /&gt;
 screen -wipe&lt;br /&gt;
&lt;br /&gt;
== Screen Configuration ==&lt;br /&gt;
&lt;br /&gt;
So after you&#039;ve set up screen and have gotten used to it, you will probably want to configure it a little bit and the way to do this is by creating a ~/.screenrc&lt;br /&gt;
&lt;br /&gt;
To do this just&lt;br /&gt;
 nano ~/.screenrc&lt;br /&gt;
&lt;br /&gt;
Here&#039;s an example of a .screenrc that you may want to use:&lt;br /&gt;
&lt;br /&gt;
 hardstatus alwayslastline&lt;br /&gt;
 hardstatus string &#039;%{= kg}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%? %?%= %{g}][%{Y}%l%{g}]%{=b C}[ %d %M %c ]%{W}&#039;&lt;br /&gt;
 deflogin off&lt;br /&gt;
 startup_message off&lt;br /&gt;
 screen -t irc 1 irssi&lt;br /&gt;
 screen -t Email/slrn 2 mutt -Z&lt;br /&gt;
 screen -t heys -L -l  3&lt;br /&gt;
&lt;br /&gt;
Basically this only really does two things, sets a hardstatus (basically a line that contains some information) and makes it display only on the bottom line and also creates a few new windows.&lt;br /&gt;
&lt;br /&gt;
The new windows created are given names and optionally a number or command (or both).&lt;br /&gt;
&lt;br /&gt;
 screen -t irc q irssi&lt;br /&gt;
&lt;br /&gt;
This will create screen window 1, give it the title &amp;quot;irc&amp;quot; and then run irssi when you start screen.&lt;br /&gt;
&lt;br /&gt;
 deflogin off&lt;br /&gt;
&lt;br /&gt;
This sets windows logged out by default, which means that you won&#039;t have to &amp;quot;mesg n&amp;quot; windows to not receive heys&lt;br /&gt;
&lt;br /&gt;
 startup_message off&lt;br /&gt;
&lt;br /&gt;
This turns the startup message thats displayed when you start a new screen session off.&lt;br /&gt;
&lt;br /&gt;
 screen -t heys -L -l  3&lt;br /&gt;
&lt;br /&gt;
Will create a logged in window specifically for heys. Handy.&lt;br /&gt;
&lt;br /&gt;
All this makes it very simple to restart all your processes if Redbrick ever crashes.&lt;br /&gt;
&lt;br /&gt;
With the above configuration file it will look something like this:&lt;br /&gt;
&lt;br /&gt;
[[Image:screenrc.jpg]]&lt;br /&gt;
&lt;br /&gt;
=== Reattaching Screen Automatically ===&lt;br /&gt;
&lt;br /&gt;
So, you&#039;ve made your screen, configured it, and you happily type screen -dr &#039;&#039;&#039;every time&#039;&#039;&#039; you login to RedBrick. But wouldn&#039;t it be nice if whenever you login your screen would reattach &#039;&#039;&#039;itself&#039;&#039;&#039;??? It can be done :D&lt;br /&gt;
&lt;br /&gt;
Simply use your favorite text editor to edit your ~/.zlogin if you&#039;re using zsh (if you haven&#039;t changed your login shell, this is the one you&#039;re using) or ~/.bash_login if you&#039;re using bash and put the following in it&lt;br /&gt;
&lt;br /&gt;
 screen -dr&lt;br /&gt;
&lt;br /&gt;
That should do the job. It&#039;ll try to reattach a screen whenever you login on any redbrick server&lt;br /&gt;
&lt;br /&gt;
* Please note, if this in fact, does not work, you can edit it out by using winSCP and editing the file using it.&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
If you&#039;d like to learn more about the program, a long list of screen commands can be found here: http://www.linuxdevcenter.com/linux/cmd/cmd.csp?path=s/screen&lt;br /&gt;
&lt;br /&gt;
Help edited a screenrc: http://www.debian-administration.org/articles/560&lt;br /&gt;
&lt;br /&gt;
A starting guide to screen: http://magazine.redhat.com/2007/09/27/a-guide-to-gnu-screen/&lt;br /&gt;
&lt;br /&gt;
The Gentoo wiki article on screen (quite in depth) : http://www.gentoo-wiki.info/Screen&lt;br /&gt;
&lt;br /&gt;
[[Category:Helpdesk]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Games&amp;diff=10037</id>
		<title>Games</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Games&amp;diff=10037"/>
		<updated>2011-08-30T07:55:29Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Games available on RedBrick ([[minerva]]). These are all located in: /usr/games&lt;br /&gt;
&lt;br /&gt;
To see what a game is about, execute the &amp;quot;man&amp;quot; command followed by the game&#039;s name. For example: man nethack&lt;br /&gt;
&lt;br /&gt;
RedBrick also hosts other games on behalf of the DCU Games Society on their server [[blinky]].&lt;br /&gt;
&lt;br /&gt;
==abe==&lt;br /&gt;
Does Not Work. ~ carri@minerva&lt;br /&gt;
==adventure==&lt;br /&gt;
I killed this. I got bored. &lt;br /&gt;
==airstrike==&lt;br /&gt;
Does Not Work. ~ carri@minerva&lt;br /&gt;
==arithmetic==&lt;br /&gt;
If I was 6 this would be awesome to practise maths. -_- It&#039;s addition and subtraction.&lt;br /&gt;
==atc==&lt;br /&gt;
Really easy to make the top players list.&lt;br /&gt;
==backgammon==&lt;br /&gt;
===teachgammon===&lt;br /&gt;
Teaches you how to play backgammon. Useful, because I don&#039;t have a clue either.&lt;br /&gt;
==banner==&lt;br /&gt;
Makes things into a banner.. Like figlet but with... #&lt;br /&gt;
==battlestar==&lt;br /&gt;
Could do with a &amp;quot;how to guide&amp;quot; &lt;br /&gt;
==bcd==&lt;br /&gt;
&amp;quot;The bcd, ppt and morse commands read the given input and reformat it in the form of punched cards, paper tape or morse code respectively.  Acceptable input are command line arguments or the standard input.&amp;quot; Love the man page.&lt;br /&gt;
==boggle==&lt;br /&gt;
Boggle! &lt;br /&gt;
==caesar==&lt;br /&gt;
&amp;quot;The caesar utility attempts to decrypt caesar ciphers using English letter frequency statistics.  caesar reads from the standard input and writes to the standard output.&amp;quot;&lt;br /&gt;
==canfield==&lt;br /&gt;
The solitaire card game, canfield.&lt;br /&gt;
===cfscores===&lt;br /&gt;
Shows the database of high scores for canfield.&lt;br /&gt;
==countmail==&lt;br /&gt;
The countmail program counts your mail and tells you about it rather obnoxiously. If it doesn&#039;t work for you, e-mail admins@redbrick.dcu.ie and annoy them.&lt;br /&gt;
==cribbage==&lt;br /&gt;
Card game without cards. &lt;br /&gt;
==dab==&lt;br /&gt;
I like this. It&#039;s like a game called dots I used to play. The aim to fill in as many boxes you can with your name. You play against the computer.&lt;br /&gt;
==dopewars==&lt;br /&gt;
&lt;br /&gt;
[[Image:400px-Stash3.jpg]]&lt;br /&gt;
&lt;br /&gt;
In this game, you play a drug dealer, travelling between New York&#039;s five boroughs. You make money by buying selling a plethora of mind-altering substances. &lt;br /&gt;
It&#039;s all the fun of drug dealing &#039;&#039;&#039;without&#039;&#039;&#039; the legal repercussions!&lt;br /&gt;
&lt;br /&gt;
==eboard==&lt;br /&gt;
===eboard-addtheme===&lt;br /&gt;
==fortune==&lt;br /&gt;
==gnuchess==&lt;br /&gt;
===gnuchessx===&lt;br /&gt;
Obsolete. Calls &#039;&#039;gnuchess xboard&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==gnugo==&lt;br /&gt;
==nethack==&lt;br /&gt;
&lt;br /&gt;
NetHack is an Advanced Dungeons and Dragons simulator. (Read: NetHack is a game for when you have so few friends that you can&#039;t even muster up four people to pretend to be elves in some stupid dungeon). I like it though. &lt;br /&gt;
&lt;br /&gt;
Players: &lt;br /&gt;
* [[User:gw|gw]] &lt;br /&gt;
* [[User:Bunbun|bunbun]]&lt;br /&gt;
* [[User:fun|fun]]&lt;br /&gt;
* [[User:creadak|creadak]]&lt;br /&gt;
&lt;br /&gt;
The version of Nethack on Redbrick is based on the Ubuntu version, which contains, among others, the [http://nethackwiki.com/wiki/Menucolors menucolors] and [http://nethackwiki.com/wiki/Hpmon hpmon] patches.&lt;br /&gt;
We also patch it with the [http://bilious.homelinux.org/?40 dumplog] patch, which records a lot of info about the game when you die.&lt;br /&gt;
&lt;br /&gt;
A configuration file for the game (which takes advantage of hpmon and menucolors and makes it prettier with UTF-8 shit, among other things) is available [http://www.redbrick.dcu.ie/~bunbun/.nethackrc here], just put it in ~/.nethackrc.&lt;br /&gt;
If you&#039;d like to keep all of the dumpfiles created when you die, instead of just the most recent, add the following alias to your shell rc file (most likely ~/.zshrc)&lt;br /&gt;
 alias nethack=&amp;quot;nethack; [ ! -e \&amp;quot;/var/games/nethack/save/$USERID$USERNAME.gz\&amp;quot; ] &amp;amp;&amp;amp; cp /var/games/nethack/dumps/$USERNAME.lastgame.txt ~/dumps/\`date +%Y-%m-%d-%H:%M:%S\`.txt&amp;quot;&lt;br /&gt;
Make sure to change $USERID and $USERNAME to your userid (gotten with the `id` command) and your username. This should save it each time you die to ~/dumps/YEAR-MM-DD-HH:MM:SS.txt, though in some cases it creates duplicates (If you quit before choosing your role/race/gender/alignment that I know of).&lt;br /&gt;
&lt;br /&gt;
==netris==&lt;br /&gt;
&lt;br /&gt;
Networked multiplayer version of tetris. You can play with anyone logged into RedBrick.&lt;br /&gt;
&lt;br /&gt;
Players: [[User:lil_cain|lil_cain]] [[User:phaxx|phaxx]] [[User:train|train]]&lt;br /&gt;
&lt;br /&gt;
===netris-sample-robot===&lt;br /&gt;
&lt;br /&gt;
==number==&lt;br /&gt;
==worm==&lt;br /&gt;
&lt;br /&gt;
A clone of the game &amp;quot;Snake&amp;quot; which was created in the 1970s but popularised by the Nokia 3210 mobile phone (especially in Irish secondary schools!)&lt;br /&gt;
&lt;br /&gt;
==worms==&lt;br /&gt;
==wtf==&lt;br /&gt;
&lt;br /&gt;
Not really a game per se. Decodes [[Acronyms|acronyms]].&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9991</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9991"/>
		<updated>2011-05-19T14:18:25Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on. It&#039;s also a fairly handy way to upload files between your computer and RedBrick as it doesn&#039;t need your account details, it just requires that you link the client with your Dropbox account&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
Dropbox doesn&#039;t seem to run on [[minerva]], it works fine on [[morpheus]] and [[azazel]], [[carbon]] is untested. So ssh to one of these machines. Now, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182 for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Your Dropbox and your RedBrick Quota ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Mercurial&amp;diff=9956</id>
		<title>Mercurial</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Mercurial&amp;diff=9956"/>
		<updated>2011-04-12T17:32:55Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mercurial is a version control system, like [[svn|subversion]] in that it manages changes in your code, but different in that it&#039;s designed to be distributed. Git and bazaar are also distributed version control systems. Mercurial is also written in python, which is [http://xkcd.com/353/ cool]. It&#039;s built in web interface is also excellent.&lt;br /&gt;
&lt;br /&gt;
==Setting Up On RedBrick ==&lt;br /&gt;
&lt;br /&gt;
All the setup needs to be done on murphy, since that&#039;s the webserver. After that, you can access your code from anywhere.&lt;br /&gt;
&lt;br /&gt;
First, we need to setup the repo that will contain the code &lt;br /&gt;
  receive@murphy (~) %  hg init hgrepo&lt;br /&gt;
&lt;br /&gt;
Next, we setup the web access...&lt;br /&gt;
&lt;br /&gt;
=== Step 1 - Create the directory, and copy in the python cgi ===&lt;br /&gt;
  receive@murphy (~) %  cd ~/public_html&lt;br /&gt;
  receive@murphy (~/public_html) %  mkdir hg&lt;br /&gt;
  receive@murphy (~/public_html) %  chmod 711 hg&lt;br /&gt;
  receive@murphy (~/public_html) %  cd hg&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  cp /usr/share/doc/mercurial-common/examples/hgweb.cgi ./index.cgi&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 755 index.cgi&lt;br /&gt;
&lt;br /&gt;
=== Step 2 - Set the repo location ===&lt;br /&gt;
&lt;br /&gt;
Open the index.cgi in nano (or any other text editor) and on the second to last line replace /YOUR/HOME/DIR/YOUR/REPO with the location of the repo you created. For me, this is /home/member/r/receive/hgrepo - the location will depend on where your home directory is. Optionally, replace &amp;quot;repository name&amp;quot; with something cooler.&lt;br /&gt;
&lt;br /&gt;
=== Step 3 - Set Up htaccess ===&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  touch .htaccess&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 644 .htaccess&lt;br /&gt;
&lt;br /&gt;
Open the htaccess file in a text editor. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##################################&lt;br /&gt;
# Force all access to over https #&lt;br /&gt;
##################################&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{SERVER_PORT} 80&lt;br /&gt;
RewriteRule (.*) https://www.redbrick.dcu.ie/~receive/hg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
###################################&lt;br /&gt;
# Options for rewriting hg access #&lt;br /&gt;
###################################&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{SERVER_PORT} 443&lt;br /&gt;
#write base depending on where the base url lives&lt;br /&gt;
RewriteBase /~receive/hg&lt;br /&gt;
# Send requests for files that exist to those files.&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
# Send requests for directories that exist to those directories.&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
# Send requests to hgwebdir.cgi, appending the rest of url.&lt;br /&gt;
RewriteRule (.*) index.cgi/$1  [QSA,L]&lt;br /&gt;
&lt;br /&gt;
################################&lt;br /&gt;
# Options for password control #&lt;br /&gt;
################################&lt;br /&gt;
&lt;br /&gt;
AuthType Basic&lt;br /&gt;
AuthName &amp;quot;My Mercurial Repo&amp;quot;&lt;br /&gt;
AuthUserFile /home/member/r/receive/.hgpasswd&lt;br /&gt;
Require valid-user&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use this htaccess file as a sample, but you&#039;ll need to make a few changes. The rewrite base should be set to the location on the webserver you created the hg directory. If you&#039;ve been following the same example names I used it will be ~username/hg&lt;br /&gt;
&lt;br /&gt;
Also, you&#039;ll need to set the location you&#039;re going to use for your htpasswd file. &lt;br /&gt;
&lt;br /&gt;
=== Step 4: Create the password file ===&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  htpasswd -c /home/member/r/receive/.hgpasswd receive&lt;br /&gt;
&lt;br /&gt;
This will prompt you to enter your new password twice.&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 644 /home/member/r/receive/.hgpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using LDAP instead of the password file ==&lt;br /&gt;
&lt;br /&gt;
In the .htaccess you created earlier replace the Options for password control with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
################################&lt;br /&gt;
# Options for password control #&lt;br /&gt;
################################&lt;br /&gt;
&lt;br /&gt;
AuthType Basic&lt;br /&gt;
AuthBasicProvider ldap&lt;br /&gt;
AuthName &amp;quot;Some sort of name&amp;quot;&lt;br /&gt;
AuthLDAPURL ldap://192.168.0.3:389/o=redbrick?uid?sub?objectClass=posixAccount&lt;br /&gt;
AuthzLDAPAuthoritative Off&lt;br /&gt;
Require valid-user&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And hey presto, no need for a password file and you can log in with your redbrick details, of course so can anyone else so if you want to restrict access replace&lt;br /&gt;
&lt;br /&gt;
  Require valid-user&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
  Require user user1 user2 (Obviously replace user1 user2 with actual usernames etc)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Cloning the Repo ==&lt;br /&gt;
&lt;br /&gt;
Once all this is done you should be able to login at https://www.redbrick.dcu.ie/~username/hg - of course you won&#039;t see any code there yet.&lt;br /&gt;
&lt;br /&gt;
Go to whatever computer you want to start writing code on and clone a copy of the repo &lt;br /&gt;
&lt;br /&gt;
  andrew@laptop:~ $  hg clone https://www.redbrick.dcu.ie/~receive/hg&lt;br /&gt;
&lt;br /&gt;
Now I have a copy of the repo on my laptop I can work on. You should [http://mercurial.selenic.com/guide/ read the guide] to see all the commands that are available, but the basics you&#039;ll need are hg add and hg commit. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pushing ==&lt;br /&gt;
&lt;br /&gt;
After making changes you can push them back to your repo on RedBrick. &lt;br /&gt;
&lt;br /&gt;
  andrew@laptop:~/hg $ hg push&lt;br /&gt;
&lt;br /&gt;
You can now look at the changes on the web interface :)&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Mercurial&amp;diff=9955</id>
		<title>Mercurial</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Mercurial&amp;diff=9955"/>
		<updated>2011-04-12T17:24:13Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mercurial is a version control system, like [[svn|subversion]] in that it manages changes in your code, but different in that it&#039;s designed to be distributed. Git and bazaar are also distributed version control systems. Mercurial is also written in python, which is [http://xkcd.com/353/ cool]. It&#039;s built in web interface is also excellent.&lt;br /&gt;
&lt;br /&gt;
==Setting Up On RedBrick ==&lt;br /&gt;
&lt;br /&gt;
All the setup needs to be done on murphy, since that&#039;s the webserver. After that, you can access your code from anywhere.&lt;br /&gt;
&lt;br /&gt;
First, we need to setup the repo that will contain the code &lt;br /&gt;
  receive@murphy (~) %  hg init hgrepo&lt;br /&gt;
&lt;br /&gt;
Next, we setup the web access...&lt;br /&gt;
&lt;br /&gt;
=== Step 1 - Create the directory, and copy in the python cgi ===&lt;br /&gt;
  receive@murphy (~) %  cd ~/public_html&lt;br /&gt;
  receive@murphy (~/public_html) %  mkdir hg&lt;br /&gt;
  receive@murphy (~/public_html) %  chmod 711 hg&lt;br /&gt;
  receive@murphy (~/public_html) %  cd hg&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  cp /usr/share/doc/mercurial-common/examples/hgweb.cgi ./index.cgi&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 755 index.cgi&lt;br /&gt;
&lt;br /&gt;
=== Step 2 - Set the repo location ===&lt;br /&gt;
&lt;br /&gt;
Open the index.cgi in nano (or any other text editor) and on the second to last line replace /YOUR/HOME/DIR/YOUR/REPO with the location of the repo you created. For me, this is /home/member/r/receive/hgrepo - the location will depend on where your home directory is. Optionally, replace &amp;quot;repository name&amp;quot; with something cooler.&lt;br /&gt;
&lt;br /&gt;
=== Step 3 - Set Up htaccess ===&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  touch .htaccess&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 644 .htaccess&lt;br /&gt;
&lt;br /&gt;
Open the htaccess file in a text editor. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##################################&lt;br /&gt;
# Force all access to over https #&lt;br /&gt;
##################################&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{SERVER_PORT} 80&lt;br /&gt;
RewriteRule (.*) https://www.redbrick.dcu.ie/~receive/hg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
###################################&lt;br /&gt;
# Options for rewriting hg access #&lt;br /&gt;
###################################&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{SERVER_PORT} 443&lt;br /&gt;
#write base depending on where the base url lives&lt;br /&gt;
RewriteBase /~receive/hg&lt;br /&gt;
# Send requests for files that exist to those files.&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
# Send requests for directories that exist to those directories.&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
# Send requests to hgwebdir.cgi, appending the rest of url.&lt;br /&gt;
RewriteRule (.*) hgweb.redbrick.cgi/$1  [QSA,L]&lt;br /&gt;
&lt;br /&gt;
################################&lt;br /&gt;
# Options for password control #&lt;br /&gt;
################################&lt;br /&gt;
&lt;br /&gt;
AuthType Basic&lt;br /&gt;
AuthName &amp;quot;My Mercurial Repo&amp;quot;&lt;br /&gt;
AuthUserFile /home/member/r/receive/.hgpasswd&lt;br /&gt;
Require valid-user&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use this htaccess file as a sample, but you&#039;ll need to make a few changes. The rewrite base should be set to the location on the webserver you created the hg directory. If you&#039;ve been following the same example names I used it will be ~username/hg&lt;br /&gt;
&lt;br /&gt;
Also, you&#039;ll need to set the location you&#039;re going to use for your htpasswd file. &lt;br /&gt;
&lt;br /&gt;
=== Step 4: Create the password file ===&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  htpasswd -c /home/member/r/receive/.hgpasswd receive&lt;br /&gt;
&lt;br /&gt;
This will prompt you to enter your new password twice.&lt;br /&gt;
&lt;br /&gt;
  receive@murphy (~/public_html/hg) %  chmod 644 /home/member/r/receive/.hgpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Cloning the Repo ==&lt;br /&gt;
&lt;br /&gt;
Once all this is done you should be able to login at https://www.redbrick.dcu.ie/~username/hg - of course you won&#039;t see any code there yet.&lt;br /&gt;
&lt;br /&gt;
Go to whatever computer you want to start writing code on and clone a copy of the repo &lt;br /&gt;
&lt;br /&gt;
  andrew@laptop:~ $  hg clone https://www.redbrick.dcu.ie/~receive/hg&lt;br /&gt;
&lt;br /&gt;
Now I have a copy of the repo on my laptop I can work on. You should [http://mercurial.selenic.com/guide/ read the guide] to see all the commands that are available, but the basics you&#039;ll need are hg add and hg commit. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pushing ==&lt;br /&gt;
&lt;br /&gt;
After making changes you can push them back to your repo on RedBrick. &lt;br /&gt;
&lt;br /&gt;
  andrew@laptop:~/hg $ hg push&lt;br /&gt;
&lt;br /&gt;
You can now look at the changes on the web interface :)&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9861</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9861"/>
		<updated>2011-01-03T14:53:14Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on. It&#039;s also a fairly handy way to upload files between your computer and RedBrick as it doesn&#039;t need your account details, it just requires that you link the client with your Dropbox account&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182 for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Your Dropbox and your RedBrick Quota ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9860</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9860"/>
		<updated>2011-01-02T20:55:56Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on.&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see [[http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182]] for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Your Dropbox and your RedBrick Quota ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9859</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9859"/>
		<updated>2011-01-02T20:53:47Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on.&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see [[http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182]] for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Dropbox ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9858</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9858"/>
		<updated>2011-01-02T20:51:21Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on.&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see {{URL|http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182}} for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Dropbox ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9857</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9857"/>
		<updated>2011-01-02T20:48:30Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on.&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see [[here|http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182]] for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;br /&gt;
&lt;br /&gt;
== Dropbox ==&lt;br /&gt;
&lt;br /&gt;
Dropbox saves copies of your files to each copmuter it is linked to, so if you use your 2GB on dropbox you will need 2GB of space on your RedBrick account, if you need more space, contact the admins.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9856</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Dropbox&amp;diff=9856"/>
		<updated>2011-01-02T20:40:42Z</updated>

		<summary type="html">&lt;p&gt;Creadak: Dropbox setup instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is Dropbox? ==&lt;br /&gt;
&lt;br /&gt;
Dropbox is an web based file hosting service. It creates a folder in your home directory (usually ~/Dropbox) and monitors that folder and keeps it synced to the web and to other computers that you have installed Dropbox on.&lt;br /&gt;
&lt;br /&gt;
== Installing Dropbox on your RedBrick account ==&lt;br /&gt;
&lt;br /&gt;
Dropbox can&#039;t be installed on RedBrick in the traditional way as it is a plugin for nautilus which isn&#039;t going to be installed on RedBrick any time soon. Instead, we&#039;ll download the Command Line Interface version.&lt;br /&gt;
&lt;br /&gt;
=== Pre-installation ===&lt;br /&gt;
&lt;br /&gt;
First, you need to be on [[Morpheus]], as dropbox doesn&#039;t seem to work on [[Minerva]]. So, type: &lt;br /&gt;
&lt;br /&gt;
 ssh morpheus &lt;br /&gt;
&lt;br /&gt;
to get to morpheus. Secondly, despite dropbox saying that the command line version uses the http_proxy variable, it actually uses the HTTP_PROXY variable, so lets set it correctly with:&lt;br /&gt;
&lt;br /&gt;
 export HTTP_PROXY=&amp;quot;http://proxy.dcu.ie:3128&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And now you&#039;re ready to start.&lt;br /&gt;
&lt;br /&gt;
=== Installation === &lt;br /&gt;
&lt;br /&gt;
Grab the program from the dropbox website with:&lt;br /&gt;
&lt;br /&gt;
 wget -O dropbox.tar.gz &amp;quot;http://www.dropbox.com/download/?plat=lnx.x86_64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Extract it to ~/.dropbox-dist with:&lt;br /&gt;
&lt;br /&gt;
 tar -xvzf dropbox.tar.gz&lt;br /&gt;
&lt;br /&gt;
Next, create a folder in your home directory called bin:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/bin&lt;br /&gt;
&lt;br /&gt;
There&#039;s something nice about this folder, if you type echo $PATH into your shell, you&#039;ll notice that that folder has been added to the start of your $PATH. Your $PATH is the list of folders that your shell looks through (in order) when it tries to execute a program. For example, if in your ~/bin you have a program called ls and try to execute ls, your shell will execute ~/bin/ls, as opposed to the systems ls. This is the folder where we will install the Dropbox CLI. Execute the following:&lt;br /&gt;
&lt;br /&gt;
 wget -O ~/bin/dropbox &amp;quot;http://www.dropbox.com/download?dl=packages/dropbox.py&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And make the program executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 700 ~/bin/dropbox&lt;br /&gt;
&lt;br /&gt;
Next, we&#039;ll start the dropbox daemon:&lt;br /&gt;
&lt;br /&gt;
 ~/.dropbox-dist/dropboxd&lt;br /&gt;
&lt;br /&gt;
This will give you output similar to the screen shot below. Follow the link and sign into your account to link your account to the client. &lt;br /&gt;
&lt;br /&gt;
[[Image:Dropboxd.png]]&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve done this, press ctrl+c to kill it, as we&#039;re going to use the dropbox program we downloaded earlier to interact with the daemon from now on. Notice how you have a shiny new ~/Dropbox folder? Dropbox is now ready to go.&lt;br /&gt;
&lt;br /&gt;
=== Using the dropbox script ===&lt;br /&gt;
&lt;br /&gt;
If you use a shell that autocorrects, you may want to turn it off in the config file, as when in your home directory, the Dropbox folder may confuse it, when you actually meant the dropbox program in your ~/bin. To do this in zsh put the following in your ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
 alias dropbox=&amp;quot;nocorrect dropbox&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and then reload your config&lt;br /&gt;
&lt;br /&gt;
 source ~/.zshrc&lt;br /&gt;
&lt;br /&gt;
To start the dropbox daemon with the dropbox program type:&lt;br /&gt;
&lt;br /&gt;
 dropbox start&lt;br /&gt;
&lt;br /&gt;
Notice how with this we get our terminal back? The dropbox script daemonises the dropbox daemon so that you can continue doing things while it runs in the background. Handy, no? Other useful dropbox commands are:&lt;br /&gt;
&lt;br /&gt;
 dropbox status - See if the daemon is running or not&lt;br /&gt;
 dropbox stop - Stop the dropbox daemon&lt;br /&gt;
 dropbox autostart - Start the dropbox daemon as soon as you login.&lt;br /&gt;
 dropbox help - A list of all the commands&lt;br /&gt;
&lt;br /&gt;
== Extending Dropbox ==&lt;br /&gt;
&lt;br /&gt;
There are some pretty nice extensions for Dropbox, see [[http://wiki.dropbox.com/DropboxAddons?action=recall&amp;amp;rev=182]] for a list of some of them. They all come with their own documentation, so it shouldn&#039;t be too hard to use them.&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Dropboxd.png&amp;diff=9855</id>
		<title>File:Dropboxd.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Dropboxd.png&amp;diff=9855"/>
		<updated>2011-01-02T20:12:08Z</updated>

		<summary type="html">&lt;p&gt;Creadak: Sample dropboxd output&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sample dropboxd output&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Lightning&amp;diff=9725</id>
		<title>Lightning</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Lightning&amp;diff=9725"/>
		<updated>2010-08-27T06:36:08Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Redbrick Hardware}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&#039;&#039;&#039;Lightning ~ 136.206.15.6&#039;&#039;&#039;&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Type: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Dell Dimension 2400 Desktop Computer&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;OS:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;s&amp;gt;Xubuntu 6.06&amp;lt;/s&amp;gt; Ubuntu 9.10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;CPU:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Intel Pentium 4 2.4GHz&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;RAM:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;500mb&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Disks:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1x 10Gb IDE borrowed from old dell&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Drives:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;IDE DVD Reader&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Network:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1x Onboard Ethernet&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
In october 2008 it was decided that having an additional desktop machine in the room would be helpful, and an old G3 iMac with 32mb of ram was found from somewhere, and OpenBSD was installed. The machine was named lightning due to it&#039;s impressive speed.&lt;br /&gt;
&lt;br /&gt;
However, the iMac was a useless piece of shit, and it was decided we should replace it with a slightly less useless piece of shit. Andrew Harford (receive@rb) donated the new lightning, which was gathering dust in his apartment.&lt;br /&gt;
&lt;br /&gt;
In 2010 during the Server Room Move, Craig MacEntee (creadak@rb) took lightning home, as it was gathering dust in the server room. It now sits beside his bed, comfortably running ubuntu 9.10 though it seems to die from time to time, and isn&#039;t yet connected to the internet&lt;br /&gt;
&lt;br /&gt;
== Services ==&lt;br /&gt;
&lt;br /&gt;
* Firefox&lt;br /&gt;
* Terminal&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Redbrick_Hardware&amp;diff=9724</id>
		<title>Redbrick Hardware</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Redbrick_Hardware&amp;diff=9724"/>
		<updated>2010-08-27T06:35:17Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Former machines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of all hardware hosted or owned and run by RedBrick, renowned for its vast array of idiotic and/or meaningless names.&lt;br /&gt;
&lt;br /&gt;
NOTE: this inventory is always incomplete.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Main servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Carbon]]&lt;br /&gt;
* [[Deathray]]&lt;br /&gt;
* [[Murphy]]&lt;br /&gt;
* [[Minerva]]&lt;br /&gt;
* [[Morpheus]]&lt;br /&gt;
* [[Data]]&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* [[Worf]]&lt;br /&gt;
&lt;br /&gt;
== Backup/Management Servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Severus]]&lt;br /&gt;
* [[Thunder]]&lt;br /&gt;
* [[Sprout]]&lt;br /&gt;
* [[B4]]&lt;br /&gt;
&lt;br /&gt;
== VM Servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Daniel]]&lt;br /&gt;
&lt;br /&gt;
== Games Soc ==&lt;br /&gt;
&lt;br /&gt;
* [[Blinky]]&lt;br /&gt;
&lt;br /&gt;
== Desktop Machines ==&lt;br /&gt;
&lt;br /&gt;
* [[Ceiling Cat]]&lt;br /&gt;
* [[Coke (Computer)|Coke]]&lt;br /&gt;
&lt;br /&gt;
== Former machines ==&lt;br /&gt;
&lt;br /&gt;
* [[Asplodey]]&lt;br /&gt;
* [[Lightning]]&lt;br /&gt;
* [[Enigma]]&lt;br /&gt;
* [[Fap]]&lt;br /&gt;
* [[Laser]]&lt;br /&gt;
* [[Nanny]]&lt;br /&gt;
* [[Mother]]&lt;br /&gt;
* [[Nurse]]&lt;br /&gt;
* [[Obelisk]]&lt;br /&gt;
* [[Prodigy]]&lt;br /&gt;
* [[Playpen]]&lt;br /&gt;
* [[Telstar]] (formerly Burner)&lt;br /&gt;
* [[Tolka]]&lt;br /&gt;
* [[Troublegum]]&lt;br /&gt;
* [[Welmar]]&lt;br /&gt;
* [[Cynic]]&lt;br /&gt;
&lt;br /&gt;
== Other Equipment ==&lt;br /&gt;
&lt;br /&gt;
* [[Hadron]]&lt;br /&gt;
* [[Enzyme]]&lt;br /&gt;
* [[The Monolith]] (retired)&lt;br /&gt;
* [[The Docolith]] (retired)&lt;br /&gt;
* [[The Dellith]] x3&lt;br /&gt;
* [[APC UPS]]&lt;br /&gt;
&lt;br /&gt;
== Accessories ==&lt;br /&gt;
&lt;br /&gt;
Cables&lt;br /&gt;
&lt;br /&gt;
    * 2 x Internal SCSI LVD multimode terminators [one used in enigma array]&lt;br /&gt;
    * 1 x Internal SCSI LVD cable; 8 connectors [used in enigma raid array]&lt;br /&gt;
    * 1 x Internal SCSI SE terminator&lt;br /&gt;
    * 2 x External SCSI VHCDI &amp;lt;-&amp;gt; HD68 cable [one used in enigma array]&lt;br /&gt;
    * 1 x External SCSI HD68 cable [used for DLT]&lt;br /&gt;
    * 1 x External SCSI HD68 terminator [used for DLT]&lt;br /&gt;
    * 1 x PS/2 splitter cable [primarily for shrapnel]&lt;br /&gt;
    * 1 x 4 metre SAS cable [used in PowerVault disk array]&lt;br /&gt;
&lt;br /&gt;
Adaptors&lt;br /&gt;
&lt;br /&gt;
    * 1 x SCA &amp;lt;-&amp;gt; SCSI&lt;br /&gt;
    * 1 x External HD68 SCSI &amp;lt;-&amp;gt; Internal HD68 SCSI [used in enigma raid array]&lt;br /&gt;
    * 1 x 13W3 &amp;lt;-&amp;gt; VGA [plugged into nanny but unused]&lt;br /&gt;
&lt;br /&gt;
Tools&lt;br /&gt;
&lt;br /&gt;
    * Set of screwdrivers&lt;br /&gt;
    * Leatherman kit&lt;br /&gt;
    * Electrostatic wrist strap&lt;br /&gt;
&lt;br /&gt;
== Stuff We Don&#039;t Have, But Would Like, Or Need to Buy More Of ==&lt;br /&gt;
&lt;br /&gt;
    * A pony.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Projects]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Redbrick_Hardware&amp;diff=9723</id>
		<title>Redbrick Hardware</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Redbrick_Hardware&amp;diff=9723"/>
		<updated>2010-08-27T06:34:53Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Desktop Machines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of all hardware hosted or owned and run by RedBrick, renowned for its vast array of idiotic and/or meaningless names.&lt;br /&gt;
&lt;br /&gt;
NOTE: this inventory is always incomplete.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Main servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Carbon]]&lt;br /&gt;
* [[Deathray]]&lt;br /&gt;
* [[Murphy]]&lt;br /&gt;
* [[Minerva]]&lt;br /&gt;
* [[Morpheus]]&lt;br /&gt;
* [[Data]]&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* [[Worf]]&lt;br /&gt;
&lt;br /&gt;
== Backup/Management Servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Severus]]&lt;br /&gt;
* [[Thunder]]&lt;br /&gt;
* [[Sprout]]&lt;br /&gt;
* [[B4]]&lt;br /&gt;
&lt;br /&gt;
== VM Servers ==&lt;br /&gt;
&lt;br /&gt;
* [[Daniel]]&lt;br /&gt;
&lt;br /&gt;
== Games Soc ==&lt;br /&gt;
&lt;br /&gt;
* [[Blinky]]&lt;br /&gt;
&lt;br /&gt;
== Desktop Machines ==&lt;br /&gt;
&lt;br /&gt;
* [[Ceiling Cat]]&lt;br /&gt;
* [[Coke (Computer)|Coke]]&lt;br /&gt;
&lt;br /&gt;
== Former machines ==&lt;br /&gt;
&lt;br /&gt;
* [[Asplodey]]&lt;br /&gt;
* [[Enigma]]&lt;br /&gt;
* [[Fap]]&lt;br /&gt;
* [[Laser]]&lt;br /&gt;
* [[Nanny]]&lt;br /&gt;
* [[Mother]]&lt;br /&gt;
* [[Nurse]]&lt;br /&gt;
* [[Obelisk]]&lt;br /&gt;
* [[Prodigy]]&lt;br /&gt;
* [[Playpen]]&lt;br /&gt;
* [[Telstar]] (formerly Burner)&lt;br /&gt;
* [[Tolka]]&lt;br /&gt;
* [[Troublegum]]&lt;br /&gt;
* [[Welmar]]&lt;br /&gt;
* [[Cynic]]&lt;br /&gt;
&lt;br /&gt;
== Other Equipment ==&lt;br /&gt;
&lt;br /&gt;
* [[Hadron]]&lt;br /&gt;
* [[Enzyme]]&lt;br /&gt;
* [[The Monolith]] (retired)&lt;br /&gt;
* [[The Docolith]] (retired)&lt;br /&gt;
* [[The Dellith]] x3&lt;br /&gt;
* [[APC UPS]]&lt;br /&gt;
&lt;br /&gt;
== Accessories ==&lt;br /&gt;
&lt;br /&gt;
Cables&lt;br /&gt;
&lt;br /&gt;
    * 2 x Internal SCSI LVD multimode terminators [one used in enigma array]&lt;br /&gt;
    * 1 x Internal SCSI LVD cable; 8 connectors [used in enigma raid array]&lt;br /&gt;
    * 1 x Internal SCSI SE terminator&lt;br /&gt;
    * 2 x External SCSI VHCDI &amp;lt;-&amp;gt; HD68 cable [one used in enigma array]&lt;br /&gt;
    * 1 x External SCSI HD68 cable [used for DLT]&lt;br /&gt;
    * 1 x External SCSI HD68 terminator [used for DLT]&lt;br /&gt;
    * 1 x PS/2 splitter cable [primarily for shrapnel]&lt;br /&gt;
    * 1 x 4 metre SAS cable [used in PowerVault disk array]&lt;br /&gt;
&lt;br /&gt;
Adaptors&lt;br /&gt;
&lt;br /&gt;
    * 1 x SCA &amp;lt;-&amp;gt; SCSI&lt;br /&gt;
    * 1 x External HD68 SCSI &amp;lt;-&amp;gt; Internal HD68 SCSI [used in enigma raid array]&lt;br /&gt;
    * 1 x 13W3 &amp;lt;-&amp;gt; VGA [plugged into nanny but unused]&lt;br /&gt;
&lt;br /&gt;
Tools&lt;br /&gt;
&lt;br /&gt;
    * Set of screwdrivers&lt;br /&gt;
    * Leatherman kit&lt;br /&gt;
    * Electrostatic wrist strap&lt;br /&gt;
&lt;br /&gt;
== Stuff We Don&#039;t Have, But Would Like, Or Need to Buy More Of ==&lt;br /&gt;
&lt;br /&gt;
    * A pony.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Projects]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Lightning&amp;diff=9715</id>
		<title>Lightning</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Lightning&amp;diff=9715"/>
		<updated>2010-08-26T19:21:47Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Redbrick Hardware}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&#039;&#039;&#039;Lightning ~ 136.206.15.6&#039;&#039;&#039;&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Type: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Dell Dimension 2400 Desktop Computer&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;OS:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;s&amp;gt;Xubuntu 6.06&amp;lt;/s&amp;gt; Ubuntu 9.10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;CPU:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Intel Pentium 4 2.4GHz&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;RAM:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;500mb&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Disks:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1x 10Gb IDE borrowed from old dell&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Drives:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;IDE DVD Reader&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Network:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1x Onboard Ethernet&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
In october 2008 it was decided that having an additional desktop machine in the room would be helpful, and an old G3 iMac with 32mb of ram was found from somewhere, and OpenBSD was installed. The machine was named lightning due to it&#039;s impressive speed.&lt;br /&gt;
&lt;br /&gt;
However, the iMac was a useless piece of shit, and it was decided we should replace it with a slightly less useless piece of shit. Andrew Harford (receive@rb) donated the new lightning, which was gathering dust in his apartment.&lt;br /&gt;
&lt;br /&gt;
In 2010 during the Server Room Move, Craig MacEntee (creadak@rb) took lightning home, as it was gathering dust in the server room. It now sits beside his bed, comfortably running ubuntu 9.10&lt;br /&gt;
&lt;br /&gt;
== Services ==&lt;br /&gt;
&lt;br /&gt;
* Firefox&lt;br /&gt;
* Terminal&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Committee_Timeline&amp;diff=9705</id>
		<title>Committee Timeline</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Committee_Timeline&amp;diff=9705"/>
		<updated>2010-07-03T12:53:19Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A visual overview of who did what, when.&lt;br /&gt;
&lt;br /&gt;
This gets less accurate the further back you go in time - I was working off the [[Committee]] page, making guesses at who resigned, when. 2006 onwards should be fairly accurate (working from memory). Feel free to make any corrections (it&#039;s a pig of a table, though, so you might want to work on it offline, and abuse the Show Preview function a bit).&lt;br /&gt;
&lt;br /&gt;
At the very least, it shows the sheer number of people (and man hours) who have been involved in running Redbrick at one point or another.&lt;br /&gt;
&lt;br /&gt;
(Idea stolen from [https://wiki.skynet.ie/Committee/CommitteeThroughThe_Ages Skynet]).&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
! Semester !! Chairperson !! Secretary !! Treasurer !! Events Officer !! Public Relations Officer !! First Year Rep !! Helpdesk 1 !! Helpdesk 2 !! Helpdesk 3 !! Webmaster !! Admin 1 !! Admin 2 !! Admin 3&lt;br /&gt;
|-&lt;br /&gt;
| 1996 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Sean Cullen ([[User:hyper|hyper]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Dermot Hanley ([[User:wibble|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;wibble&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:darkslateblue;color:white&amp;quot;|Paraic O&#039;Ceallaigh ([[User:swipe|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;swipe&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:gold&amp;quot;|Micheal McHugh ([[User:sandman|sandman]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|David Murphy ([[User:drjolt|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;drjolt&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Fergus Donohue ([[User:fergus|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;fergus&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1996 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 1997 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1997 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 1997 Q3&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:plum&amp;quot;|Patrick Gannt ([[User:floppy|floppy]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Jonathan Lundberg ([[User:spock|spock]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Aoife McGoveran ([[User:hms|hms]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:brown;color:white&amp;quot;|Kevin O&#039;Donovan ([[User:kod|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;kod&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:green;color:white&amp;quot;|Dave O&#039;Flynn ([[User:firefly|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;firefly&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:peachpuff&amp;quot;|Daire McKenna ([[User:fatwa|fatwa]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:indigo;color:white&amp;quot;|Shane O&#039;hUid ([[User:wishkah|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;wishkah&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:silver&amp;quot;|John Barker ([[User:barkerj|barkerj]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orange&amp;quot;|Andrew Lawless ([[User:andy|andy]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Dermot Hanley ([[User:wibble|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;wibble&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;5&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|Ka Chun Leung ([[User:plop|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;plop&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|1997 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 1998 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Mike Bennett ([[User:thalia|thalia]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1998 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 1998 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:YellowGreen&amp;quot;| Justin Moran ([[User:cain|cain]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Caroline Sheedy ([[Username:bootie|bootie]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:yellow&amp;quot;|Cecily Murray ([[Username:celery|celery]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Aoife Cahill ([[Username:ace|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;ace&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Barry O&#039;Neill ([[User:bubble|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;bubble&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:plum&amp;quot;|Sarvesh Singh ([[User:macbain|macbain]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|David Murphy ([[User:drjolt|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;drjolt&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:mediumspringgreen&amp;quot;|Cian Synnott ([[User:pooka|pooka]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Colin Whittaker ([[User:grimnar|grimnar]])&lt;br /&gt;
|-&lt;br /&gt;
|1998 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:tomato&amp;quot;|John Bolger ([[Username:jbolger|jbolger]])&lt;br /&gt;
|-&lt;br /&gt;
|1999 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Eoin McGrath ([[User:bob|bob]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:LightSteelBlue&amp;quot;|Brian Scanlan ([[User:singer|singer]])&lt;br /&gt;
|rowspan=&amp;quot;6&amp;quot; style=&amp;quot;background:Crimson;color:white&amp;quot;|Adam Kelly ([[User:cthulu|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;cthulu&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;6&amp;quot; style=&amp;quot;background:peachpuff&amp;quot;|Hoi Chau Wong ([[User:whc|whc]])&lt;br /&gt;
|-&lt;br /&gt;
|1999 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1999 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Jonathan Lundberg ([[User:spock|spock]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Caroline Sheedy ([[User:bootie|bootie]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Damien Martin ([[User:otto|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;otto&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Orla McGan ([[User:orly|orly]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Julie Kerin ([[User:julie|julie]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:gold&amp;quot;|Conor O&#039;Kane ([[Username:cokane|cokane]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:darkslateblue;color:white&amp;quot;|Nigel Parkes ([[Username:elmer|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;elmer&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:silver&amp;quot;|Karl Podesta ([[User:kpodesta|kpodesta]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:YellowGreen&amp;quot;|Robert Crosbie ([[Username:bobb|bobb]])&lt;br /&gt;
|-&lt;br /&gt;
|1999 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2000 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:green;color:white&amp;quot;|Eileen Gavin ([[User:munchkin|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;munchkin&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2000 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2000 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:silver&amp;quot;|Karl Podesta ([[User:kpodesta|kpodesta]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|Brian Banbrick ([[User:moridin|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;moridin&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Jonathan Lundberg ([[User:spock|spock]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:LightSteelBlue&amp;quot;|John Canavan ([[User:tibor|tibor]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:mediumspringgreen&amp;quot;|Kevin Cannon ([[User:p|p]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Mark Campbell ([[User:mark|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;mark&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Donal Hunt ([[User:redgiant|redgiant]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Barry O&#039;Neill ([[User:bubble|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;bubble&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:DarkRed;color:white&amp;quot;|Philip Reynolds ([[Username:phil|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;phil&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:plum&amp;quot;|Sarvesh Singh ([[Username:macbain|macbain]])&lt;br /&gt;
|-&lt;br /&gt;
|2000 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2001 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Mark Dunne ([[User:pixies|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;pixies&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Noel Fitzpatrick ([[User:noelfitz|noelfitz]])&lt;br /&gt;
|-&lt;br /&gt;
|2001 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2001 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:peachpuff&amp;quot;|Donal Mulligan ([[User:thor|thor]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:LightSteelBlue&amp;quot;|John Canavan ([[User:tibor|tibor]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orange&amp;quot;|Micheal Glennon ([[User:magluby|magluby]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Andrew MacCann ([[User:montoya|montoya]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:Crimson;color:white&amp;quot;|Kevin Dermody ([[User:esoteric|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;esoteric&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Nikki Kenny ([[User:kamili|kamili]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Neil Walsh ([[User:marvin|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;marvin&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Colm MacCarthaigh ([[User:colmmacc|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;colmmacc&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:DarkRed;color:white&amp;quot;|Philip Reynolds ([[Username:phil|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;phil&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:orange&amp;quot;|Cillian Sharkey ([[User:cns|cns]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Mark Campbell ([[User:mark|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;mark&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2001 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2002 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2002 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2002 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Nikky Kenny ([[User:kamili|kamili]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Andrew MacCann ([[User:montoya|montoya]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Neil Walsh ([[User:marvin|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;marvin&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:tomato&amp;quot;|Carla Coleman ([[User:angel|angel]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Shane Tallon ([[User:del_boy|del_boy]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:aquamarine&amp;quot;|Eoin Campbell ([[User:cambo|cambo]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|Declan McMullen ([[User:skyhawk|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;skyhawk&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Mark Campbell ([[User:mark|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;mark&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|David Johnston ([[User:emperor|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;emperor&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:darkslateblue;color:white&amp;quot;|Dermot Duffy ([[User:dizer|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;dizer&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Mark Dunne ([[User:pixies|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;pixies&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2002 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2003 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:Crimson;color:white&amp;quot;|Trevor Johnston ([[User:trevj|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;trevj&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Grainne Sheerin ([[User:dimples|dimples]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:YellowGreen&amp;quot;|Elaine Bannon ([[User:purdy|purdy]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:green;color:white&amp;quot;|Declan O&#039;Neill ([[User:dec|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;dec&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2003 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 2003 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|David Johnston ([[User:emperor|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;emperor&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orange&amp;quot;|Cillian Sharkey ([[User:cns|cns]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:gold&amp;quot;|Martina Frain ([[User:dramaq|dramaq]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Aisling Devlin ([[User:aeris|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;aeris&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Una Kehoe ([[User:keloe|keloe]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:coral&amp;quot;|Sun Ning ([[User:sunshine|sunshine]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|Declan McMullen ([[User:skyhawk|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;skyhawk&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:LightSteelBlue&amp;quot;|Martin Clarke ([[User:prolix|prolix]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:tomato&amp;quot;|Martin Harte ([[User:tuama|tuama]])&lt;br /&gt;
|-&lt;br /&gt;
|2003 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 2004 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:silver&amp;quot;|Seamus O&#039;Toole ([[User:mael|mael]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2004 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 2004 Q3&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Michelle Graham ([[User:drusilla|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;drusilla&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:peachpuff&amp;quot;|Donal Mulligan ([[User:thor|thor]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:DarkRed;color:white&amp;quot;|Charlene Barrett ([[User:charlene|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;charlene&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:green;color:white&amp;quot;|Mark Grenham ([[User:kyper|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;kyper&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:gold&amp;quot;|Martina Frain ([[User:dramaq|dramaq]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Stephen Doyle ([[User:igy|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;igy&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:mediumspringgreen&amp;quot;|John Doyle ([[User:art_wolf|art_wolf]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:indigo;color:white&amp;quot;|Eoghan Gaffney ([[User:atlas|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;atlas&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:tomato&amp;quot;|David Whelan ([[User:biteme|biteme]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:plum&amp;quot;|Charlie Von Metzradt ([[User:phaxx|phaxx]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:Crimson;color:white&amp;quot;|Michael Dowling ([[User:mickeyd|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;mickeyd&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:YellowGreen&amp;quot;|Padraic Hallinan ([[User:halenger|halenger]])&lt;br /&gt;
|-&lt;br /&gt;
|2004 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 2005 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Aisling Devlin ([[User:aeris|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;aeris&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2005 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2005 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:yellow&amp;quot;|David Couse ([[User:phreak|phreak]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Kenneth Barrett ([[User:sionnach|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;sionnach&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Bernard McKeever ([[User:dregin|dregin]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Jessica Ní Chonchubair ([[User:jesjes|jesjes]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:darkslateblue;color:white&amp;quot;|Simon Kilroy ([[User:gizmo|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;gizmo&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Graham Bishop ([[User:winters|winters]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Una Kehoe ([[User:keloe|keloe]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:indigo;color:white&amp;quot;|Eoghan Gaffney ([[User:atlas|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;atlas&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:DarkRed;color:white&amp;quot;|Stephen Ryan ([[User:ryaner|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;ryaner&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2005 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2006 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2006 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2006 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:plum&amp;quot;|Charlie Von Metzradt ([[User:phaxx|phaxx]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Jessica Ni Chonchubhair ([[User:jesjes|jesjes]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|Andrew Harford ([[User:receive|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;receive&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Kat Farrell ([[User:angelkat|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;angelkat&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:orange&amp;quot;|Padraig O&#039;Connor ([[User:landa2|landa2]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Kevin Fox ([[User:undone|undone]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:coral&amp;quot;|Diarmuid Bourke ([[User:drag0n|drag0n]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:mediumspringgreen&amp;quot;|John Doyle ([[User:art_wolf]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|Sarunas Vancevicius ([[User:svan|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;svan&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
| 2006 Q4&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Stephen Doyle ([[User:igy|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;igy&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
| 2007 Q1&lt;br /&gt;
|rowspan=&amp;quot;6&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|Damien Rhatigan ([[User:dano|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;dano&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2007 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2007 Q3&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|Andrew Harford ([[User:receive|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;receive&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|Kevin Fox ([[User:undone|undone]])&lt;br /&gt;
|style=&amp;quot;background:peachpuff&amp;quot;|Ashley Samuel Dooley Martyn ([[User:mythe|mythe]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Matthew Barrington ([[User:moju|moju]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightsalmon&amp;quot;|Eoghan Cotter ([[User:johan|johan]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:YellowGreen&amp;quot;|Declan Whelan ([[User:castle|castle]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:silver&amp;quot;|Richard Dalton ([[User:d_fens|d_fens]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:gold&amp;quot;|Andrew Martin ([[User:werdz|werdz]])&lt;br /&gt;
|style=&amp;quot;background:coral&amp;quot;|Diarmuid Bourke ([[User:drag0n|drag0n]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:skyblue&amp;quot;|Cian Brennan ([[User:lil_cain|lil_cain]])&lt;br /&gt;
|-&lt;br /&gt;
|2007 Q4&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background:aquamarine&amp;quot;|Amy Corrigan ([[User:corriga6|corriga6]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2008 Q1&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:orange&amp;quot;|Padraig O&#039;Connor ([[User:landa2|landa2]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:green;color:white&amp;quot;|David Lynam ([[User:coconut|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;coconut&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2008 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2008 Q3&lt;br /&gt;
|style=&amp;quot;background:coral&amp;quot;|Robert O&#039;Reilly ([[User:robby|robby]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:olive;color:white&amp;quot;|Damien Rhatigan ([[User:dano|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;dano&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:plum&amp;quot;|Leah Doyle ([[User:bambi|bambi]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Lotta Mikkonen ([[User:attol|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;attol&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:RoyalBlue;color:white&amp;quot;|John Needham ([[User:colossus|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;colossus&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:yellow&amp;quot;|Emma Gallagher ([[User:emma|emma]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Sean Hand ([[User:revenant|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;revenant&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:orangered;color:white&amp;quot;|Séamus Ronan ([[User:train|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;train&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:peachpuff&amp;quot;|Gavin Tubritt ([[User:gamblitis|gamblitis]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:gold&amp;quot;|Andrew Martin ([[User:werdz|werdz]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:red;color:white&amp;quot;|Andrew Harford ([[User:receive|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;receive&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;8&amp;quot; style=&amp;quot;background:lightsalmon&amp;quot;|Eoghan Cotter ([[User:johan|johan]])&lt;br /&gt;
|-&lt;br /&gt;
|2008 Q4&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Kat Farrell ([[User:angelkat|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;angelkat&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2009 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Carri Fuery ([[User:carri|carri]])&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2009 Q2&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|style=&amp;quot;background:dimgray&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|2009 Q3&lt;br /&gt;
|rowspan=&amp;quot;5&amp;quot; style=&amp;quot;background:blue;color:white&amp;quot;|Lotta Mikkonen ([[User:attol|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;attol&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:yellow&amp;quot;|Emma Gallagher ([[User:emma|emma]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;color:white;background:brown&amp;quot;|Sean Hand ([[User:revenant|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;revenant&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Carri Fuery ([[User:carri|carri]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:silver&amp;quot;|Dan Fox ([[User:maiden|maiden]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:greenyellow&amp;quot;|David Glennon ([[User:azrael|azrael]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:lightpink&amp;quot;|Austin Halpin ([[User:haus|haus]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:lightcyan&amp;quot;|Diarmaid McManus ([[User:elephant|elephant]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:mediumspringgreen&amp;quot;|Gautam Wadhwa ([[User:gw|gw]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:purple;color:white&amp;quot;|Kat Farrell ([[User:angelkat|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;angelkat&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|style=&amp;quot;background:green;color:white&amp;quot;|David Lynam ([[User:coconut|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;coconut&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; style=&amp;quot;background:plum&amp;quot;|Alan Breathnach ([[User:sonic|sonic]])&lt;br /&gt;
|-&lt;br /&gt;
|2009 Q4&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background:gold&amp;quot;|Andrew Martin ([[User:werdz|werdz]])&lt;br /&gt;
|-&lt;br /&gt;
|2010 Q1&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:coral&amp;quot;|Stephanie Coleman ([[User:steph|steph]])&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:midnightblue;color:white&amp;quot;|Craig Gavagan MacEntee ([[User:credak|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;credak&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|-&lt;br /&gt;
|2010 Q2&lt;br /&gt;
|-&lt;br /&gt;
|2010 Q3&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:chocolate&amp;quot;|Nina Hanzlikova ([[User:geekity|&amp;lt;span&amp;gt;geekity&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:dimgrey&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:yellow&amp;quot;|Emma Gallagher ([[User:emma|&amp;lt;span&amp;gt;emma&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:khaki&amp;quot;|Carri Fuery ([[User:carri|&amp;lt;span&amp;gt;carri&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:dimgrey&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:goldenrod&amp;quot;|Shane Stacey ([[User:isaac702|&amp;lt;span&amp;gt;isaac702&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:fuchsia&amp;quot;|Paul Bunbury ([[User:bunbun|&amp;lt;span&amp;gt;bunbun&amp;lt;span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:dimgrey&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:midnightblue;color:white&amp;quot;|Craig Gavagan MacEntee ([[User:creadak|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;creadak&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:seagreen&amp;quot;|James Reilly ([[User:fun|&amp;lt;span&amp;gt;fun&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:darkolivegreen&amp;quot;|Seamus Ronan ([[User:train|&amp;lt;span style=&amp;gt;train&amp;lt;/span&amp;gt;]])&lt;br /&gt;
|rowspan=&amp;quot;1&amp;quot; style=&amp;quot;background:dimgrey&amp;quot;|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9683</id>
		<title>OSs used by Redbrickers</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9683"/>
		<updated>2010-05-29T22:50:48Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* creadak */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of users and what Operating Systems they are competent with.&lt;br /&gt;
&lt;br /&gt;
Feel free to add an an entry about yourself below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:redgiant|redgiant]]==&lt;br /&gt;
&lt;br /&gt;
Linux (redhat, debian), Solaris, Tru64&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
Windows (95, 98, NT, XP), Linux (redhat), VxWork, Solaris, OS20, OS21&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
&lt;br /&gt;
Linux: Redhat 8,9, Fedora 3,4. Current: Ubuntu breezy.&amp;lt;br/&amp;gt;&lt;br /&gt;
Windows: 3.1 and 95. Current: 98se and XP home.&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
FreeBSD, Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:lil_cain|lil_cain]]==&lt;br /&gt;
Linux(Ubuntu &amp;amp; debian) Windows (&amp;lt;3) and a bit of free-bsd. I also love solaris. It&#039;s the best OS ever.&lt;br /&gt;
&lt;br /&gt;
==[[User:svan|svan]]==&lt;br /&gt;
&lt;br /&gt;
DragonFlyBSD, FreeBSD, Linux, Windows.&lt;br /&gt;
&lt;br /&gt;
==[[User:gavin|gavin]]==&lt;br /&gt;
&lt;br /&gt;
PalmOS 5.&lt;br /&gt;
&lt;br /&gt;
==[[User:kyper|kyper]]== &lt;br /&gt;
Mac OS X, Linux (Debian &amp;amp; Slackware), BeOS, FreeBSD, OpenBSD and Windows&lt;br /&gt;
&lt;br /&gt;
==[[User:pushpop|pushpop]]==&lt;br /&gt;
&lt;br /&gt;
Linux (SuSe), Windows, Mac OS X&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
&lt;br /&gt;
Ubuntu 8.04 and OpenSuSE 11, and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==[[User:receive|receive]]==&lt;br /&gt;
&lt;br /&gt;
Currently using Fedora 8. That is all.&lt;br /&gt;
&lt;br /&gt;
==[[User:d_fens|d_fens]]==&lt;br /&gt;
&lt;br /&gt;
Micrsoft Vista/XP/2k/ME/98SE, Ubuntu Fesity/Edgy/Dapper, DSLinux, FreeBSD&lt;br /&gt;
&lt;br /&gt;
==[[User:exzantia|exzantia]]==&lt;br /&gt;
[[image:apple_logo.jpg]] [[image:ubuntu_logo.jpg]] [[image:windows_logo.jpg]]&lt;br /&gt;
&lt;br /&gt;
==[[User:revenant|revenant]]==&lt;br /&gt;
Current: Windows Vista, XP Pro, Kubuntu, OSX Tiger&lt;br /&gt;
&lt;br /&gt;
Past: Windows 3.1, 95, 98SE&lt;br /&gt;
&lt;br /&gt;
==[[User:eondev|eondev]]==&lt;br /&gt;
Ubuntu 8.04, OS J Alpha&lt;br /&gt;
&lt;br /&gt;
Past OSes: Windows XP, Windows Vista (/shudder), Windows 98, Sabayon, Fedora&lt;br /&gt;
&lt;br /&gt;
==[[User:ru|ru]]==&lt;br /&gt;
Current: Windows Vista Home Premium, Vista Ultimate, XP MCE Edition&lt;br /&gt;
&lt;br /&gt;
Past: Ubuntu 7.10, Windows XP Pro, Windows XP Home, Windows 98, Windows 95, DOS 6, Some other early dos&lt;br /&gt;
&lt;br /&gt;
==[[User:undone|undone]]==&lt;br /&gt;
Vista and nothing but!&lt;br /&gt;
&lt;br /&gt;
==[[User:gmblitis|gmblitis]]==&lt;br /&gt;
OS X, Linux: Ubuntu, Windows XP&lt;br /&gt;
&lt;br /&gt;
==[[User:haus|haus]]==&lt;br /&gt;
Linux: ubuntu 8.10. Windows: Vista.&lt;br /&gt;
&lt;br /&gt;
==[[User:creadak|creadak]]==&lt;br /&gt;
Linux: Arch Linux, Linux from Scratch (still working on it)&lt;br /&gt;
&lt;br /&gt;
Windows: Windows 7&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Screen&amp;diff=9682</id>
		<title>Screen</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Screen&amp;diff=9682"/>
		<updated>2010-05-29T22:43:03Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* Reattaching Screen Automatically */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Basics ==&lt;br /&gt;
&#039;&#039;&#039;Screen&#039;&#039;&#039; usually does not exist; this &amp;lt;s&amp;gt;is the committee&#039;s&amp;lt;/s&amp;gt; was a former committee&#039;s general position on screen due to the disastrous and/or hilarious situations which often result from new members&#039; attempts to get it working. However, for the purpose of this tutorial, screen &#039;&#039;&#039;does&#039;&#039;&#039; exist, and this is how you use it. (Blame coconut for this defiance.)&lt;br /&gt;
&lt;br /&gt;
=== Omg, what&#039;s screen? ===&lt;br /&gt;
&lt;br /&gt;
Screen is most commonly known as &amp;quot;that thing that lets you stay logged in to chat when you log out of RedBrick&amp;quot;. It&#039;s a terminal multiplexer, which allows you to log into multiple terminal sessions from one terminal window and keeps them open when you go away to bed or whatever it is you do with your time.&lt;br /&gt;
&lt;br /&gt;
=== Opening ===&lt;br /&gt;
Type &amp;quot;screen&amp;quot; at the prompt like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will open a new screen session. First you&#039;ll see the screen startup message, which gives a little info on the program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Just hit space/return as it says and you&#039;ll be running screen. You won&#039;t notice anything immediately different once running screen, instead, you&#039;ll be back at the same old terminal. Now, however, you have access to a large variety of commands and features that you didn&#039;t before.&lt;br /&gt;
&lt;br /&gt;
== Screen commands ==&lt;br /&gt;
=== Ctrl-a commands ===&lt;br /&gt;
Nearly all of screen&#039;s commands are used via the ctrl-a key combination. First, you press the ctrl and a keys together, then release. Next, press the key you want to run a command. These commands can be a little awkward and difficult to remember at first, but you&#039;ll soon get the hang of it. In this tutorial, the commands will be shown as ctrl-a and then a letter, with the following letter being associated with a command.&lt;br /&gt;
&lt;br /&gt;
=== Creating a new window ===&lt;br /&gt;
When you start screen, it presents you with the normal single window terminal you&#039;re used to. You can, however, create many more and run them all within the one screen session. The following command will create another window for you:&lt;br /&gt;
 ctrl-a c&lt;br /&gt;
&lt;br /&gt;
Just hit ctrl and a together, then release them and hit c. This keybinding will open a new window (window 2) inside screen. Now you&#039;ll have two windows to use, so you&#039;ll have to learn how to use the ctrl-a commands to switch between them.&lt;br /&gt;
&lt;br /&gt;
=== Switching windows===&lt;br /&gt;
Once you have more than one window open, you can switch between them using some of the following commands:&lt;br /&gt;
 ctrl-a n&lt;br /&gt;
This command will switch you over to the next window.&lt;br /&gt;
 &lt;br /&gt;
 ctrl-a p&lt;br /&gt;
This one will bring you back to the previous window.&lt;br /&gt;
&lt;br /&gt;
 ctrl-a a&lt;br /&gt;
This will switch between the last two windows that you&#039;ve been using.&lt;br /&gt;
&lt;br /&gt;
 ctrl-a window_number&lt;br /&gt;
Using this command, you can specify exactly which window you want to jump to by hitting ctrl and a, then the number on the keyboard of your desired window. This is pretty useful for when you have a lot of windows open in screen.&lt;br /&gt;
&lt;br /&gt;
=== Naming your windows ===&lt;br /&gt;
You can give each of your windows its own name too for convenience by using this command:&lt;br /&gt;
 ctrl-a A&lt;br /&gt;
&lt;br /&gt;
This one might seem confusing first as the A is a capital letter in this case, but all you need to do is hit ctrl and a together and release as before, then hold shift and press a to get the capital. After you run it, you&#039;ll see a white bar appear at the bottom of your window, where you can change the name of your screen to whatever you like. In this case, the window has just been renamed to &amp;quot;chat&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve named a few windows, you can try this command:&lt;br /&gt;
 ctrl-a &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Yup, even quotation marks can be used in screen commands. So as before you do ctrl-a, then hold shift and hit the 2 key to get the &amp;quot; :) This will bring up a convenient list of all your windows with their names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From this window you can view and go to any of your windows. The flags on the right indicate whether your window is logged in or not with $ symbol.&lt;br /&gt;
&lt;br /&gt;
=== Detaching and reattaching screen ===&lt;br /&gt;
&lt;br /&gt;
One of the most popular features of screen is that it can keep you logged in even when you&#039;re offline. This means you can leave programs running or even stay on IRC even when you&#039;re not online. When you &amp;quot;minimise&amp;quot; screen or make it invisible, it is called detaching it.&lt;br /&gt;
&lt;br /&gt;
To do this, you just detach from screen instead of exiting it. To detach from screen without exiting, use the following command:&lt;br /&gt;
 ctrl-a d&lt;br /&gt;
&lt;br /&gt;
You&#039;ll then be returned to the prompt with a message telling you screen has been detached, like so:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:screen5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Later, you&#039;ll come back online and want to reattach to your screen session. When you &amp;quot;maximise&amp;quot; screen or bring it back onto your terminal, this is known as attaching. To reattach a detached screen, use this command at the prompt:&lt;br /&gt;
 screen -dr&lt;br /&gt;
&lt;br /&gt;
The -d will detach any attached screens and -r will reattach your screen.&lt;br /&gt;
&lt;br /&gt;
If you have more than one screen session available, you will need to specify the screen id you wish to open. You&#039;ll be given a list of the currently available screens, so then you type:&lt;br /&gt;
&lt;br /&gt;
 screen -r&lt;br /&gt;
&lt;br /&gt;
followed by the id listed above of the screen you want to reattach to.&lt;br /&gt;
&lt;br /&gt;
=== Start and stop signals ===&lt;br /&gt;
Quite often it happens someone may end up using the stop signal command in screen by mistake. This command is:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a s&lt;br /&gt;
&lt;br /&gt;
and you should probably avoid using it! But as the s key is beside the a key, people will occasionally run this command by accident without knowing it. As this is a stop signal, it has the unfortunate side effect of freezing up your window :( Worry not however, for to fix it, all you need to do is use the start signal again to bring it back from the dead:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a q&lt;br /&gt;
&lt;br /&gt;
This should have you back in action very shortly. However, if your screen is frozen and you can&#039;t figure out why, try asking a member of [[Helpdesk]] and they should know the answer :)&lt;br /&gt;
&lt;br /&gt;
=== Killing screen while attached ===&lt;br /&gt;
Often enough new members (and often, experienced people) will make mistakes with screen that they can&#039;t fix. To kill screen altogether and start over, use:&lt;br /&gt;
 ctrl-a \&lt;br /&gt;
&lt;br /&gt;
Or, if you just want to kill a single window in screen, use:&lt;br /&gt;
&lt;br /&gt;
 ctrl-a k&lt;br /&gt;
&lt;br /&gt;
or even just type &amp;quot;exit&amp;quot; at the prompt.&lt;br /&gt;
&lt;br /&gt;
=== Killing screen while detached ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: using the &#039;&#039;kill&#039;&#039; command to do anything can be very dangerous if you don&#039;t know what you&#039;re doing. If you&#039;re unsure, reattach the screen you want to kill and follow the instructions above.&lt;br /&gt;
&lt;br /&gt;
If you have more than one screen session and you want to kill one of them, type &amp;quot;screen -dr&amp;quot; to get a list of the available screens (from the terminal which appears when you first log in to RedBrick). Note the &#039;&#039;&#039;number&#039;&#039;&#039; (also known as a process id, or pid) at the beginning of each screen name. This is the process number. Ensure you know which screen session is which.&lt;br /&gt;
&lt;br /&gt;
To terminate a session, use this command (&#039;&#039;pid&#039;&#039; is the number of the session you want to kill)&lt;br /&gt;
&lt;br /&gt;
 kill &#039;&#039;pid&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will send the signal SIGTERM to the process, requesting its termination.&lt;br /&gt;
&lt;br /&gt;
If that fails and you want lil_cain to start complaining&lt;br /&gt;
&lt;br /&gt;
 kill -9 &#039;&#039;pid&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will send the signal SIGKILL to the process, terminating it immediately and with lots of blood.&lt;br /&gt;
&lt;br /&gt;
Then, to then get rid of the dead screen session, type&lt;br /&gt;
&lt;br /&gt;
 screen -wipe&lt;br /&gt;
&lt;br /&gt;
== Screen Configuration ==&lt;br /&gt;
&lt;br /&gt;
So after you&#039;ve set up screen and have gotten used to it, you will probably want to configure it a little bit and the way to do this is by creating a ~/.screenrc&lt;br /&gt;
&lt;br /&gt;
To do this just&lt;br /&gt;
 nano ~/.screenrc&lt;br /&gt;
&lt;br /&gt;
Here&#039;s an example of a .screenrc that you may want to use:&lt;br /&gt;
&lt;br /&gt;
 hardstatus alwayslastline&lt;br /&gt;
 hardstatus string &#039;%{= kg}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%? %?%= %{g}][%{Y}%l%{g}]%{=b C}[ %d %M %c ]%{W}&#039;&lt;br /&gt;
 deflogin off&lt;br /&gt;
 startup_message off&lt;br /&gt;
 screen -t irc 1 irssi&lt;br /&gt;
 screen -t Email/slrn 2 mutt -Z&lt;br /&gt;
 screen -t heys -L -l  3&lt;br /&gt;
&lt;br /&gt;
Basically this only really does two things, sets a hardstatus (basically a line that contains some information) and makes it display only on the bottom line and also creates a few new windows.&lt;br /&gt;
&lt;br /&gt;
The new windows created are given names and optionally a number or command (or both).&lt;br /&gt;
&lt;br /&gt;
 screen -t irc q irssi&lt;br /&gt;
&lt;br /&gt;
This will create screen window 1, give it the title &amp;quot;irc&amp;quot; and then run irssi when you start screen.&lt;br /&gt;
&lt;br /&gt;
 deflogin off&lt;br /&gt;
&lt;br /&gt;
This sets windows logged out by default, which means that you won&#039;t have to &amp;quot;mesg n&amp;quot; windows to not receive heys&lt;br /&gt;
&lt;br /&gt;
 startup_message off&lt;br /&gt;
&lt;br /&gt;
This turns the startup message thats displayed when you start a new screen session off.&lt;br /&gt;
&lt;br /&gt;
 screen -t heys -L -l  3&lt;br /&gt;
&lt;br /&gt;
Will create a logged in window specifically for heys. Handy.&lt;br /&gt;
&lt;br /&gt;
All this makes it very simple to restart all your processes if Redbrick ever crashes.&lt;br /&gt;
&lt;br /&gt;
With the above configuration file it will look something like this:&lt;br /&gt;
&lt;br /&gt;
[[Image:screenrc.jpg]]&lt;br /&gt;
&lt;br /&gt;
=== Reattaching Screen Automatically ===&lt;br /&gt;
&lt;br /&gt;
So, you&#039;ve made your screen, configured it, and you happily type screen -dr &#039;&#039;&#039;every time&#039;&#039;&#039; you login to RedBrick. But wouldn&#039;t it be nice if whenever you login your screen would reattach &#039;&#039;&#039;itself&#039;&#039;&#039;??? It can be done :D&lt;br /&gt;
&lt;br /&gt;
Simply use your favorite text editor to edit your ~/.zshrc (or ~/.[name_of_shell]rc) and paste the following code into it.&lt;br /&gt;
&lt;br /&gt;
 if [ -z &amp;quot;$STY&amp;quot; -a $TERM != &amp;quot;screen&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
     exec screen -dr&lt;br /&gt;
 fi&lt;br /&gt;
&lt;br /&gt;
That should do the job. However make sure to keep the spaces between the if statement, the brackets and the inside of the if statement (or it won&#039;t work).&lt;br /&gt;
&lt;br /&gt;
In particular&lt;br /&gt;
&lt;br /&gt;
 $TERM != &amp;quot;screen&amp;quot;&lt;br /&gt;
&lt;br /&gt;
is very important for that code segment to work, otherwise when connecting to another server (Carbon for instance), your shell will try to attach a screen session, fail and disconnect leaving you on the server you tried to connect from (Really quite annoying).&lt;br /&gt;
&lt;br /&gt;
* Please note, if this in fact, does not work, you can edit it out by using winSCP and editing the file using it.&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
If you&#039;d like to learn more about the program, a long list of screen commands can be found here: http://www.linuxdevcenter.com/linux/cmd/cmd.csp?path=s/screen&lt;br /&gt;
&lt;br /&gt;
Help edited a screenrc: http://www.debian-administration.org/articles/560&lt;br /&gt;
&lt;br /&gt;
A starting guide to screen: http://magazine.redhat.com/2007/09/27/a-guide-to-gnu-screen/&lt;br /&gt;
&lt;br /&gt;
The Gentoo wiki article on screen (quite in depth) : http://www.gentoo-wiki.info/Screen&lt;br /&gt;
&lt;br /&gt;
[[Category:Helpdesk]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=TimeLine2010&amp;diff=9681</id>
		<title>TimeLine2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=TimeLine2010&amp;diff=9681"/>
		<updated>2010-05-24T01:46:53Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* April */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==January==&lt;br /&gt;
* 20th - New direct attached storage array arrives. Named [[Worf]], to get back at [[User:lil_cain|lil_cain]] for giving us 2 years of [[Minerva|terribly]] [[Sprout|named]] [[Daniel|machines]]. Since it doesn&#039;t actually have a hostname, this won&#039;t matter though.&lt;br /&gt;
* 20th - [[B4]] is &amp;quot;modified&amp;quot; to take extra serial ports. Pictures to be posted to seeifixedit.com soon. Still in infinitely better condition then the machine it&#039;s replacing ([[Sprout|sprout]]).&lt;br /&gt;
==February==&lt;br /&gt;
* 1st - Redbrick Members go to England and find that everything is cheaper. (Case in point: Burger, chips and a Vodka + coke for £4.95)&lt;br /&gt;
* 2nd - Travelling members go to Bletchley Park and are amazed by the whole place, also Craig Gavagan Mac Entee ( credak ) discovers that Alan Turing was Gay. credak is interested enough to investigate more. Later that night, Brickies congregate in Craig&#039;s room and make enough noise to annoy an uppity German across the hall, Chris gets his hair straightened and has make up put on him.&lt;br /&gt;
* 3rd - Brickies return from England, flight is delayed by about a half hour due to delayed flight coming from Dublin.&lt;br /&gt;
* 5th - Redbrick goes down in order to move user files to the new faster storage array ([[Worf]]), logins return around 9 while web server remains down for a bit longer. Users gain more space for &amp;lt;del&amp;gt;pronz&amp;lt;/del&amp;gt; files&lt;br /&gt;
* 16th - Lotta Mikkonnen ([[User:attol|Attol]]), David Glennon ([[User:azrael|Azrael]]) and Craig Gavagan Mac Entee ([[User:credak|Credak]]) man the Redbrick Refreshers Day table and attract ~6/7 new people. [[User:credak|Credak]] &#039;&#039;&#039;voluntarily&#039;&#039;&#039; spends most of the day in the infamous brick mascot.&lt;br /&gt;
* 16th - Virtual machines are made available on a this-will-probably-asplode-at-any-moment-alpha basis. It rapidly begins [[RBVM_Bugs|asploding]], but it&#039;s a huge step in the right direction.&lt;br /&gt;
* 20th - Linux is put back on [[Murphy]]. Redbrick is free from [[Rage|Solaris]] \o/&lt;br /&gt;
*26th-28th - Redbrick visit Skynet to attend a series of talks. Speakers include Matt Zimmerman, David Coallier and Laura Czajkowski. Terran(Skynet) takes GW, Attol and Spanza on a tour of Limerick. Not much sleep is had on the nights due to partying and chatting. Tyrion(Skynet) abuses &amp;quot;Kevin&amp;quot;. A random drunk dude who wandered into our booth in Costelloe&#039;s to have a nap. Maiden parties on down with Skynetters&lt;br /&gt;
&lt;br /&gt;
==March==&lt;br /&gt;
* 2nd - Admin training for 2010 begins with a session on shell scripting presented by [[User:receive|Andrew Harford]].&lt;br /&gt;
* 8th - Start of Tech Week 2010:&lt;br /&gt;
  Monday, 1PM - Hackerspaces, Jeffrey Roe&lt;br /&gt;
  Monday, 8PM - Launch party, Nubar&lt;br /&gt;
  Tuesday, 6PM - Game Programming, [[User:kineada|Tom Cashman]]&lt;br /&gt;
  Tuesday, 7PM - Django, [[User:atlas|Eoghan Gaffney]]&lt;br /&gt;
  Tuesday, 8PM - Film, Strange Things&lt;br /&gt;
  Wednesday, 2PM - Past Multimedia Projects, Declan Tuite&lt;br /&gt;
  Wednesday, 4PM - Build Your Own PC, [[User:revenant|Sean Hand]]&lt;br /&gt;
  Wednesday, 5PM - QZar&lt;br /&gt;
  Thursday, 6PM - Sustainable Computing, [[User:doc|Dave O&#039;Connor]], Google&lt;br /&gt;
  Thursday, 7PM - Ubuntu Ireland Community, Laura Czjakowski&lt;br /&gt;
  Thursday, 8PM - Strange Things Quiz&lt;br /&gt;
  Saturday - [[Botwars NUIG|Robot Wars, NUIG]]&lt;br /&gt;
&lt;br /&gt;
* The Annual Redbrick Table Quiz was held, Prizes were 1st External Hard Drives, 2nd Sega Mega Drives, 3rd Nerf Guns, The raffle prize of a Dell Mini 10v was won by Andrew Harford. Debate Soc came first, again.&lt;br /&gt;
&lt;br /&gt;
==April==&lt;br /&gt;
&lt;br /&gt;
* 15th - Annual AGM is held in CG04 with an amazing turnout. Resolution to reduce Helpdesk from three people to two people passes by a clear majority. Elections were held and the new committee was chosen.&lt;br /&gt;
&lt;br /&gt;
Chairperson:&lt;br /&gt;
  Lotta Mikkonen (attol) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Secretary:&lt;br /&gt;
  Nina Hanzlikova (geekity) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Events Officer:&lt;br /&gt;
  Emma Gallagher (emma) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
PRO:&lt;br /&gt;
  Carri Fuery (carri) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Admins:&lt;br /&gt;
  James Reilly (fun) and Seamus Ronan (train) ran, both were elected&lt;br /&gt;
&lt;br /&gt;
Webmaster:&lt;br /&gt;
  Craig Gavagan Mac Entee (creadak) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Helpdesk:&lt;br /&gt;
  Paul Bunbury (bunbun) and Shane Stacey (isaac702) ran, both were elected.&lt;br /&gt;
&lt;br /&gt;
The First Year Rep, Treasurer and the Third Admin will be elected at an EGM in October.&lt;br /&gt;
&lt;br /&gt;
==May==&lt;br /&gt;
==June==&lt;br /&gt;
==July==&lt;br /&gt;
==August==&lt;br /&gt;
==September==&lt;br /&gt;
==October==&lt;br /&gt;
==November==&lt;br /&gt;
==December==&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=TimeLine2010&amp;diff=9680</id>
		<title>TimeLine2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=TimeLine2010&amp;diff=9680"/>
		<updated>2010-05-24T01:46:23Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* April */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==January==&lt;br /&gt;
* 20th - New direct attached storage array arrives. Named [[Worf]], to get back at [[User:lil_cain|lil_cain]] for giving us 2 years of [[Minerva|terribly]] [[Sprout|named]] [[Daniel|machines]]. Since it doesn&#039;t actually have a hostname, this won&#039;t matter though.&lt;br /&gt;
* 20th - [[B4]] is &amp;quot;modified&amp;quot; to take extra serial ports. Pictures to be posted to seeifixedit.com soon. Still in infinitely better condition then the machine it&#039;s replacing ([[Sprout|sprout]]).&lt;br /&gt;
==February==&lt;br /&gt;
* 1st - Redbrick Members go to England and find that everything is cheaper. (Case in point: Burger, chips and a Vodka + coke for £4.95)&lt;br /&gt;
* 2nd - Travelling members go to Bletchley Park and are amazed by the whole place, also Craig Gavagan Mac Entee ( credak ) discovers that Alan Turing was Gay. credak is interested enough to investigate more. Later that night, Brickies congregate in Craig&#039;s room and make enough noise to annoy an uppity German across the hall, Chris gets his hair straightened and has make up put on him.&lt;br /&gt;
* 3rd - Brickies return from England, flight is delayed by about a half hour due to delayed flight coming from Dublin.&lt;br /&gt;
* 5th - Redbrick goes down in order to move user files to the new faster storage array ([[Worf]]), logins return around 9 while web server remains down for a bit longer. Users gain more space for &amp;lt;del&amp;gt;pronz&amp;lt;/del&amp;gt; files&lt;br /&gt;
* 16th - Lotta Mikkonnen ([[User:attol|Attol]]), David Glennon ([[User:azrael|Azrael]]) and Craig Gavagan Mac Entee ([[User:credak|Credak]]) man the Redbrick Refreshers Day table and attract ~6/7 new people. [[User:credak|Credak]] &#039;&#039;&#039;voluntarily&#039;&#039;&#039; spends most of the day in the infamous brick mascot.&lt;br /&gt;
* 16th - Virtual machines are made available on a this-will-probably-asplode-at-any-moment-alpha basis. It rapidly begins [[RBVM_Bugs|asploding]], but it&#039;s a huge step in the right direction.&lt;br /&gt;
* 20th - Linux is put back on [[Murphy]]. Redbrick is free from [[Rage|Solaris]] \o/&lt;br /&gt;
*26th-28th - Redbrick visit Skynet to attend a series of talks. Speakers include Matt Zimmerman, David Coallier and Laura Czajkowski. Terran(Skynet) takes GW, Attol and Spanza on a tour of Limerick. Not much sleep is had on the nights due to partying and chatting. Tyrion(Skynet) abuses &amp;quot;Kevin&amp;quot;. A random drunk dude who wandered into our booth in Costelloe&#039;s to have a nap. Maiden parties on down with Skynetters&lt;br /&gt;
&lt;br /&gt;
==March==&lt;br /&gt;
* 2nd - Admin training for 2010 begins with a session on shell scripting presented by [[User:receive|Andrew Harford]].&lt;br /&gt;
* 8th - Start of Tech Week 2010:&lt;br /&gt;
  Monday, 1PM - Hackerspaces, Jeffrey Roe&lt;br /&gt;
  Monday, 8PM - Launch party, Nubar&lt;br /&gt;
  Tuesday, 6PM - Game Programming, [[User:kineada|Tom Cashman]]&lt;br /&gt;
  Tuesday, 7PM - Django, [[User:atlas|Eoghan Gaffney]]&lt;br /&gt;
  Tuesday, 8PM - Film, Strange Things&lt;br /&gt;
  Wednesday, 2PM - Past Multimedia Projects, Declan Tuite&lt;br /&gt;
  Wednesday, 4PM - Build Your Own PC, [[User:revenant|Sean Hand]]&lt;br /&gt;
  Wednesday, 5PM - QZar&lt;br /&gt;
  Thursday, 6PM - Sustainable Computing, [[User:doc|Dave O&#039;Connor]], Google&lt;br /&gt;
  Thursday, 7PM - Ubuntu Ireland Community, Laura Czjakowski&lt;br /&gt;
  Thursday, 8PM - Strange Things Quiz&lt;br /&gt;
  Saturday - [[Botwars NUIG|Robot Wars, NUIG]]&lt;br /&gt;
&lt;br /&gt;
* The Annual Redbrick Table Quiz was held, Prizes were 1st External Hard Drives, 2nd Sega Mega Drives, 3rd Nerf Guns, The raffle prize of a Dell Mini 10v was won by Andrew Harford. Debate Soc came first, again.&lt;br /&gt;
&lt;br /&gt;
==April==&lt;br /&gt;
&lt;br /&gt;
* 15th - Annual AGM is held in CG04 with an amazing turnout. Resolution to reduce Helpdesk from three people to two people passes by a clear majority. Elections were held and the new committee was chosen.&lt;br /&gt;
&lt;br /&gt;
Chairperson:&lt;br /&gt;
  Lotta Mikkonen (attol) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Secretary:&lt;br /&gt;
  Nina Hanzlikova (geekity) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Events Officer:&lt;br /&gt;
  Emma Gallagher (emma) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
PRO:&lt;br /&gt;
  Carri Fuery (carri) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Admins:&lt;br /&gt;
  James Reilly (fun) and Seamus Ronan ( train ) ran, both were elected&lt;br /&gt;
&lt;br /&gt;
Webmaster:&lt;br /&gt;
  Craig Gavagan Mac Entee (creadak) was the only candidate and was elected by a show of hands&lt;br /&gt;
&lt;br /&gt;
Helpdesk:&lt;br /&gt;
  Paul Bunbury (bunbun) and Shane Stacey (isaac702) ran, both were elected.&lt;br /&gt;
&lt;br /&gt;
The First Year Rep, Treasurer and the Third Admin will be elected at an EGM in October.&lt;br /&gt;
&lt;br /&gt;
==May==&lt;br /&gt;
==June==&lt;br /&gt;
==July==&lt;br /&gt;
==August==&lt;br /&gt;
==September==&lt;br /&gt;
==October==&lt;br /&gt;
==November==&lt;br /&gt;
==December==&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Coders_on_Redbrick&amp;diff=9670</id>
		<title>Coders on Redbrick</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Coders_on_Redbrick&amp;diff=9670"/>
		<updated>2010-05-06T23:26:55Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of users and their relevant language competencies. Feel free to add an an entry about yourself.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:bilco|bilco]]==&lt;br /&gt;
&lt;br /&gt;
Java, PL/SQL, JSP&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
Java, C, Perl, C++, Javascript, PHP (and a sprinkling of Visual Basic, Visual C++ and Python)&lt;br /&gt;
&lt;br /&gt;
==[[User:cambo|cambo]]==&lt;br /&gt;
&lt;br /&gt;
C# 2.0, ASP.NET 2.0, AJAX.NET, MSSQL 2005. (XHTML, CSS, XML, Bit of Javascript, Bit of Desktop &amp;amp; Windows Service Dev)&lt;br /&gt;
&lt;br /&gt;
==[[User:calyx|calyx]]==&lt;br /&gt;
&lt;br /&gt;
Java, C, C++, PHP, HTML/CSS/XML (tiny amount of Perl and Python)&lt;br /&gt;
&lt;br /&gt;
==[[User:creadak|creadak]]==&lt;br /&gt;
&lt;br /&gt;
Python, Java X86 Assembly, Haskell, R, sprinkling of C, Shell Scripting, SQL HTML/CSS/XHTML/Django/PHP&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
&lt;br /&gt;
Java, PHP, Prolog, Haskell and bits of C, C++ and JavaScript.&lt;br /&gt;
&lt;br /&gt;
==[[User:Eondev|EonDev]]==&lt;br /&gt;
&lt;br /&gt;
Java, C++, PHP, MySQL&lt;br /&gt;
&lt;br /&gt;
==[[User:halenger|halenger]]==&lt;br /&gt;
&lt;br /&gt;
Python, Java, some PHP/C/C++&lt;br /&gt;
&lt;br /&gt;
==[[User:jasper|jasper]]==&lt;br /&gt;
&lt;br /&gt;
VB6, VB.NET, Java, C++, C#, PHP, ASP, JSP, JS, XSLT&lt;br /&gt;
&lt;br /&gt;
==[[User:kyper|kyper]]==&lt;br /&gt;
&lt;br /&gt;
BASIC (QBasic, FreeBASIC, VB6 VB .NET), Java, C/C++/Obj-C, PHP and ASP&lt;br /&gt;
&lt;br /&gt;
==[[User:link|link]]==&lt;br /&gt;
&lt;br /&gt;
C, Java, Perl, Tcl&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
Java, C++.&lt;br /&gt;
&lt;br /&gt;
==[[User:phase|phase]]==&lt;br /&gt;
&lt;br /&gt;
VB6, C#/VB.NET, Coldfusion MX, MSSQL, ASP, MySQL&lt;br /&gt;
&lt;br /&gt;
==[[User:redgiant|redgiant]]==&lt;br /&gt;
&lt;br /&gt;
C, C++, perl, php, python, ASP&lt;br /&gt;
&lt;br /&gt;
==[[User:Taurus|Taurus]]==&lt;br /&gt;
&lt;br /&gt;
Usual web stuff (XHTML, CSS etc...), Javascript, PHP, C++, Java, SQL and PL/SQL&lt;br /&gt;
&lt;br /&gt;
==[[User:osama|osama]]==&lt;br /&gt;
&lt;br /&gt;
Java, JSP, XML, PHP, C#, Progress, C, Perl, PL/SQL&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
Python, C, C++, Perl, Java, Usual web stuff (PHP, JS, etc)&lt;br /&gt;
&lt;br /&gt;
==[[User:pushpop|pushpop]]==&lt;br /&gt;
&lt;br /&gt;
C/C++, Java, ASP, PHP, x86, MIPS, SQL&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9669</id>
		<title>OSs used by Redbrickers</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9669"/>
		<updated>2010-05-06T23:16:12Z</updated>

		<summary type="html">&lt;p&gt;Creadak: /* creadak */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of users and what Operating Systems they are competent with.&lt;br /&gt;
&lt;br /&gt;
Feel free to add an an entry about yourself below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:redgiant|redgiant]]==&lt;br /&gt;
&lt;br /&gt;
Linux (redhat, debian), Solaris, Tru64&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
Windows (95, 98, NT, XP), Linux (redhat), VxWork, Solaris, OS20, OS21&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
&lt;br /&gt;
Linux: Redhat 8,9, Fedora 3,4. Current: Ubuntu breezy.&amp;lt;br/&amp;gt;&lt;br /&gt;
Windows: 3.1 and 95. Current: 98se and XP home.&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
FreeBSD, Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:lil_cain|lil_cain]]==&lt;br /&gt;
Linux(Ubuntu &amp;amp; debian) Windows (&amp;lt;3) and a bit of free-bsd. I also love solaris. It&#039;s the best OS ever.&lt;br /&gt;
&lt;br /&gt;
==[[User:svan|svan]]==&lt;br /&gt;
&lt;br /&gt;
DragonFlyBSD, FreeBSD, Linux, Windows.&lt;br /&gt;
&lt;br /&gt;
==[[User:gavin|gavin]]==&lt;br /&gt;
&lt;br /&gt;
PalmOS 5.&lt;br /&gt;
&lt;br /&gt;
==[[User:kyper|kyper]]== &lt;br /&gt;
Mac OS X, Linux (Debian &amp;amp; Slackware), BeOS, FreeBSD, OpenBSD and Windows&lt;br /&gt;
&lt;br /&gt;
==[[User:pushpop|pushpop]]==&lt;br /&gt;
&lt;br /&gt;
Linux (SuSe), Windows, Mac OS X&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
&lt;br /&gt;
Ubuntu 8.04 and OpenSuSE 11, and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==[[User:receive|receive]]==&lt;br /&gt;
&lt;br /&gt;
Currently using Fedora 8. That is all.&lt;br /&gt;
&lt;br /&gt;
==[[User:d_fens|d_fens]]==&lt;br /&gt;
&lt;br /&gt;
Micrsoft Vista/XP/2k/ME/98SE, Ubuntu Fesity/Edgy/Dapper, DSLinux, FreeBSD&lt;br /&gt;
&lt;br /&gt;
==[[User:exzantia|exzantia]]==&lt;br /&gt;
[[image:apple_logo.jpg]] [[image:ubuntu_logo.jpg]] [[image:windows_logo.jpg]]&lt;br /&gt;
&lt;br /&gt;
==[[User:revenant|revenant]]==&lt;br /&gt;
Current: Windows Vista, XP Pro, Kubuntu, OSX Tiger&lt;br /&gt;
&lt;br /&gt;
Past: Windows 3.1, 95, 98SE&lt;br /&gt;
&lt;br /&gt;
==[[User:eondev|eondev]]==&lt;br /&gt;
Ubuntu 8.04, OS J Alpha&lt;br /&gt;
&lt;br /&gt;
Past OSes: Windows XP, Windows Vista (/shudder), Windows 98, Sabayon, Fedora&lt;br /&gt;
&lt;br /&gt;
==[[User:ru|ru]]==&lt;br /&gt;
Current: Windows Vista Home Premium, Vista Ultimate, XP MCE Edition&lt;br /&gt;
&lt;br /&gt;
Past: Ubuntu 7.10, Windows XP Pro, Windows XP Home, Windows 98, Windows 95, DOS 6, Some other early dos&lt;br /&gt;
&lt;br /&gt;
==[[User:undone|undone]]==&lt;br /&gt;
Vista and nothing but!&lt;br /&gt;
&lt;br /&gt;
==[[User:gmblitis|gmblitis]]==&lt;br /&gt;
OS X, Linux: Ubuntu, Windows XP&lt;br /&gt;
&lt;br /&gt;
==[[User:haus|haus]]==&lt;br /&gt;
Linux: ubuntu 8.10. Windows: Vista.&lt;br /&gt;
&lt;br /&gt;
==[[User:creadak|creadak]]==&lt;br /&gt;
Linux: Ubuntu 10.04, Debian 5, Fedora 13 beta, Arch Linux, Gentoo (building), Linux from Scratch (still working on it)&lt;br /&gt;
&lt;br /&gt;
Windows: Windows 7&lt;br /&gt;
&lt;br /&gt;
BSD: FreeBSD (in an RBVM)&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9668</id>
		<title>OSs used by Redbrickers</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=OSs_used_by_Redbrickers&amp;diff=9668"/>
		<updated>2010-05-06T23:15:03Z</updated>

		<summary type="html">&lt;p&gt;Creadak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of users and what Operating Systems they are competent with.&lt;br /&gt;
&lt;br /&gt;
Feel free to add an an entry about yourself below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:redgiant|redgiant]]==&lt;br /&gt;
&lt;br /&gt;
Linux (redhat, debian), Solaris, Tru64&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
Windows (95, 98, NT, XP), Linux (redhat), VxWork, Solaris, OS20, OS21&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
&lt;br /&gt;
Linux: Redhat 8,9, Fedora 3,4. Current: Ubuntu breezy.&amp;lt;br/&amp;gt;&lt;br /&gt;
Windows: 3.1 and 95. Current: 98se and XP home.&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
FreeBSD, Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:lil_cain|lil_cain]]==&lt;br /&gt;
Linux(Ubuntu &amp;amp; debian) Windows (&amp;lt;3) and a bit of free-bsd. I also love solaris. It&#039;s the best OS ever.&lt;br /&gt;
&lt;br /&gt;
==[[User:svan|svan]]==&lt;br /&gt;
&lt;br /&gt;
DragonFlyBSD, FreeBSD, Linux, Windows.&lt;br /&gt;
&lt;br /&gt;
==[[User:gavin|gavin]]==&lt;br /&gt;
&lt;br /&gt;
PalmOS 5.&lt;br /&gt;
&lt;br /&gt;
==[[User:kyper|kyper]]== &lt;br /&gt;
Mac OS X, Linux (Debian &amp;amp; Slackware), BeOS, FreeBSD, OpenBSD and Windows&lt;br /&gt;
&lt;br /&gt;
==[[User:pushpop|pushpop]]==&lt;br /&gt;
&lt;br /&gt;
Linux (SuSe), Windows, Mac OS X&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
&lt;br /&gt;
Ubuntu 8.04 and OpenSuSE 11, and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==[[User:receive|receive]]==&lt;br /&gt;
&lt;br /&gt;
Currently using Fedora 8. That is all.&lt;br /&gt;
&lt;br /&gt;
==[[User:d_fens|d_fens]]==&lt;br /&gt;
&lt;br /&gt;
Micrsoft Vista/XP/2k/ME/98SE, Ubuntu Fesity/Edgy/Dapper, DSLinux, FreeBSD&lt;br /&gt;
&lt;br /&gt;
==[[User:exzantia|exzantia]]==&lt;br /&gt;
[[image:apple_logo.jpg]] [[image:ubuntu_logo.jpg]] [[image:windows_logo.jpg]]&lt;br /&gt;
&lt;br /&gt;
==[[User:revenant|revenant]]==&lt;br /&gt;
Current: Windows Vista, XP Pro, Kubuntu, OSX Tiger&lt;br /&gt;
&lt;br /&gt;
Past: Windows 3.1, 95, 98SE&lt;br /&gt;
&lt;br /&gt;
==[[User:eondev|eondev]]==&lt;br /&gt;
Ubuntu 8.04, OS J Alpha&lt;br /&gt;
&lt;br /&gt;
Past OSes: Windows XP, Windows Vista (/shudder), Windows 98, Sabayon, Fedora&lt;br /&gt;
&lt;br /&gt;
==[[User:ru|ru]]==&lt;br /&gt;
Current: Windows Vista Home Premium, Vista Ultimate, XP MCE Edition&lt;br /&gt;
&lt;br /&gt;
Past: Ubuntu 7.10, Windows XP Pro, Windows XP Home, Windows 98, Windows 95, DOS 6, Some other early dos&lt;br /&gt;
&lt;br /&gt;
==[[User:undone|undone]]==&lt;br /&gt;
Vista and nothing but!&lt;br /&gt;
&lt;br /&gt;
==[[User:gmblitis|gmblitis]]==&lt;br /&gt;
OS X, Linux: Ubuntu, Windows XP&lt;br /&gt;
&lt;br /&gt;
==[[User:haus|haus]]==&lt;br /&gt;
Linux: ubuntu 8.10. Windows: Vista.&lt;br /&gt;
&lt;br /&gt;
==[[User:creadak|creadak]]==&lt;br /&gt;
Linux: Ubuntu 10.04, Debian 5, Fedora 13 beta, Arch Linux, Gentoo (building), Linux from Scratch (still working on it)&lt;br /&gt;
Windows: Windows 7&lt;br /&gt;
BSD: FreeBSD (in an RBVM)&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Creadak</name></author>
	</entry>
</feed>