<?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=Gavin</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=Gavin"/>
	<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/Special:Contributions/Gavin"/>
	<updated>2026-05-22T18:58:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.8</generator>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cplusplus&amp;diff=6769</id>
		<title>Cplusplus</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cplusplus&amp;diff=6769"/>
		<updated>2008-03-06T16:27:49Z</updated>

		<summary type="html">&lt;p&gt;Gavin: remove some of the crap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Under construction.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you have any problems with this tutorial or want to give feedback, ask questions or get additional help, please e-mail coconut&amp;lt;at&amp;gt;redbrick&amp;lt;dot&amp;gt;dcu&amp;lt;dot&amp;gt;ie or, for general [[Helpdesk]] queries, helpdesk&amp;lt;at&amp;gt;redbrick&amp;lt;dot&amp;gt;dcu&amp;lt;dot&amp;gt;ie. &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; is an object-oriented programming language, developed as a superset of the language [[C]], which means that the language is essentially C with more features, hence the name. However, it has since evolved into a separate language and compatibility with C is no longer guaranteed.&lt;br /&gt;
&lt;br /&gt;
It is a very popular all-purpose language which is commonly utilised for game programming, and in many respects is quite similar to [[Java]], another object-oriented language.&lt;br /&gt;
&lt;br /&gt;
==g++==&lt;br /&gt;
&lt;br /&gt;
The page [[Programming On Redbrick]] explains how to compile programs written in C++. Here we will go  into more depth as to how the compiler g++ works.&lt;br /&gt;
&lt;br /&gt;
A compiler works by translating your programming language (in this case, C++) into opcode, which is the basic language that a processor understands. While C++ is a universal language (source code written on one architecture will generally work on another unless special libraries are used), programs must be recompiled if they are to be used on different architectures - for example, if you are compiling on murphy, which uses the UltraSPARC architecture, you will have to recompile your program if you wish to use it on carbon or deathray, which use the Intel x86 architecture, because UltraSPARC and x86 assembly languages are completely different.&lt;br /&gt;
&lt;br /&gt;
g++ is the free, open-source C++ compiler which is included with many distributions of Linux as part of the gcc package, the latter of which is a C compiler. Other popular C++ compilers include Borland C++ and Microsoft Visual C++, however these are proprietary. gcc (and g++) is the most widely ported and universally available compiler in the world.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
&lt;br /&gt;
To begin programming in C++ on RedBrick, you first have to log in. Once you&#039;ve done that, you can create a new folder for your C++ files by utilising the following command&lt;br /&gt;
&lt;br /&gt;
 mkdir C++&lt;br /&gt;
&lt;br /&gt;
This will create a directory called &amp;quot;C++&amp;quot; in your home directory. Enter this directory by typing&lt;br /&gt;
&lt;br /&gt;
 cd C++&lt;br /&gt;
&lt;br /&gt;
Now you&#039;re ready to create your first C++ program. For this tutorial, we are going to use the [[nano]] editor. Make a new C++ source file, that we will call &amp;quot;first&amp;quot;, with&lt;br /&gt;
&lt;br /&gt;
 nano first.cpp&lt;br /&gt;
&lt;br /&gt;
C++ source code files will generally use the .cpp extension - you may have noticed that C programs use .c&lt;br /&gt;
&lt;br /&gt;
nano should be open, awaiting input. The first thing you should do is import the necessary libraries to allow input/output in your program. This is the only library we will use at this point. Make the following line 1 of your program&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;iostream&#039;&#039;&#039; (or, archaically, iostream.h) is a C++ header file, which is a file containing C++ code designed to be imported by multiple programs.&lt;br /&gt;
&lt;br /&gt;
Now we want to create our &#039;&#039;&#039;main()&#039;&#039;&#039; function. main() is the first part of code that will be executed upon running your program. main() will typically look something like this&lt;br /&gt;
&lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    // insert some code here&lt;br /&gt;
   &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
There are a couple of things that have to be explained here.&lt;br /&gt;
&lt;br /&gt;
* The function begins with &#039;&#039;&#039;int&#039;&#039;&#039; - an int in C++ means integer, which is simply a type of variable - in this case a number. Having the function declaration as int main() means that the function main() will return an int at the end of its execution. main() will &#039;&#039;&#039;always&#039;&#039;&#039; return an int.&lt;br /&gt;
&lt;br /&gt;
* Chain brackets &#039;&#039;&#039;{ }&#039;&#039;&#039; are used to denote the code which main() contains. When you call main(), the code between these brackets will be executed.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;//&#039;&#039;&#039; is used to make a comment. A comment is a line in your source code which will be completely ignored by the compiler. This is handy for explaining what your code does and you should quickly learn to use them frivilously.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;return(0);&#039;&#039;&#039; is placed at the end of your main() function. The 0 is the int which is returned by the function - in this case, 0 means the program executed without any problems. Yay!!! The ; is used to mark the end of a line where a command is issued. If you omit this semicolon, the compiler will whinge at you.&lt;br /&gt;
&lt;br /&gt;
So, at this point your program should look like this&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    // insert some code here&lt;br /&gt;
   &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
The [[Programming On Redbrick]] page explains how to compile C++ programs. Just to recap, we&#039;ll go over it again (oh joy!) To indent your code as shown above, press TAB. (Proper indentation is essential programming practice.) Press CTRL+O to bring up the save option, enter to save and then CTRL+X to exit.&lt;br /&gt;
&lt;br /&gt;
 g++ -o first first.cpp&lt;br /&gt;
&lt;br /&gt;
The -o parameter allows you to tell the compiler where you want to have the compiled program saved and what you want its name to be. In this case, it&#039;ll be compiled to the same folder as your source file, first.cpp&lt;br /&gt;
&lt;br /&gt;
Your program &#039;&#039;should&#039;&#039; compile. If it does, run it by entering&lt;br /&gt;
&lt;br /&gt;
 ./first&lt;br /&gt;
&lt;br /&gt;
Nothing will happen. That&#039;s because we haven&#039;t told the program to do anything!&lt;br /&gt;
&lt;br /&gt;
==Wow your ma with a basic program==&lt;br /&gt;
&lt;br /&gt;
Open up your source file again and delete the comment line. Now it&#039;s time to get stuck into some real code.&lt;br /&gt;
&lt;br /&gt;
Change your program so it now reads&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    std::cout &amp;lt;&amp;lt; &amp;quot;This is my first real C++ program. Epic lulz!&amp;quot; &amp;lt;&amp;lt; std::endl;&lt;br /&gt;
   &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
If you compile this, the program should execute and print this line onto the screen&lt;br /&gt;
&lt;br /&gt;
 This is my first real C++ program. Epic lulz!&lt;br /&gt;
&lt;br /&gt;
Hurrah! Something useful and/or interesting!&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;cout&#039;&#039;&#039; is the C++ command for issuing an output. By default, this will go to the screen. Use left-facing arrow thingies (&amp;lt;&amp;lt;) to put your output into the cout command. You can link several things together by using multiple pairs of arrows as seen in the code, without having to issue cout twice.&lt;br /&gt;
* &#039;&#039;&#039;endl&#039;&#039;&#039; moves output to the next line on the screen. It also flushes the stream... whatever that means.&lt;br /&gt;
* &#039;&#039;&#039;std&#039;&#039;&#039; is the namespace which contains cout and endl. We could include the entire namespace in the code, but for now we don&#039;t need to since we&#039;re only using two of its functions - therefore we&#039;ll access them directly by putting std:: in front of cout and endl.&lt;br /&gt;
* The text between the &amp;quot; &amp;quot; is called a string of characters. In C++, strings are always put between inverted commas like this.&lt;br /&gt;
&lt;br /&gt;
To be updated later...&lt;br /&gt;
&lt;br /&gt;
==Variables and operators==&lt;br /&gt;
&lt;br /&gt;
So, you&#039;ve created your first C++ program. You must be so proud of yourself. Here&#039;s where the &#039;&#039;&#039;pain&#039;&#039;&#039; begins. We&#039;re moving on to variables and operators.&lt;br /&gt;
&lt;br /&gt;
A variable is a data container which you assign a value and whose value can, by default, be changed during the execution of your program. That&#039;s why it&#039;s called a variable.&lt;br /&gt;
&lt;br /&gt;
In C++, there are four variable types which you will use most&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;int&#039;&#039;&#039; as explained earlier, is a number.&lt;br /&gt;
* &#039;&#039;&#039;char&#039;&#039;&#039; is a single ASCII character - a letter, a number or a symbol.&lt;br /&gt;
* &#039;&#039;&#039;double&#039;&#039;&#039; is a decimal (floating point) number, for example: 5.673 or 1.0&lt;br /&gt;
* &#039;&#039;&#039;string&#039;&#039;&#039; is just a string (array) of characters - you need to #include the string library for this to work as a data type.&lt;br /&gt;
&lt;br /&gt;
There are other ones which you won&#039;t need as often&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;short&#039;&#039;&#039; is, depending on the compiler, a number whose bit length is shorter (or sometimes) equal to an int.&lt;br /&gt;
* &#039;&#039;&#039;long&#039;&#039;&#039; has a bit length twice that of an int.&lt;br /&gt;
* &#039;&#039;&#039;float&#039;&#039;&#039; is a decimal (floating point) with half the precision of a double - shit, in other words. Avoid unless you&#039;re running on a system with memory measured in kilobytes and desperately need to conserve space, like the [[D6]]. God help you.&lt;br /&gt;
&lt;br /&gt;
To initialise a variable such as an int, simply use the line&lt;br /&gt;
&lt;br /&gt;
 int a;&lt;br /&gt;
&lt;br /&gt;
This reserves memory space for an int called a. But this isn&#039;t much good, is it? We need to give it a value. If you declare the variable like above, you can later assign a value like this&lt;br /&gt;
&lt;br /&gt;
 a = 5;&lt;br /&gt;
&lt;br /&gt;
Now a has the value of 5, however, this is the n00bs&#039; way of doing it. Why not declare and assign at the same time?&lt;br /&gt;
&lt;br /&gt;
 int a = 5;&lt;br /&gt;
&lt;br /&gt;
That&#039;s more like it. You&#039;ll be a RB admin in no time. Let&#039;s run through initialising other variables.&lt;br /&gt;
&lt;br /&gt;
 int a = 5;&lt;br /&gt;
 double b = 10.463;&lt;br /&gt;
 char c = &#039;H&#039;;&lt;br /&gt;
 string d = &amp;quot;Warning: Haskell may contain traces of anti-lulz.&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
Hopefully you&#039;re getting the idea. Now that we&#039;re using string, we will have to start using the namespace std in our code for the sake of speed. Because of this, you will notice the absence of std:: which may make things easier for you.&lt;br /&gt;
&lt;br /&gt;
We can throw the above code into a program and make it output the variables to the screen&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 #include &amp;lt;string&amp;gt; // Remember to include string if you&#039;re using a string!&lt;br /&gt;
 &lt;br /&gt;
 using namespace std; // Also remember this!&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    int a = 5;&lt;br /&gt;
    double b = 10.463;&lt;br /&gt;
    char c = &#039;H&#039;;&lt;br /&gt;
    string d = &amp;quot;Warning: Haskell may contain traces of anti-lulz.&amp;quot;;&lt;br /&gt;
    &lt;br /&gt;
    cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl &amp;lt;&amp;lt; b &amp;lt;&amp;lt; endl &amp;lt;&amp;lt; c &amp;lt;&amp;lt; endl &amp;lt;&amp;lt; d &amp;lt;&amp;lt; endl;&lt;br /&gt;
    &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
Note how we can print four lines, with four different variables, using one cout command by having multiple &amp;lt;&amp;lt;&lt;br /&gt;
&lt;br /&gt;
Also, see how string uses inverted commas &amp;quot; &amp;quot; whereas char uses two apostrophes &#039; &#039; - this is called being unnecessary complicated. But at least this isn&#039;t Haskell, so cheer up.&lt;br /&gt;
&lt;br /&gt;
So, say you want to add two numbers together for some reason which makes sense to you. How? Simple. There are several ways to do it.&lt;br /&gt;
&lt;br /&gt;
 int a = 2;&lt;br /&gt;
 int b = 6;&lt;br /&gt;
 int c = a + b;&lt;br /&gt;
&lt;br /&gt;
The value of c is now the values of a and b added together. If you don&#039;t want to bother with a third variable, you can just put the answer into a or b by replacing the third line with&lt;br /&gt;
&lt;br /&gt;
 a = a + b;&lt;br /&gt;
&lt;br /&gt;
To output c to the screen&lt;br /&gt;
&lt;br /&gt;
 cout &amp;lt;&amp;lt; c;&lt;br /&gt;
&lt;br /&gt;
Or, without having to use c at all&lt;br /&gt;
&lt;br /&gt;
 cout &amp;lt;&amp;lt; a + b;&lt;br /&gt;
&lt;br /&gt;
This adds a and b together and outputs it to the screen all in one go. Hurrah!&lt;br /&gt;
&lt;br /&gt;
You can also add doubles together in the same fashion.&lt;br /&gt;
&lt;br /&gt;
Say you have a few chars and you want to combine them together in order to form a word, and then print it to the screen&lt;br /&gt;
&lt;br /&gt;
 char a = &#039;o&#039;;&lt;br /&gt;
 char b = &#039;m&#039;;&lt;br /&gt;
 char c = &#039;g&#039;;&lt;br /&gt;
 char d = &#039;w&#039;;&lt;br /&gt;
 char e = &#039;a&#039;;&lt;br /&gt;
 char f = &#039;f&#039;;&lt;br /&gt;
 &lt;br /&gt;
 cout &amp;lt;&amp;lt; a + b + c + d + e + f;&lt;br /&gt;
&lt;br /&gt;
This will print &amp;quot;omgwaf&amp;quot; on the screen.&lt;br /&gt;
&lt;br /&gt;
Another way to do it, without using variables at all, is&lt;br /&gt;
&lt;br /&gt;
 cout &amp;lt;&amp;lt; &amp;quot;omgwaf&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
You can also waste everyone&#039;s RAMz if you want, by using a string for no justifiable reason. Say you&#039;ve already declared the chars and assigned their values&lt;br /&gt;
&lt;br /&gt;
 string rofl = a + b + c + d + e + f;&lt;br /&gt;
 &lt;br /&gt;
 cout &amp;lt;&amp;lt; rofl;&lt;br /&gt;
&lt;br /&gt;
Remember: a string is merely an array of characters so this works with strings too. You&#039;ll learn more about arrays later.&lt;br /&gt;
&lt;br /&gt;
There are other basic operators in C++.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;+&#039;&#039;&#039; is the addition operator. It allows numbers to be added and chars and strings to be joined together.&lt;br /&gt;
* &#039;&#039;&#039;-&#039;&#039;&#039; is the subtraction operator. With it you can subtract numbers.&lt;br /&gt;
* &#039;&#039;&#039;*&#039;&#039;&#039; is multiplication. Multiply numbers.&lt;br /&gt;
* &#039;&#039;&#039;/&#039;&#039;&#039; is division. Divide numbers.&lt;br /&gt;
&lt;br /&gt;
Say you want C++ to do your maths homework for you because you feel Michael Clancy is going to fail you for being such a newb.&lt;br /&gt;
&lt;br /&gt;
 int a = (5 * ((12/3) - 1)) + 25&lt;br /&gt;
&lt;br /&gt;
Easy as [[undone]]&#039;s mother.&lt;br /&gt;
&lt;br /&gt;
This will divide 12 by 3, giving 4, then take 1 from it, giving 3, multiply that by 5, giving 15, and then add it to 25, resulting in 40, which is then assigned as the value for a. Try it yourself. Brackets are very handy for mathematical calculations in C++, just like in that yoke known as &amp;quot;real life&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
C++ can also handle negative numbers, just as you would expect a calculator to, except this time the calculator can run 32 threads simultaneously, is about one hundred times bigger, ten thousand times louder, needs several hundred watts of power to function and only the five richest kings of Europe can afford one.&lt;br /&gt;
&lt;br /&gt;
Perhaps that last part was slightly untrue.&lt;br /&gt;
&lt;br /&gt;
==if statements and advanced operators==&lt;br /&gt;
&lt;br /&gt;
A crucial element of any programming language is the ability to test whether something meets a defined condition. The most basic way of doing this in C++ is by using the &#039;&#039;&#039;if&#039;&#039;&#039; statement. Here&#039;s an example of how if and else work&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    int a = 4;&lt;br /&gt;
    &lt;br /&gt;
    if(a == 5)&lt;br /&gt;
    {&lt;br /&gt;
       cout &amp;lt;&amp;lt; &amp;quot;a is 5.&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    }&lt;br /&gt;
    else if(a == 4)&lt;br /&gt;
    {&lt;br /&gt;
       cout &amp;lt;&amp;lt; &amp;quot;a is 4&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    }&lt;br /&gt;
    else&lt;br /&gt;
    {&lt;br /&gt;
       cout &amp;lt;&amp;lt; &amp;quot;a does not equal 4 or 5.&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
If is 5, the program will return &amp;quot;a is 5.&amp;quot;, if it is 4, the program will return &amp;quot;a is 4&amp;quot;. If it is neither 5 nor 4, the program will return &amp;quot;a does not equal 4 or 5.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
You can use an infinite number of &#039;&#039;&#039;else if&#039;&#039;&#039; statements, linking ifs together, but it is probably bad programming practice to use too many.&lt;br /&gt;
&lt;br /&gt;
Also note that if you only have one line of code following an if, if else or else statement (the line which will be executed when the condition is satisfied), you &#039;&#039;may&#039;&#039; omit the chain brackets for the statement.&lt;br /&gt;
&lt;br /&gt;
 if(a &amp;lt; 10)&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;a is less than 10.&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
&lt;br /&gt;
If a is less than 10, the program will return &amp;quot;a is less than 10.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;==&#039;&#039;&#039; is used to see if two variables are equal. It will work for all data types except string, for which there are other functions dealt with later.&lt;br /&gt;
* &#039;&#039;&#039;!=&#039;&#039;&#039; not equal to&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;=&#039;&#039;&#039; less than or equal to&lt;br /&gt;
* &#039;&#039;&#039;&amp;gt;=&#039;&#039;&#039; greater than or equal to&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;&#039;&#039;&#039; less than&lt;br /&gt;
* &#039;&#039;&#039;&amp;gt;&#039;&#039;&#039; greater than&lt;br /&gt;
&lt;br /&gt;
==Loops==&lt;br /&gt;
&lt;br /&gt;
Most programming languages support &#039;&#039;&#039;loops&#039;&#039;&#039;, which are useful for executing a certain part of code over and over.&lt;br /&gt;
&lt;br /&gt;
Here is a &#039;&#039;&#039;while&#039;&#039;&#039; loop&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    int a = 0;&lt;br /&gt;
 &lt;br /&gt;
    while(a &amp;lt; 100)&lt;br /&gt;
    {&lt;br /&gt;
        cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl;&lt;br /&gt;
        a++;&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
This will print 100 lines of numbers, going from 0 to 99&lt;br /&gt;
&lt;br /&gt;
 0&lt;br /&gt;
 1&lt;br /&gt;
 2&lt;br /&gt;
 3&lt;br /&gt;
 4&lt;br /&gt;
 5&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
The condition to make sure that a is less than 100 is checked at the start of each loop, and a is incremented by 1 at the end of each loop (denoted by &#039;&#039;&#039;a++&#039;&#039;&#039;; you can also use &#039;&#039;&#039;a--&#039;&#039;&#039; to decrement by 1). Therefore, when a reaches 99, it will be printed to screen, then incremented. The loop will then check to see if it is less than 100, which it is not, resulting in the termination of the loop.&lt;br /&gt;
&lt;br /&gt;
While loops are handy in games where you may want something to loop endlessly until the user makes an action (presses a key, for example). Here is a variation of the while loop, called the &#039;&#039;&#039;do while&#039;&#039;&#039; loop.&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    int a = 0;&lt;br /&gt;
 &lt;br /&gt;
    do&lt;br /&gt;
    {&lt;br /&gt;
        cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl;&lt;br /&gt;
        a++;&lt;br /&gt;
    }&lt;br /&gt;
    while(a &amp;lt; 100);&lt;br /&gt;
 &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
This print the same 100 lines, 0 to 99. However, the condition for the loop is not checked until the end of the loop.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re dealing with finite numbers of loops, you may want to consider the &#039;&#039;&#039;for loop&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    for(int a = 0; a &amp;lt; 100; a++)&lt;br /&gt;
    {&lt;br /&gt;
       cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl;&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
This produces the same result, except in a much handier format. There are three things you declare when creating a for loop: a variable, what condition must be met for the loop to continue cycling, and what happens at the end of a loop. a is the initialised variable, the loop will continue until it reaches 100 and at the end of each loop, a is incremented by 1. Simple.&lt;br /&gt;
&lt;br /&gt;
To end a loop immediately, issue the following command in your code&lt;br /&gt;
&lt;br /&gt;
 break;&lt;br /&gt;
&lt;br /&gt;
For example, if you want the loop to end early when a certain condition is met, just use an if statement inside the loop and have the loop break if this condition is met.&lt;br /&gt;
&lt;br /&gt;
==Executing system commands in C++==&lt;br /&gt;
&lt;br /&gt;
It is possible to execute system commands from within your C++ program. If your program is command-line only, you can execute simple commands such as those to clear the screen, etc.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using Linux, the code is&lt;br /&gt;
&lt;br /&gt;
 system(&amp;quot;clear&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
You can also do this if you&#039;re running Windows (although why would you want to?) The DOS clear command is &amp;quot;cls&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 system(&amp;quot;cls&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
...like so!&lt;br /&gt;
&lt;br /&gt;
However, it is recommended that you &#039;&#039;&#039;not&#039;&#039;&#039; use system commands in your code for something as trivial as clearing the screen. It&#039;s a resource hog and leaves a gaping security hole in your C++ program. There is a better way to do this in C++, however it requires advanced knowledge of the language and is available below under &#039;&#039;Advanced&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Functions: The Basics==&lt;br /&gt;
&lt;br /&gt;
It&#039;s now time to move on to &#039;&#039;&#039;functions&#039;&#039;&#039;. A function is basically the same thing as a method in Java: it is a sequence of commands which can be called upon at any time, passed parameters and set to return a value.&lt;br /&gt;
&lt;br /&gt;
main() is a function - the default function for a C++ program. But what if you have some code that you don&#039;t want to put into main? Use another function.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s say we want to add two numbers together and print out the result. The code could look something like this:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;iostream&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 using namespace std;&lt;br /&gt;
 &lt;br /&gt;
 int add(int a, int b)&lt;br /&gt;
 {&lt;br /&gt;
    return a + b;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
    int a = 2;&lt;br /&gt;
    int b = 5;&lt;br /&gt;
 &lt;br /&gt;
    cout &amp;lt;&amp;lt; add(a,b) &amp;lt;&amp;lt; endl;&lt;br /&gt;
 &lt;br /&gt;
    return(0);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
This program adds 2 and 5 together to get 7, and displays this answer on-screen.&lt;br /&gt;
&lt;br /&gt;
a and b are passed as &#039;&#039;parameters&#039;&#039; to the add function - they are then immediately added together and the answer is returned. Experiment with this code to do different things.&lt;br /&gt;
&lt;br /&gt;
==More advanced C++==&lt;br /&gt;
&lt;br /&gt;
I&#039;ll get around to this someday. I&#039;m still learning too you know!&lt;br /&gt;
 &lt;br /&gt;
[[Category:Helpdesk]]&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6297</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6297"/>
		<updated>2008-02-14T14:09:14Z</updated>

		<summary type="html">&lt;p&gt;Gavin: More waffle about bike lights&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Articles]]&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
An alternative to a bell is an air horn. These could be of more use than a bell as they are so loud. To be used only in an emergency though. &lt;br /&gt;
&lt;br /&gt;
===Lights &amp;amp; Reflectors===&lt;br /&gt;
&lt;br /&gt;
There are several requirements under law concerning lights &amp;amp; reflectors. &lt;br /&gt;
&lt;br /&gt;
Legal requirements are:&lt;br /&gt;
* You are required at all times to have a rear reflector&lt;br /&gt;
* From &amp;quot;&#039;&#039;half an hour after sunset and ending half an hour before sunrise on the following morning&#039;&#039;&amp;quot; you must have a front and rear lamp. Flashing lights are actually not legal. http://www.citizensinformation.ie/categories/travel-and-recreation/vehicle-standards/lighting_of_bicycles_in_ireland&lt;br /&gt;
&lt;br /&gt;
Broadly speaking, there are two types of bicycle lights. Those that allow you to see and those that allow you to be seen. For commuting through the city center, ones that allow you to be seen are usually enough. These are typically LED lights, running off AA or AAA batteries, usually with a flashing option. The other type of lights are for use on dark roads with no street lighting. These type of lights can be extremely expensive, come with their own powerpack. They are usually halogen, but increasingly more powerful LEDS are also being used. &lt;br /&gt;
&lt;br /&gt;
The best approach is to have a set of lights on the bike which are non-flashing. Then, on your person/bag, put smaller flashing lights. These can help if you come off your bike at night. Non-flashing lights make it easier for drivers to gauge your speed/distance. &lt;br /&gt;
&lt;br /&gt;
The best low range rear bicycle light is the Planet Bike Super Flash. http://ecom1.planetbike.com/3034.html&lt;br /&gt;
&lt;br /&gt;
There are a range of decent front lights. The one I recommend for serious visibility on a budget is a Fenix L2D. http://fenix-store.com/product_info.php?products_id=195 This is actually a handheld torch, but with twofish lockblocks https://www.fenix-store.com/product_info.php?cPath=25_66&amp;amp;products_id=273 can be attached to a bicycle. This torch allows you to see on pitch black roads and be seen going through the city center. Get rechargable AA batteries, at least 2700mah.&lt;br /&gt;
&lt;br /&gt;
There are alternative ones, as bright, available at dealextreme. Anything that uses a Cree LED is going to be bright. &lt;br /&gt;
http://www.dealextreme.com/details.dx/sku.7938 I haven&#039;t used these, so don&#039;t know how good they are. Substantially cheaper than the Fenix though. &lt;br /&gt;
&lt;br /&gt;
For flashing lights, I found these lights bought them off ebay. It&#039;s a LED Band. It&#039;s not one of the green reflective strips with 4 dim red leds in it. They are quite bright, glowing reasonably well for the whole length of the band.&lt;br /&gt;
&lt;br /&gt;
[[Image:Twinkle_amber_on.JPG]]&lt;br /&gt;
&lt;br /&gt;
A number of people seem to make them, Nite-Ize, Polybrite and a korean crowd do knocks off called Twinkler.&lt;br /&gt;
&lt;br /&gt;
I bought the Twinkler version off ebay from here&lt;br /&gt;
http://stores.ebay.com/CycleJerseys-UK&lt;br /&gt;
&lt;br /&gt;
The delivery price ain&#039;t fantastic, but at least it&#039;s quick. I bought an Amber one and a white one. The picture on the website is misleading for the white one though, it&#039;s actually multicoloured, Red, Green, Blue lights. Looks a bit odd, but highly visible.&lt;br /&gt;
&lt;br /&gt;
I put the amber one on my ankle, it&#039;s easily spotted when cycling along. The other one goes on my arm. I found an american place on ebay selling the Nite-Ize ones a bit cheaper&lt;br /&gt;
&lt;br /&gt;
http://stores.ebay.com/Lights-and-Holsters-Plus&lt;br /&gt;
&lt;br /&gt;
Get a reflective, Hi-Vis jacket. If you&#039;re around DCU, head into Heitons up in Santry, a builders store with cheaper jackets. &lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
There is a very good youtube video showing that in fact the SoldSecure ratings are not as accurate as they claim to be. &lt;br /&gt;
http://www.youtube.com/watch?v=VC3hFr8p2ck The second lock shown is the one mentioned above, that I bought from the Great Outdoors. &lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
Trucks and HGVs are the primary killer of cyclists. The classic situation seems to be where a cyclist goes up the inside of a truck turning left. The driver can&#039;t see the cyclist and the cyclist is crushed. This site, http://www.movingtargetzine.com/forum/discussion/598/hgv-blind-spots-from-nozzer/, has an excellent description of blind spots and how to cycle around/near trucks.&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance. Yahoo Maps now has updated maps of dublin, and it&#039;s route planner can do a similar service.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re into leisure or training in dublin, this guy has a great collection of routes in and around Dublin on his [[http://www.routeslip.com/user/dickobrien RouteSlip page]]. There is also the more general page at [[http://www.routeslip.com/discover/Ireland/Dublin RouteSlip Dublin]]&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland, free delivery , decent enough. &lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
===Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com - Plenty of good advice on this site. Ignore the dodgy design and scary photos. &lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.madmtb.com - Mountain Biking Association of Dublin, based in Rathfarnham&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6273</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6273"/>
		<updated>2008-01-23T11:38:00Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Road Positioning */  added hgv dangers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
[[Category:Articles]]&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
There is a very good youtube video showing that in fact the SoldSecure ratings are not as accurate as they claim to be. &lt;br /&gt;
http://www.youtube.com/watch?v=VC3hFr8p2ck The second lock shown is the one mentioned above, that I bought from the Great Outdoors. &lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
Trucks and HGVs are the primary killer of cyclists. The classic situation seems to be where a cyclist goes up the inside of a truck turning left. The driver can&#039;t see the cyclist and the cyclist is crushed. This site, http://www.movingtargetzine.com/forum/discussion/598/hgv-blind-spots-from-nozzer/, has an excellent description of blind spots and how to cycle around/near trucks.&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance. Yahoo Maps now has updated maps of dublin, and it&#039;s route planner can do a similar service.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re into leisure or training in dublin, this guy has a great collection of routes in and around Dublin on his [[http://www.routeslip.com/user/dickobrien RouteSlip page]]. There is also the more general page at [[http://www.routeslip.com/discover/Ireland/Dublin RouteSlip Dublin]]&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland, free delivery , decent enough. &lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
===Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com - Plenty of good advice on this site. Ignore the dodgy design and scary photos. &lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.madmtb.com - Mountain Biking Association of Dublin, based in Rathfarnham&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6259</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=6259"/>
		<updated>2007-11-08T13:52:56Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Added general routeslip link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
[[Category:Articles]]&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
There is a very good youtube video showing that in fact the SoldSecure ratings are not as accurate as they claim to be. &lt;br /&gt;
http://www.youtube.com/watch?v=VC3hFr8p2ck The second lock shown is the one mentioned above, that I bought from the Great Outdoors. &lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance. Yahoo Maps now has updated maps of dublin, and it&#039;s route planner can do a similar service.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re into leisure or training in dublin, this guy has a great collection of routes in and around Dublin on his [[http://www.routeslip.com/user/dickobrien RouteSlip page]]. There is also the more general page at [[http://www.routeslip.com/discover/Ireland/Dublin RouteSlip Dublin]]&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland, free delivery , decent enough. &lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
===Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com - Plenty of good advice on this site. Ignore the dodgy design and scary photos. &lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.madmtb.com - Mountain Biking Association of Dublin, based in Rathfarnham&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=5473</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=5473"/>
		<updated>2006-12-20T18:13:28Z</updated>

		<summary type="html">&lt;p&gt;Gavin: added link to youtube chain cutting video&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
There is a very good youtube video showing that in fact the SoldSecure ratings are not as accurate as they claim to be. &lt;br /&gt;
http://www.youtube.com/watch?v=VC3hFr8p2ck The second lock shown is the one mentioned above, that I bought from the Great Outdoors. &lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland, free delivery , decent enough. &lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
===Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com - Plenty of good advice on this site. Ignore the dodgy design and scary photos. &lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.madmtb.com - Mountain Biking Association of Dublin, based in Rathfarnham&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Installing_Wordpress_on_Redbrick&amp;diff=8104</id>
		<title>Talk:Installing Wordpress on Redbrick</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Installing_Wordpress_on_Redbrick&amp;diff=8104"/>
		<updated>2006-11-03T12:37:38Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;list-manipulation.php --[[User:Gavin|Gavin]] 12:37, 3 Nov 2006 (UTC)&lt;br /&gt;
&lt;br /&gt;
Appears to be another file that needs to have #! added to it. Is there no way of checking to see if the #! has already been defined.. Like in C, the ability to check for #defines. &lt;br /&gt;
&lt;br /&gt;
Willr ead up on it. --[[User:Gavin|Gavin]] 12:37, 3 Nov 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4811</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4811"/>
		<updated>2006-10-05T16:57:14Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland, free delivery , decent enough. &lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
===Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com - Plenty of good advice on this site. Ignore the dodgy design and scary photos. &lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.madmtb.com - Mountain Biking Association of Dublin, based in Rathfarnham&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4599</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4599"/>
		<updated>2006-10-05T16:49:00Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the [http://www.boards.ie/vbulletin/forumdisplay.php?f=410 Cycling] forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
http://www.chainreactioncycles.com - Northern Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.probikekit.com - Dunno&lt;br /&gt;
&lt;br /&gt;
http://www.wiggle.co.uk - UK&lt;br /&gt;
&lt;br /&gt;
http://www.evanscycles.com - UK&lt;br /&gt;
&lt;br /&gt;
http://www.cyclesuperstore.ie - Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.cycleways.com - Ireland&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
http://www.irishcycling.com -Irish news&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingnews.com - World News&lt;br /&gt;
&lt;br /&gt;
http://www.pezcyclingnews.com - American Slant - but good colour pieces&lt;br /&gt;
&lt;br /&gt;
===Bike Manufacturer &amp;amp; Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all your MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
http://www.sheldonbrown.com&lt;br /&gt;
&lt;br /&gt;
===Races &amp;amp; Clubs &amp;amp; Associations===&lt;br /&gt;
http://www.fbdinsuranceras.com/ RÃ¡s&lt;br /&gt;
&lt;br /&gt;
http://www.cyclingulster.com/ - cycling ulster&lt;br /&gt;
&lt;br /&gt;
http://www.juniortour.org/ - junior tour of Ireland&lt;br /&gt;
&lt;br /&gt;
http://www.MTBIreland.com - MTB Ireland, forums here as well.&lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.dublincycling.org &lt;br /&gt;
&lt;br /&gt;
http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.eirbyte.com/gcc/ - Galway Cycling Campaign&lt;br /&gt;
&lt;br /&gt;
http://www.ecf.com - European Cyclists&#039; Federation&lt;br /&gt;
&lt;br /&gt;
http://www.velo-city2005.com/ - Velo-City 2005 Dublin&lt;br /&gt;
&lt;br /&gt;
http://www.22september.org/ - Car Free Day&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4598</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4598"/>
		<updated>2006-10-05T16:44:48Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
===Insurance===&lt;br /&gt;
&lt;br /&gt;
There are no places that I am aware of where one can insure a bicycle on its own; most people put the bike on their house insurance. The house cover should go up to bikes worth 500euro, beyond that you might need to add the bike to the policy and pay more. &lt;br /&gt;
&lt;br /&gt;
If you are renting, apparantly a crowd called http://www.123.ie will insure the house contents and your bicycle. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
The following set of links have been blatantly stolen from the Cycling forum on http://www.boards.ie&lt;br /&gt;
&lt;br /&gt;
===Shops===&lt;br /&gt;
www.chainreactioncycles.com&lt;br /&gt;
www.probikekit.com&lt;br /&gt;
www.wiggle.co.uk&lt;br /&gt;
www.evanscycles.com&lt;br /&gt;
www.cyclesuperstore.ie&lt;br /&gt;
www.cycleways.com&lt;br /&gt;
&lt;br /&gt;
===News &amp;amp; General===&lt;br /&gt;
www.irishcycling.com -Irish news&lt;br /&gt;
www.cyclingnews.com - World News&lt;br /&gt;
www.pezcyclingnews.com - American Slant - but good colour pieces&lt;br /&gt;
&lt;br /&gt;
===Bike Manufacturer &amp;amp; Bike Reviews===&lt;br /&gt;
http://www.mtbr.com/reviews/ - all you MTB products &amp;amp; bikes reviewed&lt;br /&gt;
&lt;br /&gt;
===D.I.Y Repair &amp;amp; Maintenance Tips===&lt;br /&gt;
http://www.parktool.com/repair_help/FAQindex.shtml&lt;br /&gt;
http://www.utahmountainbiking.com/fix/&lt;br /&gt;
&lt;br /&gt;
===Races &amp;amp; Clubs &amp;amp; Associations===&lt;br /&gt;
http://www.fbdinsuranceras.com/ RÃ¡s&lt;br /&gt;
http://www.cyclingulster.com/ - cycling ulster&lt;br /&gt;
http://www.juniortour.org/ - junior tour of Ireland&lt;br /&gt;
www.MTBIreland.com - MTB Ireland&lt;br /&gt;
&lt;br /&gt;
===Groups &amp;amp; Activists===&lt;br /&gt;
http://www.dublincycling.org http://home.connect.ie/dcc/ - Dublin Cycling Campaign&lt;br /&gt;
http://www.eirbyte.com/gcc/ - Galway Cycling Campaign&lt;br /&gt;
http://www.ecf.com - European Cyclists&#039; Federation&lt;br /&gt;
http://www.velo-city2005.com/ - Velo-City 2005 Dublin&lt;br /&gt;
http://www.22september.org/ - Car Free Day&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4597</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4597"/>
		<updated>2006-10-03T15:51:59Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Keeping your bicycle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
There are standards for locks, one of which is the SoldSecure label.&lt;br /&gt;
http://www.soldsecure.com/Leisure.htm&lt;br /&gt;
&lt;br /&gt;
Apparently the more expensive Kryptonite locks can be bought on ebay, and are better value than from cycling shops. &lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4592</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4592"/>
		<updated>2006-10-03T12:17:44Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Buying a bike */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are http://www.chainreactioncycles.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4591</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4591"/>
		<updated>2006-10-02T12:39:26Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
[[Image:locked_bike.jpg|right|thumb|320px|A locked bicycle. Chain around mainframe, Ulock, with both wheels, going through rear triangle onto immovable object. Saddle removed.]]&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Locked_bike.jpg&amp;diff=8090</id>
		<title>File:Locked bike.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Locked_bike.jpg&amp;diff=8090"/>
		<updated>2006-10-02T12:35:09Z</updated>

		<summary type="html">&lt;p&gt;Gavin: A locked bicycle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A locked bicycle&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=8016</id>
		<title>Talk:Places to Eat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=8016"/>
		<updated>2006-09-27T14:43:46Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Would http://www.redbrick.dcu.ie/~doc/reviews/redbrick.food/ be better place for recommendations for places to eat? --[[User:Cammy|The Dead One]] 17:23, 12 May 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
It would be nifty if this page could be a google map and people mark the locations of restaurants.. Don&#039;t know how we&#039;d do that though --[[User:Gavin|Gavin]] 13:34, 27 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
:http://meta.wikimedia.org/wiki/Google_Maps_Extension This looks good. --[[User:Gavin|Gavin]] 13:40, 27 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
:: Thats a great idea! However we haven&#039;t upgrade the wiki to a version that can use that extension. We&#039;re still in 1.4 land and we need to be at least 1.5 to use it. I don&#039;t know when that&#039;s going to happen. --[[User:Cammy|The Dead One]] 14:18, 27 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
::: Ah well fair enough ! --[[User:Gavin|Gavin]] 15:43, 27 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=4560</id>
		<title>Talk:Places to Eat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=4560"/>
		<updated>2006-09-27T12:40:14Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Would http://www.redbrick.dcu.ie/~doc/reviews/redbrick.food/ be better place for recommendations for places to eat? --[[User:Cammy|The Dead One]] 17:23, 12 May 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
It would be nifty if this page could be a google map and people mark the locations of restaurants.. Don&#039;t know how we&#039;d do that though --[[User:Gavin|Gavin]] 13:34, 27 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
:http://meta.wikimedia.org/wiki/Google_Maps_Extension This looks good. --[[User:Gavin|Gavin]] 13:40, 27 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=4559</id>
		<title>Talk:Places to Eat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Places_to_Eat&amp;diff=4559"/>
		<updated>2006-09-27T12:34:14Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Would http://www.redbrick.dcu.ie/~doc/reviews/redbrick.food/ be better place for recommendations for places to eat? --[[User:Cammy|The Dead One]] 17:23, 12 May 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
It would be nifty if this page could be a google map and people mark the locations of restaurants.. Don&#039;t know how we&#039;d do that though --[[User:Gavin|Gavin]] 13:34, 27 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4567</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4567"/>
		<updated>2006-09-27T12:02:35Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Routes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=User:Gavin&amp;diff=7969</id>
		<title>User:Gavin</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=User:Gavin&amp;diff=7969"/>
		<updated>2006-09-26T18:18:38Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gavin.&lt;br /&gt;
Nag VI.&lt;br /&gt;
Nag IV.&lt;br /&gt;
Nivag.&lt;br /&gt;
Vagin.&lt;br /&gt;
&lt;br /&gt;
[[Image:gavin.jpg]]&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Gavin.jpg&amp;diff=8087</id>
		<title>File:Gavin.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Gavin.jpg&amp;diff=8087"/>
		<updated>2006-09-26T18:17:42Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Gavin. AAAIIEEEeeeee&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gavin. AAAIIEEEeeeee&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4557</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4557"/>
		<updated>2006-09-26T18:10:53Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4555</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4555"/>
		<updated>2006-09-26T18:09:32Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Accessories */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Pump and spare tubes===&lt;br /&gt;
You will get a puncture at some point. With a bit of practice, fixing a puncture can be done fairly quickly. You will need bicycle levers (these are much more useful than forks or spoons) a spare tube and a pump. Rather than take the tube from the bike, fix it with a puncture repair kit, wait for the glue to dry and put it back in, the smarter bet is to just have a spare tube you can swap in. You can repair the burst one at home. This guy has a detailed description on how to handle punctures&lt;br /&gt;
&lt;br /&gt;
http://sheldonbrown.com/flats.html&lt;br /&gt;
&lt;br /&gt;
An advantage of thinner tyres is that you can pump them up to a very high pressure, which reduces the likelihood of a puncture. There are also tyres with puncture prevention, these have kevlar lining on the side. Any decent bicycle shop will have them.&lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4554</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4554"/>
		<updated>2006-09-26T18:01:25Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Routes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===DCU into the City Center (O&#039;Connell Street)===&lt;br /&gt;
&lt;br /&gt;
*Leave via the Ballymun Road entrance, and go down the Ballymun Road. &lt;br /&gt;
*At the junction of Griffith Avenue and Ballymun road, go straight on. If the traffic is stopped at this point, move into the righthand lane, out of the cycle lane, otherwise when the lights change you will get stuck on the inside of car or buses turning left.&lt;br /&gt;
*Go straight on, down Mobhi Hill, and move back into the cycle lane, keep an eye on the left behind you, cars don&#039;t turn to the left sometimes and can surprise you. &lt;br /&gt;
*Go past HomeFarm road and down to the bottom of Mobhi Hill. At the bottom turn left onto Botanic Ave.&lt;br /&gt;
*Go all the way up Botanic road to the junction with upper Drumcondra road, staying in the middle in most places, as there is not enough room for cars to overtake, if there are oncoming cars.&lt;br /&gt;
*Get to the top of the queue, if the traffic lights are red. If you saw the lights turn red, then cross the road onto the path at Fagans and press for the pedestrian crossing. Cross the road when the green man arrives. This way you can get ahead of all the cars&lt;br /&gt;
*When on Drumcondra road, go to the left onto a slip road at the public toilets, this leads you onto a shared cycle path/footpath facility. Go to the end of this path, right up to the junction and back onto the main road.&lt;br /&gt;
* Stay in the bus lane and zoom along this road, making sure to move out occasionally when the road turns to the left, to ensure you don&#039;t get squashed.&lt;br /&gt;
*Turn left onto Parnell Square, go straight on and you are on O&#039; Connell St.&lt;br /&gt;
*Stop somewhere for icecream after securely locking your bicycle. &lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459587&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4553</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4553"/>
		<updated>2006-09-26T17:16:31Z</updated>

		<summary type="html">&lt;p&gt;Gavin: updated pedometer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=459481&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=8079</id>
		<title>Talk:Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=8079"/>
		<updated>2006-09-26T17:10:59Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perhaps the article needs to be renamed since the is alot more information here than just about bike locks. Discussion page, so discuss.&lt;br /&gt;
&lt;br /&gt;
: Grand yeah, didn&#039;t know how to do it, as mentioned on the newsgroups - Gav&lt;br /&gt;
&lt;br /&gt;
:: oh. Got it.- Gav&lt;br /&gt;
&lt;br /&gt;
::: It might be working adding a section to [[Help:Contents]] about how you did it. --[[User:Cammy|The Dead One]] 14:02, 26 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
:::: Done --[[User:Gavin|Gavin]] 14:14, 26 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
::::: Cool! Wikis rock. BTW Good article. --[[User:Cammy|The Dead One]] 16:43, 26 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For adding routes, it&#039;s handy to go to the google maps pedometer link and map out your route, then click on the save route.&lt;br /&gt;
It will give you a permanent URL you can copy &#039;n paste. --[[User:Gavin|Gavin]] 18:10, 26 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4551</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4551"/>
		<updated>2006-09-26T17:03:46Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Wheelies 4eva&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
[[Image:wheelie.jpg|right|thumb|320px|A Wheelie, performed by a daredevil cyclist with nothing to lose]]&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Wheelies===&lt;br /&gt;
Wheelies are extremely cool and must be performed in front of lots of people for the best effect. To achieve wheelie perfection, one must practise on a green area. Concrete areas can result in broken arses. To capture your wheelie fame for all to behold, ensure that you have a friend along with some sort of camera shooting skills. Perform wheelie, record result and bask in adulation. This may in fact not be a good cycle practise.&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=458957&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Wheelie.jpg&amp;diff=8086</id>
		<title>File:Wheelie.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Wheelie.jpg&amp;diff=8086"/>
		<updated>2006-09-26T16:57:17Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Extreme cooler acting in a radically cool manner. &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Extreme cooler acting in a radically cool manner.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4549</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4549"/>
		<updated>2006-09-26T16:44:45Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
[[Image:rockhopper.jpg|right|thumb|320px|A Bicycle]]&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=458957&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;br /&gt;
&lt;br /&gt;
===Rathfarnham to City Centre===&lt;br /&gt;
This way avoids alot of traffic lights and also alot of the heavy traffic on the canal. Sorry for the lack of roadnames, I&#039;ll update as I get to know more of them. From Rathfarnham, cycle past the river and up into Terenure. In Terenure take the right hand turn to go towards Rathgar (this is officially a No Right Turn but I&#039;ve never had any trouble doing it). At Rathgar, take the road to the right of the Church. Keep cycling straight until you reach the first set of traffic lights and take the slip road to the left. Cycle on this road until you reach the shops. About halfway along the shops, there&#039;s a right hand turn. Go down this road and at the end of this road there should be a Church. Go around the Church and straight on until you reach the traffic lights. At the lights turn left onto Palmerston Road and keep straight until you reach the next lights. At these lights, turn right and this will bring you into Ranelagh. In Ranelagh, turn left at the traffic lights and head out of Ranelagh. Shortly after Ranelagh there&#039;s a right turn onto Northbrook Road, go down this road and this will take you onto Dartmouth Square. Go around this and this will bring you onto Leeson St Upper. Cycle down Lesson St and into the City Centre.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=File:Rockhopper.jpg&amp;diff=8085</id>
		<title>File:Rockhopper.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=File:Rockhopper.jpg&amp;diff=8085"/>
		<updated>2006-09-26T16:38:09Z</updated>

		<summary type="html">&lt;p&gt;Gavin: A Bicycle. A Specialized Rockhopper 2004.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Bicycle. A Specialized Rockhopper 2004.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Places_to_Eat&amp;diff=4542</id>
		<title>Places to Eat</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Places_to_Eat&amp;diff=4542"/>
		<updated>2006-09-26T13:21:00Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Stephen&amp;#039;s Green */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Stephen&#039;s Green ==&lt;br /&gt;
&lt;br /&gt;
Wagamamas (recommendations: yaki soba, chicken katsu curry, fruit juice. Green tea is free!)&lt;br /&gt;
&lt;br /&gt;
Steps of Rome, Chatham St. (off Grafton st!) - Small super, cheap, italian place. Also do pizza slices to take away. &lt;br /&gt;
&lt;br /&gt;
O&#039;Reillys on Harcourt St. -  Does a good carvery.&lt;br /&gt;
&lt;br /&gt;
Nostromo on Leeson St. - main course, desert, tea/coffee for 12.95.&lt;br /&gt;
&lt;br /&gt;
Govinda&#039;s, Aungier St. (veggie place, but substantial, mild spicy, yummy. Get a &amp;quot;mix plate&amp;quot;, bit of everything.)&lt;br /&gt;
&lt;br /&gt;
Metro Cafe, Stephen&#039;s St.&lt;br /&gt;
&lt;br /&gt;
Busyfeet, Stephen&#039;s St. (Cafe. recommendation: that sambo with brie &amp;amp; rye bread)&lt;br /&gt;
&lt;br /&gt;
Cafe Sufi (Cafe, good food although expensive. Great chocolate cake, super chicken panini)&lt;br /&gt;
&lt;br /&gt;
Bia Bar (recommendation: club combo)&lt;br /&gt;
&lt;br /&gt;
Dandelion Cafe, Stephen&#039;s Green (recommendation: chicken wings)&lt;br /&gt;
&lt;br /&gt;
Botticellis, Temple Bar (Small cafe / Ice cream place. Ice creams &amp;amp; Tiramisu are -great- there)&lt;br /&gt;
&lt;br /&gt;
MiMo Cafe in the PowersCourt Townhouse. Nice for lunch.&lt;br /&gt;
&lt;br /&gt;
Cafe Bar Deli, Grafton St, Georges St, Ranelagh. Cheap enough food of decent quality. Can fill up very quickly here.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4563</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4563"/>
		<updated>2006-09-26T13:17:04Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Articles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Redbrick Feeds}}&lt;br /&gt;
{{Blur}}&lt;br /&gt;
This is the Redbrick Wiki Web, for all things Redbrick. The idea behind this site is that you as a redbrick member maintain it. If there is something you&#039;d like to see here, you add it. If you find something wrong, you correct it. It couldn&#039;t be easier, you can log in with your Redbrick username and password to edit and add pages. &lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;br /&gt;
* [[Help:What is a wiki|What is a Wiki?]]&lt;br /&gt;
* [http://wiki.redbrick.dcu.ie/mw/Help:Contents#I_can.27t_login.21 Having problems logging in?]&lt;br /&gt;
&lt;br /&gt;
==How-Tos==&lt;br /&gt;
* [[Web chat]] : Talk on redbrick via your web browser.&lt;br /&gt;
* [[Unsubscribing]] : You&#039;re not on redbrick, but still get those pesky emails!&lt;br /&gt;
* [[Bike Locks]]: You&#039;ve bought a bike - now to secure it. How to pick a good lock. &lt;br /&gt;
* [[DCU Proxy And Scripts]]: Getting Python scripts to use the right proxy. &lt;br /&gt;
* [[End of the MovableType Saga]]: A solution to the MovableType saga on Redbrick &lt;br /&gt;
* [[Espresso Machines]]: A guide for the coffee-addicts who have far too much money. &lt;br /&gt;
* [[Installing Gallery On Redbrick]]: How to install Gallery on Redbrick. &lt;br /&gt;
* [[Installing Wordpress on Redbrick]]: How to install Wordpress on Redbrick. &lt;br /&gt;
* [[Instant Messaging]]: A guide to enabling instant messaging (i.e. not hey but other messaging services such as MSN) on Redbrick &lt;br /&gt;
* [[MovableType To Wordpress]]: An article on how to migrate from a MovableType blog to a Wordpress blog on your Redbrick website. &lt;br /&gt;
* [[PC Disposal]]: How/where to dispose &amp;amp;amp; recycle your old PC junk!&lt;br /&gt;
* [[PubCookie on Redbrick]]: How to make a webservice on Redbrick only avaliable to other Redbrick users. &lt;br /&gt;
* [[Redbrick Radio Podcasts]]: How to make a podcast for Redbrick Radio. &lt;br /&gt;
* [[System Administration Guide]]: General guide &amp;amp;amp; advice. &lt;br /&gt;
* [[Why Cant I Get Emails From Hotmail On Redbrick]] &lt;br /&gt;
* [[Your Webpage Stats]]: How to get and analysis statistics on your redbrick webpage. &lt;br /&gt;
* [[Contracting]]: The basics of working as a Contractor.&lt;br /&gt;
* [[Mass Renaming Files]]: How to rename a bunch of files all in one go&lt;br /&gt;
* [[How-To:Port Forwarding| Port Forwarding]]: Tunnelling traffic through [[RedBrick]]&lt;br /&gt;
* [[K750i Upgrade]]: Flash upgrading your K750i to a w800i. Warning ! Voids Warranty&lt;br /&gt;
* [[Digital SLR Cameras]]: Buying a Digital SLR camera?&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
&lt;br /&gt;
* [[Academic Research]]: Info on Postgraduate study/Academic research &lt;br /&gt;
* [[In Jokes]]: A guide to the numerous in-jokes of the Redbrick boards. &lt;br /&gt;
* [[Jobs]]: Information on where to look for jobs, how to make a nice CV, how to do well at interviews.&lt;br /&gt;
* [[Coders on Redbrick]]: A list of coders on redbrick and what langauges they use. &lt;br /&gt;
* [[OSs used by Redbrickers]]: A list of Operating Systems used by redbrick users. &lt;br /&gt;
* [[Software on Redbrick]]: A list of software for and by Redbrick Users. &lt;br /&gt;
* [[Top Ten Redbrick Arguments]]: Recurring debates we&#039;ve had many times on the boards.  &lt;br /&gt;
* [[Why Did You Choose Your Username]] &lt;br /&gt;
* [[Mindless Coding Music]]: Non-intrusive music, might help with concentration while programming. Music nazis will forever mock you. :( &lt;br /&gt;
* [[Redbrick Companies]]: Companies that Redbrick people are involved in or started.&lt;br /&gt;
* [[Learning CSS Layout]]: Info on learning to use CSS to layout your webpage.&lt;br /&gt;
* [[IPod Debate]]: The IPod debate is often regurgitated on the boards. This article is a summary of the different points of views.&lt;br /&gt;
* [[Places to Eat]]: A list of places to eat in various areas, as recommended by brickies.&lt;br /&gt;
* [[Cycling]]: Cycling around Redbrick and Dublin.&lt;br /&gt;
&lt;br /&gt;
==Projects==&lt;br /&gt;
&lt;br /&gt;
* [[Distributed Computing]]: Join the Redbrick team for different worldwide Distributed Computing projects! &lt;br /&gt;
* [[Cluster Computing]]: Beowulf Linux Cluster @ School of Computing, DCU (2001). &lt;br /&gt;
* [http://c-hey.redbrick.dcu.ie C-Hey]: Command line instant messaging. &lt;br /&gt;
* [[IBMS390|IBM S/390]]: Proposed projects on an IBM S/390 mainframe @ School of Computing, DCU (2001). &lt;br /&gt;
* [[Nation States]]: ... is a free online political simulation game. A few Redbrick Users are playing. Why not join them? &lt;br /&gt;
* [[Newsgroup Reorganisation]]: A working document detailing the proposed changes to the redbrick and intersocs newsgroup structure. &lt;br /&gt;
* [[Open Labs]]: Hosted lab sessions for school children (DCU Access Office, DCU Community Office). &lt;br /&gt;
* [[Redbrick Wishlist]]: A list of projects Redbrick sorely needs (code them to get paid money!).&lt;br /&gt;
* [[Clubs and Socs Alumni]]: A project aiming to keep DCU alumni involved&lt;br /&gt;
* [[Website To-Do List]]: Bugs and suggestions for the new Redbrick website design&lt;br /&gt;
* [[Redbrick Hardware]]: A list of Redbrick Hardware and their Specs&lt;br /&gt;
&lt;br /&gt;
==Events &amp;amp;amp; History==&lt;br /&gt;
&lt;br /&gt;
* [[A Brief History]]: A loose overview history&lt;br /&gt;
* [[Bertie Ahern Visit]]: When Bertie visited Redbrick. &lt;br /&gt;
* [[Best Society]]: Best DCU Society, Best National Society (2000/2001) &lt;br /&gt;
* [[Justin&#039;s Article]]: Justin Moran (cain)&#039;s article in An Tarbh&lt;br /&gt;
* [[Redbrick Anniversary]]: To discuss and organise our 10-year anniversary! (event/book) &lt;br /&gt;
* [[Redbrick Logo]]: The history of Redbrick logos! &lt;br /&gt;
* [[SemNet]]: A once-off tech seminar day (2003). &lt;br /&gt;
* [[Tech Week]]: A week long series of tech events at DCU. &lt;br /&gt;
* [[Timeline]]: Redbrick Timeline. &lt;br /&gt;
* [[WaveHunt]]: Wireless network tracking competition in Dublin.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/recent.cgi A reloadable map of who is heying who on Redbrick, right now!]: Written by Phaxx and Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/ Login times for all Redbrick users]: Written by Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/mt_saga.html MovableType saga on Redbrick]: Thayl has a summary of the problems with using [http://www.movabletype.org/ Movabletype] on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~magluby/pics/ Pictures of Redbrick users]: Mugshots of many Redbrick users. Powered by magluby. &lt;br /&gt;
* [https://www.redbrick.dcu.ie/~link/news/ Read the boards]: Link has thrown up some software to allow Redbrick users to read the boards from the web. Uses your slrn settings. &lt;br /&gt;
* [http://www.audioscrobbler.com/group/redbrick Redbrick Audioscrobbler Group]: See other members&#039; taste in music on audioscrobbler&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~wishkah/code.html Redbrick Code]: The Redbrick Code, by wishkah&lt;br /&gt;
* [http://www.redbrick.dcu.ie/about/admins/diskhog/ Redbrick Diskhogs]: Whos hogging all the disk space on Redbrick?&lt;br /&gt;
* [http://planet.redbrick.dcu.ie Redbrick Planet]: A site that brings together numerous blog from Redbrick users. Check out the [[Planet Redbrick FAQ]] for more.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~doc/reviews/ Reviews of books, movies and music by Redbrick users]: Powered by DoC&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~yosarian/mud/ Stuff on Redbrick Muds]: Yosarian has some useful FAQs, stats and other stuff on using MUD on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/headphones.html Redbrick Headphones FAQ]: Thayl collected responses from what Redbrick people think are decent headphones.&lt;br /&gt;
&lt;br /&gt;
==Special Pages==&lt;br /&gt;
&lt;br /&gt;
* [[Special:Specialpages|List of all Special Pages]]&lt;br /&gt;
* [[Special:Popularpages|Popular Pages]]&lt;br /&gt;
* [[Special:Statistics|Site Statistics]]: They do seem to be a little &#039;broken&#039; though.&lt;br /&gt;
* [[Special:Newimages|Uploads in thumbnail format]]&lt;br /&gt;
* [[Special:Allpages|All pages on this wiki]]&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4539</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4539"/>
		<updated>2006-09-26T13:16:33Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Redbrick Feeds}}&lt;br /&gt;
{{Blur}}&lt;br /&gt;
This is the Redbrick Wiki Web, for all things Redbrick. The idea behind this site is that you as a redbrick member maintain it. If there is something you&#039;d like to see here, you add it. If you find something wrong, you correct it. It couldn&#039;t be easier, you can log in with your Redbrick username and password to edit and add pages. &lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;br /&gt;
* [[Help:What is a wiki|What is a Wiki?]]&lt;br /&gt;
* [http://wiki.redbrick.dcu.ie/mw/Help:Contents#I_can.27t_login.21 Having problems logging in?]&lt;br /&gt;
&lt;br /&gt;
==How-Tos==&lt;br /&gt;
* [[Web chat]] : Talk on redbrick via your web browser.&lt;br /&gt;
* [[Unsubscribing]] : You&#039;re not on redbrick, but still get those pesky emails!&lt;br /&gt;
* [[Bike Locks]]: You&#039;ve bought a bike - now to secure it. How to pick a good lock. &lt;br /&gt;
* [[DCU Proxy And Scripts]]: Getting Python scripts to use the right proxy. &lt;br /&gt;
* [[End of the MovableType Saga]]: A solution to the MovableType saga on Redbrick &lt;br /&gt;
* [[Espresso Machines]]: A guide for the coffee-addicts who have far too much money. &lt;br /&gt;
* [[Installing Gallery On Redbrick]]: How to install Gallery on Redbrick. &lt;br /&gt;
* [[Installing Wordpress on Redbrick]]: How to install Wordpress on Redbrick. &lt;br /&gt;
* [[Instant Messaging]]: A guide to enabling instant messaging (i.e. not hey but other messaging services such as MSN) on Redbrick &lt;br /&gt;
* [[MovableType To Wordpress]]: An article on how to migrate from a MovableType blog to a Wordpress blog on your Redbrick website. &lt;br /&gt;
* [[PC Disposal]]: How/where to dispose &amp;amp;amp; recycle your old PC junk!&lt;br /&gt;
* [[PubCookie on Redbrick]]: How to make a webservice on Redbrick only avaliable to other Redbrick users. &lt;br /&gt;
* [[Redbrick Radio Podcasts]]: How to make a podcast for Redbrick Radio. &lt;br /&gt;
* [[System Administration Guide]]: General guide &amp;amp;amp; advice. &lt;br /&gt;
* [[Why Cant I Get Emails From Hotmail On Redbrick]] &lt;br /&gt;
* [[Your Webpage Stats]]: How to get and analysis statistics on your redbrick webpage. &lt;br /&gt;
* [[Contracting]]: The basics of working as a Contractor.&lt;br /&gt;
* [[Mass Renaming Files]]: How to rename a bunch of files all in one go&lt;br /&gt;
* [[How-To:Port Forwarding| Port Forwarding]]: Tunnelling traffic through [[RedBrick]]&lt;br /&gt;
* [[K750i Upgrade]]: Flash upgrading your K750i to a w800i. Warning ! Voids Warranty&lt;br /&gt;
* [[Digital SLR Cameras]]: Buying a Digital SLR camera?&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
&lt;br /&gt;
* [[Academic Research]]: Info on Postgraduate study/Academic research &lt;br /&gt;
* [[In Jokes]]: A guide to the numerous in-jokes of the Redbrick boards. &lt;br /&gt;
* [[Jobs]]: Information on where to look for jobs, how to make a nice CV, how to do well at interviews.&lt;br /&gt;
* [[Coders on Redbrick]]: A list of coders on redbrick and what langauges they use. &lt;br /&gt;
* [[OSs used by Redbrickers]]: A list of Operating Systems used by redbrick users. &lt;br /&gt;
* [[Software on Redbrick]]: A list of software for and by Redbrick Users. &lt;br /&gt;
* [[Top Ten Redbrick Arguments]]: Recurring debates we&#039;ve had many times on the boards.  &lt;br /&gt;
* [[Why Did You Choose Your Username]] &lt;br /&gt;
* [[Mindless Coding Music]]: Non-intrusive music, might help with concentration while programming. Music nazis will forever mock you. :( &lt;br /&gt;
* [[Redbrick Companies]]: Companies that Redbrick people are involved in or started.&lt;br /&gt;
* [[Learning CSS Layout]]: Info on learning to use CSS to layout your webpage.&lt;br /&gt;
* [[IPod Debate]]: The IPod debate is often regurgitated on the boards. This article is a summary of the different points of views.&lt;br /&gt;
* [[Places to Eat]]: A list of places to eat in various areas, as recommended by brickies.&lt;br /&gt;
&lt;br /&gt;
==Projects==&lt;br /&gt;
&lt;br /&gt;
* [[Distributed Computing]]: Join the Redbrick team for different worldwide Distributed Computing projects! &lt;br /&gt;
* [[Cluster Computing]]: Beowulf Linux Cluster @ School of Computing, DCU (2001). &lt;br /&gt;
* [http://c-hey.redbrick.dcu.ie C-Hey]: Command line instant messaging. &lt;br /&gt;
* [[IBMS390|IBM S/390]]: Proposed projects on an IBM S/390 mainframe @ School of Computing, DCU (2001). &lt;br /&gt;
* [[Nation States]]: ... is a free online political simulation game. A few Redbrick Users are playing. Why not join them? &lt;br /&gt;
* [[Newsgroup Reorganisation]]: A working document detailing the proposed changes to the redbrick and intersocs newsgroup structure. &lt;br /&gt;
* [[Open Labs]]: Hosted lab sessions for school children (DCU Access Office, DCU Community Office). &lt;br /&gt;
* [[Redbrick Wishlist]]: A list of projects Redbrick sorely needs (code them to get paid money!).&lt;br /&gt;
* [[Clubs and Socs Alumni]]: A project aiming to keep DCU alumni involved&lt;br /&gt;
* [[Website To-Do List]]: Bugs and suggestions for the new Redbrick website design&lt;br /&gt;
* [[Redbrick Hardware]]: A list of Redbrick Hardware and their Specs&lt;br /&gt;
&lt;br /&gt;
==Events &amp;amp;amp; History==&lt;br /&gt;
&lt;br /&gt;
* [[A Brief History]]: A loose overview history&lt;br /&gt;
* [[Bertie Ahern Visit]]: When Bertie visited Redbrick. &lt;br /&gt;
* [[Best Society]]: Best DCU Society, Best National Society (2000/2001) &lt;br /&gt;
* [[Justin&#039;s Article]]: Justin Moran (cain)&#039;s article in An Tarbh&lt;br /&gt;
* [[Redbrick Anniversary]]: To discuss and organise our 10-year anniversary! (event/book) &lt;br /&gt;
* [[Redbrick Logo]]: The history of Redbrick logos! &lt;br /&gt;
* [[SemNet]]: A once-off tech seminar day (2003). &lt;br /&gt;
* [[Tech Week]]: A week long series of tech events at DCU. &lt;br /&gt;
* [[Timeline]]: Redbrick Timeline. &lt;br /&gt;
* [[WaveHunt]]: Wireless network tracking competition in Dublin.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/recent.cgi A reloadable map of who is heying who on Redbrick, right now!]: Written by Phaxx and Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/ Login times for all Redbrick users]: Written by Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/mt_saga.html MovableType saga on Redbrick]: Thayl has a summary of the problems with using [http://www.movabletype.org/ Movabletype] on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~magluby/pics/ Pictures of Redbrick users]: Mugshots of many Redbrick users. Powered by magluby. &lt;br /&gt;
* [https://www.redbrick.dcu.ie/~link/news/ Read the boards]: Link has thrown up some software to allow Redbrick users to read the boards from the web. Uses your slrn settings. &lt;br /&gt;
* [http://www.audioscrobbler.com/group/redbrick Redbrick Audioscrobbler Group]: See other members&#039; taste in music on audioscrobbler&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~wishkah/code.html Redbrick Code]: The Redbrick Code, by wishkah&lt;br /&gt;
* [http://www.redbrick.dcu.ie/about/admins/diskhog/ Redbrick Diskhogs]: Whos hogging all the disk space on Redbrick?&lt;br /&gt;
* [http://planet.redbrick.dcu.ie Redbrick Planet]: A site that brings together numerous blog from Redbrick users. Check out the [[Planet Redbrick FAQ]] for more.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~doc/reviews/ Reviews of books, movies and music by Redbrick users]: Powered by DoC&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~yosarian/mud/ Stuff on Redbrick Muds]: Yosarian has some useful FAQs, stats and other stuff on using MUD on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/headphones.html Redbrick Headphones FAQ]: Thayl collected responses from what Redbrick people think are decent headphones.&lt;br /&gt;
&lt;br /&gt;
==Special Pages==&lt;br /&gt;
&lt;br /&gt;
* [[Special:Specialpages|List of all Special Pages]]&lt;br /&gt;
* [[Special:Popularpages|Popular Pages]]&lt;br /&gt;
* [[Special:Statistics|Site Statistics]]: They do seem to be a little &#039;broken&#039; though.&lt;br /&gt;
* [[Special:Newimages|Uploads in thumbnail format]]&lt;br /&gt;
* [[Special:Allpages|All pages on this wiki]]&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4538</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Main_Page&amp;diff=4538"/>
		<updated>2006-09-26T13:16:13Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Redbrick Feeds}}&lt;br /&gt;
{{Blur}}&lt;br /&gt;
This is the Redbrick Wiki Web, for all things Redbrick. The idea behind this site is that you as a redbrick member maintain it. If there is something you&#039;d like to see here, you add it. If you find something wrong, you correct it. It couldn&#039;t be easier, you can log in with your Redbrick username and password to edit and add pages. &lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;br /&gt;
* [[Help:What is a wiki|What is a Wiki?]]&lt;br /&gt;
* [http://wiki.redbrick.dcu.ie/mw/Help:Contents#I_can.27t_login.21 Having problems logging in?]&lt;br /&gt;
&lt;br /&gt;
==How-Tos==&lt;br /&gt;
* [[Web chat]] : Talk on redbrick via your web browser.&lt;br /&gt;
* [[Unsubscribing]] : You&#039;re not on redbrick, but still get those pesky emails!&lt;br /&gt;
* [[Bike Locks]]: You&#039;ve bought a bike - now to secure it. How to pick a good lock. &lt;br /&gt;
* [[DCU Proxy And Scripts]]: Getting Python scripts to use the right proxy. &lt;br /&gt;
* [[End of the MovableType Saga]]: A solution to the MovableType saga on Redbrick &lt;br /&gt;
* [[Espresso Machines]]: A guide for the coffee-addicts who have far too much money. &lt;br /&gt;
* [[Installing Gallery On Redbrick]]: How to install Gallery on Redbrick. &lt;br /&gt;
* [[Installing Wordpress on Redbrick]]: How to install Wordpress on Redbrick. &lt;br /&gt;
* [[Instant Messaging]]: A guide to enabling instant messaging (i.e. not hey but other messaging services such as MSN) on Redbrick &lt;br /&gt;
* [[MovableType To Wordpress]]: An article on how to migrate from a MovableType blog to a Wordpress blog on your Redbrick website. &lt;br /&gt;
* [[PC Disposal]]: How/where to dispose &amp;amp;amp; recycle your old PC junk!&lt;br /&gt;
* [[PubCookie on Redbrick]]: How to make a webservice on Redbrick only avaliable to other Redbrick users. &lt;br /&gt;
* [[Redbrick Radio Podcasts]]: How to make a podcast for Redbrick Radio. &lt;br /&gt;
* [[System Administration Guide]]: General guide &amp;amp;amp; advice. &lt;br /&gt;
* [[Why Cant I Get Emails From Hotmail On Redbrick]] &lt;br /&gt;
* [[Your Webpage Stats]]: How to get and analysis statistics on your redbrick webpage. &lt;br /&gt;
* [[Contracting]]: The basics of working as a Contractor.&lt;br /&gt;
* [[Mass Renaming Files]]: How to rename a bunch of files all in one go&lt;br /&gt;
* [[How-To:Port Forwarding| Port Forwarding]]: Tunnelling traffic through [[RedBrick]]&lt;br /&gt;
* [[K750i Upgrade]]: Flash upgrading your K750i to a w800i. Warning ! Voids Warranty&lt;br /&gt;
* [[Digital SLR Cameras]]: Buying a Digital SLR camera?&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
&lt;br /&gt;
* [[Academic Research]]: Info on Postgraduate study/Academic research &lt;br /&gt;
* [[In Jokes]]: A guide to the numerous in-jokes of the Redbrick boards. &lt;br /&gt;
* [[Jobs]]: Information on where to look for jobs, how to make a nice CV, how to do well at interviews.&lt;br /&gt;
* [[Coders on Redbrick]]: A list of coders on redbrick and what langauges they use. &lt;br /&gt;
* [[OSs used by Redbrickers]]: A list of Operating Systems used by redbrick users. &lt;br /&gt;
* [[Software on Redbrick]]: A list of software for and by Redbrick Users. &lt;br /&gt;
* [[Top Ten Redbrick Arguments]]: Recurring debates we&#039;ve had many times on the boards.  &lt;br /&gt;
* [[Why Did You Choose Your Username]] &lt;br /&gt;
* [[Mindless Coding Music]]: Non-intrusive music, might help with concentration while programming. Music nazis will forever mock you. :( &lt;br /&gt;
* [[Redbrick Companies]]: Companies that Redbrick people are involved in or started.&lt;br /&gt;
* [[Learning CSS Layout]]: Info on learning to use CSS to layout your webpage.&lt;br /&gt;
* [[IPod Debate]]: The IPod debate is often regurgitated on the boards. This article is a summary of the different points of views.&lt;br /&gt;
* [[Places to Eat]]: A list of places to eat in various areas, as recommended by brickies.&lt;br /&gt;
&lt;br /&gt;
==Projects==&lt;br /&gt;
&lt;br /&gt;
* [[Distributed Computing]]: Join the Redbrick team for different worldwide Distributed Computing projects! &lt;br /&gt;
* [[Cluster Computing]]: Beowulf Linux Cluster @ School of Computing, DCU (2001). &lt;br /&gt;
* [http://c-hey.redbrick.dcu.ie C-Hey]: Command line instant messaging. &lt;br /&gt;
* [[IBMS390|IBM S/390]]: Proposed projects on an IBM S/390 mainframe @ School of Computing, DCU (2001). &lt;br /&gt;
* [[Nation States]]: ... is a free online political simulation game. A few Redbrick Users are playing. Why not join them? &lt;br /&gt;
* [[Newsgroup Reorganisation]]: A working document detailing the proposed changes to the redbrick and intersocs newsgroup structure. &lt;br /&gt;
* [[Open Labs]]: Hosted lab sessions for school children (DCU Access Office, DCU Community Office). &lt;br /&gt;
* [[Redbrick Wishlist]]: A list of projects Redbrick sorely needs (code them to get paid money!).&lt;br /&gt;
* [[Clubs and Socs Alumni]]: A project aiming to keep DCU alumni involved&lt;br /&gt;
* [[Website To-Do List]]: Bugs and suggestions for the new Redbrick website design&lt;br /&gt;
* [[Redbrick Hardware]]: A list of Redbrick Hardware and their Specs&lt;br /&gt;
* [[Cycling]]: Cycling around Redbrick.&lt;br /&gt;
&lt;br /&gt;
==Events &amp;amp;amp; History==&lt;br /&gt;
&lt;br /&gt;
* [[A Brief History]]: A loose overview history&lt;br /&gt;
* [[Bertie Ahern Visit]]: When Bertie visited Redbrick. &lt;br /&gt;
* [[Best Society]]: Best DCU Society, Best National Society (2000/2001) &lt;br /&gt;
* [[Justin&#039;s Article]]: Justin Moran (cain)&#039;s article in An Tarbh&lt;br /&gt;
* [[Redbrick Anniversary]]: To discuss and organise our 10-year anniversary! (event/book) &lt;br /&gt;
* [[Redbrick Logo]]: The history of Redbrick logos! &lt;br /&gt;
* [[SemNet]]: A once-off tech seminar day (2003). &lt;br /&gt;
* [[Tech Week]]: A week long series of tech events at DCU. &lt;br /&gt;
* [[Timeline]]: Redbrick Timeline. &lt;br /&gt;
* [[WaveHunt]]: Wireless network tracking competition in Dublin.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/recent.cgi A reloadable map of who is heying who on Redbrick, right now!]: Written by Phaxx and Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~shadow/ Login times for all Redbrick users]: Written by Shadow. &lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/mt_saga.html MovableType saga on Redbrick]: Thayl has a summary of the problems with using [http://www.movabletype.org/ Movabletype] on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~magluby/pics/ Pictures of Redbrick users]: Mugshots of many Redbrick users. Powered by magluby. &lt;br /&gt;
* [https://www.redbrick.dcu.ie/~link/news/ Read the boards]: Link has thrown up some software to allow Redbrick users to read the boards from the web. Uses your slrn settings. &lt;br /&gt;
* [http://www.audioscrobbler.com/group/redbrick Redbrick Audioscrobbler Group]: See other members&#039; taste in music on audioscrobbler&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~wishkah/code.html Redbrick Code]: The Redbrick Code, by wishkah&lt;br /&gt;
* [http://www.redbrick.dcu.ie/about/admins/diskhog/ Redbrick Diskhogs]: Whos hogging all the disk space on Redbrick?&lt;br /&gt;
* [http://planet.redbrick.dcu.ie Redbrick Planet]: A site that brings together numerous blog from Redbrick users. Check out the [[Planet Redbrick FAQ]] for more.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~doc/reviews/ Reviews of books, movies and music by Redbrick users]: Powered by DoC&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~yosarian/mud/ Stuff on Redbrick Muds]: Yosarian has some useful FAQs, stats and other stuff on using MUD on Redbrick.&lt;br /&gt;
* [http://www.redbrick.dcu.ie/~thayl/headphones.html Redbrick Headphones FAQ]: Thayl collected responses from what Redbrick people think are decent headphones.&lt;br /&gt;
&lt;br /&gt;
==Special Pages==&lt;br /&gt;
&lt;br /&gt;
* [[Special:Specialpages|List of all Special Pages]]&lt;br /&gt;
* [[Special:Popularpages|Popular Pages]]&lt;br /&gt;
* [[Special:Statistics|Site Statistics]]: They do seem to be a little &#039;broken&#039; though.&lt;br /&gt;
* [[Special:Newimages|Uploads in thumbnail format]]&lt;br /&gt;
* [[Special:Allpages|All pages on this wiki]]&lt;br /&gt;
* [[Help:Contents|Help Section Contents]]&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4545</id>
		<title>Talk:Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4545"/>
		<updated>2006-09-26T13:14:22Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perhaps the article needs to be renamed since the is alot more information here than just about bike locks. Discussion page, so discuss.&lt;br /&gt;
&lt;br /&gt;
: Grand yeah, didn&#039;t know how to do it, as mentioned on the newsgroups - Gav&lt;br /&gt;
&lt;br /&gt;
:: oh. Got it.- Gav&lt;br /&gt;
&lt;br /&gt;
::: It might be working adding a section to [[Help:Contents]] about how you did it. --[[User:Cammy|The Dead One]] 14:02, 26 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
:::: Done --[[User:Gavin|Gavin]] 14:14, 26 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4536</id>
		<title>Talk:Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4536"/>
		<updated>2006-09-26T13:14:07Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perhaps the article needs to be renamed since the is alot more information here than just about bike locks. Discussion page, so discuss.&lt;br /&gt;
&lt;br /&gt;
: Grand yeah, didn&#039;t know how to do it, as mentioned on the newsgroups - Gav&lt;br /&gt;
&lt;br /&gt;
:: oh. Got it.- Gav&lt;br /&gt;
&lt;br /&gt;
::: It might be working adding a section to [[Help:Contents]] about how you did it. --[[User:Cammy|The Dead One]] 14:02, 26 Sep 2006 (IST)&lt;br /&gt;
&lt;br /&gt;
::: Done --[[User:Gavin|Gavin]] 14:14, 26 Sep 2006 (IST)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Help:Editing&amp;diff=4564</id>
		<title>Help:Editing</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Help:Editing&amp;diff=4564"/>
		<updated>2006-09-26T13:12:50Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;So you want some help on writing and editing articles on this wiki yea?&lt;br /&gt;
&lt;br /&gt;
Please feel free to add new sections to this article or add stubs for possible sections.&lt;br /&gt;
&lt;br /&gt;
==General Guidelines==&lt;br /&gt;
&lt;br /&gt;
[[Help:Editing#Using Headings|Use Headings when you can]] and format [[Help:Editing#Mentioning other Redbrick Users|usernames correctly]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;TBD&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Using Headings==&lt;br /&gt;
&lt;br /&gt;
If your going to break down your article into sections or your article is just a bunch of different lists then you need to use headings. &lt;br /&gt;
&lt;br /&gt;
First, you dont&#039; need to place the article title in a heading. It&#039;s already at the top of the page. If your unhappy with the title, rename the article.&lt;br /&gt;
&lt;br /&gt;
Headings are done by surrounding the title of the heading with &#039;=&#039;. The more of them, the deeper the heading. To elaborate, your basic heading should be in this format:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;==A Main Heading==&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if you want a sub heading underneath that you would use:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;===A Sub Heading===&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Use headings when ever you can because MediaWiki will generate a nice table of contents to browse your article. Headings also provide a way to shortcut to a particular section in your article.&lt;br /&gt;
&lt;br /&gt;
==Lists==&lt;br /&gt;
&lt;br /&gt;
Creating a list is easy. Place a &#039;*&#039; at the very beginning of a line i.e. no spaces before the asterix. Example:&lt;br /&gt;
&lt;br /&gt;
* List1&lt;br /&gt;
* List2&lt;br /&gt;
* List3&lt;br /&gt;
&lt;br /&gt;
The above list is generated by using this wiki code:&lt;br /&gt;
&lt;br /&gt;
 * List1&lt;br /&gt;
 * List2&lt;br /&gt;
 * List3&lt;br /&gt;
&lt;br /&gt;
==Mentioning other Redbrick Users==&lt;br /&gt;
&lt;br /&gt;
When you mention another redbrick user you should link to their home topic. For example, if you wanted to mention the user cammy, you should write it like this:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[[User:Cammy|cammy]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will generate a link/text like this: [[User:Cammy|cammy]]. Only Redbrick users can sign in to this wiki so it should be safe to do this.&lt;br /&gt;
&lt;br /&gt;
==Displaying raw text==&lt;br /&gt;
&lt;br /&gt;
If you want to put a snippet of code or add text without it being automatically formatted by the wiki you can do this easily by putting a single space at the beginning of each line.&lt;br /&gt;
&lt;br /&gt;
 This is some raw text.&lt;br /&gt;
&lt;br /&gt;
You can also use MediaWiki syntax to disable formatting:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Do not format this text Mr. Wiki&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Linking==&lt;br /&gt;
&lt;br /&gt;
Linking to other articles is very easy. Just place two square brackets around the name of the article:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[[Wookie]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can get a little fancy and use different text. For example if you want the link to say &amp;quot;an article about wookies&amp;quot; instead of Wookie, you would use this syntax:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[[Wookie|an article about wookies]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to link to another website you can simply use the full URI (including the http). For example: http://www.redbrick.dcu.ie. But like an article link, you can use different text. The only difference is that you use only one set of square brackets and you use a space instead of a pipe (&#039;|&#039;). Example:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[http://www.redbrick.dcu.ie The coolest networking society ever]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This would give: [http://www.redbrick.dcu.ie The coolest networking society ever]&lt;br /&gt;
&lt;br /&gt;
==Renaming articles==&lt;br /&gt;
For the thickos amongst us (me, Gavin) if you want to rename an article click on the move link at the top when logged in. Enter the new name, eh Voila !&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Help&amp;diff=5628</id>
		<title>Help</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Help&amp;diff=5628"/>
		<updated>2006-09-26T13:12:17Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If your having a problem or have a general question, you can place a question here. Hopefully someone will come along and answer it for you!&lt;br /&gt;
&lt;br /&gt;
You have two options, simple questions should be added as new sections below. Possible long answers (or answers that can be referenced by a single url) should be created as new articles so you can create a link to it in the following list.&lt;br /&gt;
&lt;br /&gt;
==List of Help Articles==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Creating articles]]&lt;br /&gt;
* [[Help:Editing]]&lt;br /&gt;
* [[Help:What is a wiki]]?&lt;br /&gt;
&lt;br /&gt;
==How do I sign in?==&lt;br /&gt;
&lt;br /&gt;
Just click on the [[Special:Userlogin|sign in]] link at the top right. This will redirect you to the Redbrick [[PubCookie on Redbrick|PubCookie]] page where you can log in with your normal [http://www.redbrick.dcu.ie Redbrick] username and password. &lt;br /&gt;
&lt;br /&gt;
Once you are signed in you can edit any topic or create new ones.&lt;br /&gt;
&lt;br /&gt;
==I&#039;m too lazy to figure it out myself!==&lt;br /&gt;
&lt;br /&gt;
Are you looking for something specific that isn&#039;t here? Well, why not add a suggested name for the topic to the [[Main_Page]] (or if it&#039;s about this wiki, to this very article) and someone else might actually create the topic (and your answer) for you! &lt;br /&gt;
&lt;br /&gt;
You can also post on the Rebdrick Newsgroups about it and if you get an answer, write the first draft of the article (see [[Help:Creating articles]])!&lt;br /&gt;
&lt;br /&gt;
==Who do I contact if I find something wrong?==&lt;br /&gt;
&lt;br /&gt;
Arg! I&#039;ve found something is wrong, but I don&#039;t know what it should be. Don&#039;t bother emailing the &amp;quot;author&amp;quot;. The last person to modify it may only have been correcting spelling and grammar mistakes. You can just add a comment to the &#039;Discussion&#039; article associated with the offending page saying what is wrong and hopefully some other redbrick user will correct it. (Or you can just post to the redbrick newsgroups about it).&lt;br /&gt;
&lt;br /&gt;
==I can&#039;t login!==&lt;br /&gt;
&lt;br /&gt;
There is an existing problem with usernames with underscores in them. This is currently being investigated.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Help&amp;diff=5355</id>
		<title>Help</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Help&amp;diff=5355"/>
		<updated>2006-09-26T13:11:40Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If your having a problem or have a general question, you can place a question here. Hopefully someone will come along and answer it for you!&lt;br /&gt;
&lt;br /&gt;
You have two options, simple questions should be added as new sections below. Possible long answers (or answers that can be referenced by a single url) should be created as new articles so you can create a link to it in the following list.&lt;br /&gt;
&lt;br /&gt;
==List of Help Articles==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Creating articles]]&lt;br /&gt;
* [[Help:Editing]]&lt;br /&gt;
* [[Help:What is a wiki]]?&lt;br /&gt;
&lt;br /&gt;
==How do I sign in?==&lt;br /&gt;
&lt;br /&gt;
Just click on the [[Special:Userlogin|sign in]] link at the top right. This will redirect you to the Redbrick [[PubCookie on Redbrick|PubCookie]] page where you can log in with your normal [http://www.redbrick.dcu.ie Redbrick] username and password. &lt;br /&gt;
&lt;br /&gt;
Once you are signed in you can edit any topic or create new ones.&lt;br /&gt;
&lt;br /&gt;
==I&#039;m too lazy to figure it out myself!==&lt;br /&gt;
&lt;br /&gt;
Are you looking for something specific that isn&#039;t here? Well, why not add a suggested name for the topic to the [[Main_Page]] (or if it&#039;s about this wiki, to this very article) and someone else might actually create the topic (and your answer) for you! &lt;br /&gt;
&lt;br /&gt;
You can also post on the Rebdrick Newsgroups about it and if you get an answer, write the first draft of the article (see [[Help:Creating articles]])!&lt;br /&gt;
&lt;br /&gt;
==Who do I contact if I find something wrong?==&lt;br /&gt;
&lt;br /&gt;
Arg! I&#039;ve found something is wrong, but I don&#039;t know what it should be. Don&#039;t bother emailing the &amp;quot;author&amp;quot;. The last person to modify it may only have been correcting spelling and grammar mistakes. You can just add a comment to the &#039;Discussion&#039; article associated with the offending page saying what is wrong and hopefully some other redbrick user will correct it. (Or you can just post to the redbrick newsgroups about it).&lt;br /&gt;
&lt;br /&gt;
==I can&#039;t login!==&lt;br /&gt;
&lt;br /&gt;
There is an existing problem with usernames with underscores in them. This is currently being investigated.&lt;br /&gt;
&lt;br /&gt;
==Renaming articles==&lt;br /&gt;
For the thickos amongst us (me, Gavin) if you want to rename an article click on the move link at the top when logged in. Enter the new name eh Voila !&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4543</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4543"/>
		<updated>2006-09-26T13:07:25Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All content added by Gav is wrong.&lt;br /&gt;
&lt;br /&gt;
==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
Another good link is http://www.gmap-pedometer.com/&lt;br /&gt;
Its very handy for route planning and figuring out your distances in advance.&lt;br /&gt;
&lt;br /&gt;
===Dundrum to DCU===&lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;br /&gt;
&lt;br /&gt;
http://www.gmap-pedometer.com/?r=458957&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===City Center to BlackRock/Dun Laoghaire===&lt;br /&gt;
&lt;br /&gt;
Head out through Pearse St. &amp;amp; Grand Canal Dock, Over the canal and follow road round to the right. Take the left before &amp;quot;the big red pub&amp;quot; onto Pembroke st. out onto the beach road and straight along the strand road to merrion gates (Road crosses the dart line). From Merrion gates, theres a cycle lane until booterstown station, and then enter the park on the left... theres about a mile and a half of cycle lanes in the park away from the traffic. Exit the park in the SE corner and take the back path behind Blackrock station and then follow the road up into the town center. From there its a pretty much straight run down the coast road (by Seapoint, Salthill &amp;amp; Monkstown) to Dun Laoghaire.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Bicycles&amp;diff=8083</id>
		<title>Talk:Bicycles</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Bicycles&amp;diff=8083"/>
		<updated>2006-09-26T12:39:18Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Talk:Bicycles moved to Talk:Cycling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Cycling]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Bicycles&amp;diff=5474</id>
		<title>Bicycles</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Bicycles&amp;diff=5474"/>
		<updated>2006-09-26T12:39:18Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Bicycles moved to Cycling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Cycling]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4528</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4528"/>
		<updated>2006-09-26T12:35:58Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Routes==&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
A Google map link of this is at http://tinyurl.com/z5sn5&lt;br /&gt;
&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4526</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4526"/>
		<updated>2006-09-26T12:35:29Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Routes===&lt;br /&gt;
Getting to and from DCU from various locations can be easier and safer by going via certain routes. A map showing carious routes and times around Dublin in general is available at http://273k.net/cycling/googlemaps_times.html created by and copyright of Robert Fitzsimons. &lt;br /&gt;
&lt;br /&gt;
For getting from Dundrum to DCU my route is&lt;br /&gt;
&lt;br /&gt;
Dundrum -&amp;gt; Clonskeagh -&amp;gt; Ranelagh -&amp;gt; Canal -&amp;gt; Camden St -&amp;gt; Georges St -&amp;gt; Dame St -&amp;gt; Westmoreland St -&amp;gt; O Connell St -&amp;gt; Parnell St -&amp;gt; Nt Gt Neorges St -&amp;gt; MountJoy Square -&amp;gt; Belvedere Rd -&amp;gt; Dorset St -&amp;gt; Drumcondra -&amp;gt; Collins Avenue -&amp;gt; DCU&lt;br /&gt;
A Google map link of this is at http://tinyurl.com/z5sn5&lt;br /&gt;
&lt;br /&gt;
From Dundrum to Dame St and from Drumcondra to DCU there are reasonable cycle lanes.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4525</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4525"/>
		<updated>2006-09-26T12:20:48Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
Bells are useful to have and in fact are a legal requirement. They can be slightly dangerous though. You shouldn&#039;t rely on a person getting out of the way when you ring your bell, they tend to ignore em. Always be ready to brake when going through an area with lots of pedestrians, don&#039;t worry so much about making sure they know they have inspired your ire by ringing your bell furiously.&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do. There are a number of books about cycling through urban locations, a google will find em. &lt;br /&gt;
&lt;br /&gt;
===Road Positioning===&lt;br /&gt;
When cycling through town, or for that fact anywhere, there are occasions when it is safest to move into the center of the lane. This is particularly the case when there is not enough room for a car to safely overtake you. By cycling in the middle of the lane, the car will not attempt it. If you are over the in kerb they might.&lt;br /&gt;
&lt;br /&gt;
Similarly if cycling along a line of parked cars, do not stay in close, give them the mandatory door length space between you and them.&lt;br /&gt;
&lt;br /&gt;
If approaching a left turn, it might be best to enter into the main lane of traffic. This way cars turning left will not squash you as they turn. Indicate of course that you are moving into the main lane of traffic. I find that drivers invariably allow you in, if you indicate, as they are nervous of making you go spat. Also, moving into the main lane makes it easier for oncoming cars turning to their right to see you and also for cars emerging from the left turn ahead to see you. (this is also why a front light at night is important, so as oncoming turning cars can see you)&lt;br /&gt;
&lt;br /&gt;
===Cycle Lanes===&lt;br /&gt;
It is mandatory to use cycle lanes when they are available. That is, a Garda can bust you for using the road, when a cyclelane is present, even if it&#039;s safer to use the road. However, the cycle lanes must be correctly defined and marked. There are a number of laws relating to the use of cycle lanes and cycling on the road in general. Theses are nicely presented at &lt;br /&gt;
http://www.geocities.com/cyclopath2001/legal.htm&lt;br /&gt;
&lt;br /&gt;
===Braking===&lt;br /&gt;
As mentioned above disc brakes offer superior performance to V-Brakes, especially in wet weather. When braking, the various books and sites I&#039;ve read advise using your front brakes first, not your back brakes. Front brakes offer much greater stopping force. To avoid going head over heels, don&#039;t jam on the brakes as hard as you can. If travelling particularly fast, shove your arse up and over the back of the seat, moving your weight over the back of the bike, this will prevent you flying forward.&lt;br /&gt;
&lt;br /&gt;
Be particularly careful in wet weather, skidding on your front brakes is remarkably scary. &lt;br /&gt;
&lt;br /&gt;
Check your brake pads regularly enough, if you head a scraping sound from em when you brake, make sure you change them quickly. You might have worn the pad away and the metal underneath is shredding your wheel rim to pieces. &lt;br /&gt;
&lt;br /&gt;
===Traffic Lights===&lt;br /&gt;
Various Gurus differ on traffic lights. At a dangerous junction, where it is difficult for a cyclist to get in the correct lane, it can sometimes be safer to move out while the light is red so as to get ahead of the waiting cars.&lt;br /&gt;
&lt;br /&gt;
In general I obey all junction traffic lights, but tend to go through pedestrian lights. This is illegal of course, you are required to obey all lights.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4529</id>
		<title>Talk:Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4529"/>
		<updated>2006-09-25T17:41:41Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perhaps the article needs to be renamed since the is alot more information here than just about bike locks. Discussion page, so discuss.&lt;br /&gt;
&lt;br /&gt;
Grand yeah, didn&#039;t know how to do it, as mentioned on the newsgroups - Gav&lt;br /&gt;
&lt;br /&gt;
oh. Got it.- Gav&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Bike_Locks&amp;diff=8081</id>
		<title>Talk:Bike Locks</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Bike_Locks&amp;diff=8081"/>
		<updated>2006-09-25T17:41:07Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Talk:Bike Locks moved to Talk:Bicycles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Bicycles]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Bike_Locks&amp;diff=8080</id>
		<title>Bike Locks</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Bike_Locks&amp;diff=8080"/>
		<updated>2006-09-25T17:41:07Z</updated>

		<summary type="html">&lt;p&gt;Gavin: Bike Locks moved to Bicycles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Bicycles]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4523</id>
		<title>Talk:Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Talk:Cycling&amp;diff=4523"/>
		<updated>2006-09-25T17:40:39Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perhaps the article needs to be renamed since the is alot more information here than just about bike locks. Discussion page, so discuss.&lt;br /&gt;
&lt;br /&gt;
Grand yeah, didn&#039;t know how to do it, as mentioned on the newsgroups - Gav&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Why_Did_You_Choose_Your_Username&amp;diff=4548</id>
		<title>Why Did You Choose Your Username</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Why_Did_You_Choose_Your_Username&amp;diff=4548"/>
		<updated>2006-09-25T17:28:24Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Feel free to add an an entry about your username below!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please follow the same format when adding your username in alphabetical order --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[User:art_wolf|art_wolf]]==&lt;br /&gt;
&lt;br /&gt;
Cool picture I have hanging up. Have had it for ages and its by Art Wolfe.&lt;br /&gt;
&lt;br /&gt;
==[[User:atlas|atlas]]==&lt;br /&gt;
&lt;br /&gt;
I originally handed in my student card, and said &amp;quot;Use my first name, please&amp;quot;. I got an email later giving me my username as &#039;James&#039; ( my middle name ). When I asked them to change, I decided to go with something a little cooler. I had been up for hours before that playing Mechwarrior somethingorother, and the Atlas mech was my favourite. I also, occasionally, feel like I have the weight of the world on my shoulders.&lt;br /&gt;
&lt;br /&gt;
==[[User:bilco|bilco]]==&lt;br /&gt;
&lt;br /&gt;
Cause as a fresher I though it was the character&#039;s name from The Hobbit&lt;br /&gt;
&lt;br /&gt;
==[[User:cain|cain]]==&lt;br /&gt;
&lt;br /&gt;
I always thought Cain got a raw deal. Firstborn son of Adam, built the first city on earth and he&#039;s remembered for allegedly killing his brother Abel though the evidence is, to put it mildly, unconvincing and God was clearly biased against him. When I joined Redbrick, Cain was gone so I got Caine, which was the spelling of the name in an RPG I played at the time. Dropped the &#039;e&#039; in my second year.&lt;br /&gt;
&lt;br /&gt;
==[[User:calyx|calyx]]==&lt;br /&gt;
Misread the name of a song. In a perfect world, I would have been calx.&lt;br /&gt;
&lt;br /&gt;
==[[User:cambo|cambo]]==&lt;br /&gt;
&lt;br /&gt;
An abbreviation of sorts on my surname (campbell)... original eh?&lt;br /&gt;
&lt;br /&gt;
==[[User:cammy|cammy]]==&lt;br /&gt;
&lt;br /&gt;
I was using it as a web handle long before I joined Redbrick. It comes from the name of one of my first roleplaying characters that wasn&#039;t just a bunch of stats. The name for that roleplaying character though, came from the computer game Streetfighter 2.&lt;br /&gt;
&lt;br /&gt;
Well actually cammy was my second choice. I would have liked to use The_Dead_One but that exceeds the 8 character limit.&lt;br /&gt;
&lt;br /&gt;
==[[User:cooker3|cooker3]]==&lt;br /&gt;
It is my username for the lab machines in the CA building, it&#039;s not to do with an obcession with cookers!&lt;br /&gt;
&lt;br /&gt;
==[[User:david|david]]==&lt;br /&gt;
The year that I joined DCU Hasselhoff was given a star on the Hollywood walk of fame.  With all the new challenges in my life at that time I found that he was someone I could look up to.  I could admire his achievements.  He was like an uncle to me.  I grew up on Kinght Rider and am looking forward to the new movie coming out this year.  And then when I got a little older and started noticing girls I got interested in Baywatch.  I wanted to be the stud that he was on that show.  Appropriately in 2000 when I joined redbrick he released one of his many hit albums in Germany - &amp;quot;The Magic Colleciton&amp;quot;.  So I chose david as my redbrick username because ... well actually its not that interesting really, its my name in real life.&lt;br /&gt;
&lt;br /&gt;
==[[User:doc|DoC]]==&lt;br /&gt;
It&#039;s the initials of my real name. I&#039;ve been called DoC in real life by friends, family, etc, for as long as I can remember.&lt;br /&gt;
&lt;br /&gt;
==[[User:drag0n|drag0n]]==&lt;br /&gt;
Friends in college said that I needed a nickname, probably because they&#039;re too lazy to say my full name &amp;quot;Diarmuid&amp;quot; and I find &amp;quot;Diarm&amp;quot; quite creepy, so basically, &amp;quot;dragon&amp;quot; popped into their heads and it stuck! I used be called siphi (for no particular reason, it was a random name I was known by onli ne), then changed to drag0n (with a zero). The zero is because the user &amp;quot;dragon&amp;quot; is allready taken on rb. But everyone loved the new name so I added the zero. If you hey the other dragon, you generally get a confused hey in response, so I generally have heys disabled. anyways...&lt;br /&gt;
&lt;br /&gt;
==[[User:drusilla|drusilla]]==&lt;br /&gt;
My nick was surprisingly enough, from the character on Buffy! Friends of mine in second year of school gave it to me when they noticed the similarities between myself and the insane vampire. Funnily, dru was my second nick on RedBrick, before that I was zerocool&lt;br /&gt;
&lt;br /&gt;
==[[User:elmer|elmer]]==&lt;br /&gt;
My username came from my first ever email address(elmer@clubi.ie) which i chose based on the looney tunes character elmer fudd&lt;br /&gt;
&lt;br /&gt;
==[[User:exzantia|exzantia]]==&lt;br /&gt;
As many, many people have pointed out, my name seems like a random string of letters, and it kinda is... When I was signing up for a Yahoo mail account in &#039;98 everything I tried was already taken. I was not having under-scores or numbers so I decided to come up with something that would always be available! I thus far have succeeded.&lt;br /&gt;
&lt;br /&gt;
==[[User:fatwa|fatwa]]==&lt;br /&gt;
&lt;br /&gt;
In first year, whilst learning to program, my friend Andrew wrote a program that printed out &amp;quot;That&#039;s a fatwa on you, mein freund&amp;quot;.&lt;br /&gt;
I thought it was funny and it must have stuck in my head for redbrick registering.  Also, it&#039;s short for &amp;quot;fat wanker&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:fox_chic|fox_chic]]==&lt;br /&gt;
&lt;br /&gt;
Cause I&#039;m an xphile and Mulder&#039;s first name is Fox. :)&lt;br /&gt;
&lt;br /&gt;
==[[User:gizmo|gizmo]]==&lt;br /&gt;
My nick came from a combination of thinking gizmo was a pretty cool name due to that little flurry critter in Gremlins and also cns putting me on the spot on Clubs And Socs day when I first joined so that I couldn&#039;t think of anything else. Strange, but true.&lt;br /&gt;
&lt;br /&gt;
==[[User:gavin|gavin]]==&lt;br /&gt;
I needed a username I wouldn&#039;t forget and seeing as Gavin was written on my underpants I decided to use that. Handy quinkadink that it is also my real name eh !&lt;br /&gt;
&lt;br /&gt;
==[[User:jesjes|jesjes]]==&lt;br /&gt;
My name is Jessica. And people from home call me Jesi, and at some stage during sixth year I decided I much more liked Jess. So when I got THE INTERNETS, I just called myself jesjes. It stuck.&lt;br /&gt;
&lt;br /&gt;
==[[User:keloe|keloe]]==&lt;br /&gt;
&lt;br /&gt;
I wrote down kehoe, my surname and an old nickname, on the slip. However, due to my incapability to write h&#039;s correctly, the admins read it as keloe.&lt;br /&gt;
&lt;br /&gt;
==[[User:kpodesta|kpodesta]]==&lt;br /&gt;
&lt;br /&gt;
Because that&#039;s my real name. I thought Redbrick was some email yoke - all else fails, I was getting a decent email address.&lt;br /&gt;
&lt;br /&gt;
==[[User:lithium|lithium]]==&lt;br /&gt;
&lt;br /&gt;
Coz I like the sound of it. And coz it goes crazy when you put it in water. And not because of the Nirvana song.&lt;br /&gt;
&lt;br /&gt;
==[[User:macbain|macbain]]==&lt;br /&gt;
He wanted the username &#039;mcbain&#039; but Karlos (mcbain) got it before him. Being original, Sarv decided that macbain would do instead, so he could forever confuse new users between himself and Karl.&lt;br /&gt;
&lt;br /&gt;
==[[User:marvin|marvin]]==&lt;br /&gt;
There are three references here : Starvin Marvin from South Park, Marvin The Paranoid Android from Hitch Hikers Guide To The Galaxy and Marvin the Martian from the Warner Bros cartoon. I&#039;ll leave it to the reader to decide which one was the greatest influence (hint: it wasn&#039;t Starvin Marvin).&lt;br /&gt;
&lt;br /&gt;
==[[User:montoya|montoya]]==&lt;br /&gt;
&lt;br /&gt;
The name is that of a character from the book &amp;quot;The Princess Bride&amp;quot; by William Goldman. The specific character is Inigo Montoya, a Spanish swordsman out for revenge against a 6-fingered man who killed Inigo&#039;s father.&lt;br /&gt;
&lt;br /&gt;
==[[User:moridin|moridin]]==&lt;br /&gt;
&lt;br /&gt;
The most evil and therefore cool character in a series of books that I was reading. Said series of books has since degenerated into a mush of crap writing. Boo.&lt;br /&gt;
&lt;br /&gt;
==[[User:nit|niT]]==&lt;br /&gt;
Originally my name was a combination of many words that described me, and was dreamt up whilst I was at college in Aylesbury.  It all started when I got a demo copy of Diablo from my cousin in Singapore, and us lads built our first LAN at my mate Dave&#039;s house.  We also played Carmegeddon, the Star Wars game and Quake 2 (of which my mate Dave had a 600mhz processor and TWO 3dfx cards linked up in parallell - he was our God).  It was necessary for me to have a character name in Diablo so I chose Nitsuj Buaya Chen, the latter two meaning &#039;Crocadile man that snaps up ladies&#039; (in Singapore slang) and monkey (as my star sign is golden monkey).  I later joined a CS clan called Black Legion and people naturally shortened my name down to nit. At that time I also had a friend who was called &#039;kippy&#039; in real life and online, so I started using nit in real life too.  Later I joined a &#039;talker&#039; called theManor which was a twin site to the LambdaMoo, there was a guy there who set it all up and went by the nick &#039;beN&#039;, he and girlfriend sadly died in a car accident and so manor spods paid tribute but capitalising the final letter of their nick, hence why I use niT.&lt;br /&gt;
&lt;br /&gt;
==[[User:noelfitz|noelfitz]]==&lt;br /&gt;
&lt;br /&gt;
8 letter truncation of my real name (boring but true.)&lt;br /&gt;
&lt;br /&gt;
==[[User:p|p]]==&lt;br /&gt;
&lt;br /&gt;
Back the old days of IOL/Indigo&#039;s IRC servers I used a variety of names, which all began with the letter p. Eventually, I ditched the different nicknames and used ^P^. Redbrick doesn&#039;t support weird characters though, so now it&#039;s just p. It also happens to be my middle initial.&lt;br /&gt;
&lt;br /&gt;
==[[User:phaxx|phaxx]]==&lt;br /&gt;
&lt;br /&gt;
Originally from the character Lord Fax in the book [http://www.google.com/search?q=dragonriders+of+pern Dragonriders Of Pern] by Anne McCaffrey. I used Lord_Fax in [http://research.microsoft.com/vwg/projectsheets/comicchat.htm MS Comic Chat] for a while. I saw somebody using a &#039;ph&#039; instead of an &#039;f&#039;, and thought, in that usual 13-year-old way, OMGZ COOL, and promptly became LordPhaxx. &lt;br /&gt;
I was LordPhaxx for a few years, until until around 16 when I met a bunch of other Irish nerds one afternoon. [[User:jerry|jerry]] was among them, and commented, &amp;quot;With a name like LordPhaxx, I expected you to be taller.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
So er, I dropped the pretentious &#039;Lord&#039;, and I&#039;ve been &#039;phaxx&#039; ever since.&lt;br /&gt;
&lt;br /&gt;
See, nothing to do with fax machines! :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[User:receive|receive]]==&lt;br /&gt;
&lt;br /&gt;
It was Michelle Smith (swallow) that dragged me along to sign up during first year, so I&#039;d handed over my 4euro before I&#039;d begun to think of a username, so I turned and said &amp;quot;Shit, Michelle, what will I pick?&amp;quot; and she suggested &amp;quot;receive&amp;quot; because it went so well with swallow. Stupidly I agreed, and it stuck (after we found a spell checker to check how to spell it that is), so i never changed it to anything better. Ironically, i never have been at the receiving end of swallows abilities.&lt;br /&gt;
&lt;br /&gt;
==[[User:sandman|sandman]]==&lt;br /&gt;
&lt;br /&gt;
I didn&#039;t. It was assigned on the basis that a) I was asleep and b) I read comics, didn&#039;t I? Ironically, I hadn&#039;t read much Sandman at the time.&lt;br /&gt;
&lt;br /&gt;
==[[User:shimoda|shimoda]]==&lt;br /&gt;
&lt;br /&gt;
It was a character in a book (Illusions by Richard Bach) I read during my formative years. Another rb user thought the description of the protagonist was suited to me so I nabbed the name.&lt;br /&gt;
&lt;br /&gt;
==[[User:singer|singer]]==&lt;br /&gt;
&lt;br /&gt;
I was a singer in a band. The guitarist mocked me for being the singer by calling me &amp;quot;singer&amp;quot;. The nickname stuck. Non-Redbrick people address me as singer! My 2nd choice username was &amp;quot;scano&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
==[[User:spock|spock]]==&lt;br /&gt;
&lt;br /&gt;
I chose spock because I had no idea that it would follow me around for at least the next 10 years.&lt;br /&gt;
I didn&#039;t even know what Redbrick was when I was joining, and when I had a membership form thrust&lt;br /&gt;
in my face by Hyper on Freshers day 1996, we had three preferences for username.  I put down &amp;quot;spock&amp;quot; as my first preference.  It wasn&#039;t taken, and that is how I didn&#039;t end up with the username &amp;quot;data&amp;quot;, or &amp;quot;benji&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==[[User:svan|svan]]==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;S&amp;lt;/u&amp;gt;arunas &amp;lt;u&amp;gt;Van&amp;lt;/u&amp;gt;cevicius. First letter of name, then first 3 letters from surname.&lt;br /&gt;
&lt;br /&gt;
==[[User:thedara|thedara]]==&lt;br /&gt;
&lt;br /&gt;
My nick was given to me years before redbrick on irc (irc.phishy.net) I was the first person some americans had met called Dara and they&lt;br /&gt;
found that interesting for some reason or other and hence I became thedara.&lt;br /&gt;
On redbrick irc i&#039;m known as Darz0re, It was a in-joke at the time when myself and dizer stuck z0re at the end of out names&lt;br /&gt;
hence thez0rekorp.com and z0re.org&lt;br /&gt;
&lt;br /&gt;
==[[User:undone|undone]] ==&lt;br /&gt;
&lt;br /&gt;
Couldn&#039;t think of anything on Clubs &amp;amp; Socs day, so for about 2 days my username was my actual name. Then I picked this, because of the Weezer song, but also because I think it&#039;s a nice word.&lt;br /&gt;
&lt;br /&gt;
==[[User:werdz|werdz]]==&lt;br /&gt;
&lt;br /&gt;
A long time ago in a net cafe far, far away, a sexy asian friend by the name of quank said &amp;quot;Hey Andrew, stop using the name andrew in CS. Use werdna instead. It&#039;s andrew only backwards!&amp;quot; - That lasted about five minutes until people got bored trying to pronounce it (&amp;quot;OMG! WERDNA! QUIT TK&#039;ING YOU NOOB!&amp;quot;) and just started shouting werdz instead (&amp;quot;OMG! WERDZ! QUIT TK&#039;ING YOU NOOB!&amp;quot;). And that&#039;s my life story up until this point.&lt;br /&gt;
&lt;br /&gt;
==[[User:wilburt|wilburt]]==&lt;br /&gt;
&lt;br /&gt;
Long story, guys i used to know named me Wilburtino, i didnt really like it cos they were muppets. However, it grew on me over time. Wanted Wilburtino or Will as my username but they wouldnt let me :( so wilburt  was the only one left. Like all rb usernames i think, they are spur of the moment. (or admin mistakes)&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4524</id>
		<title>Cycling</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=Cycling&amp;diff=4524"/>
		<updated>2006-09-25T17:09:38Z</updated>

		<summary type="html">&lt;p&gt;Gavin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Buying a bike==&lt;br /&gt;
&lt;br /&gt;
This is a mish mash of comments from the redbrick boards on bicycles. Contributors include Gavin, Gliceas, Sandman&lt;br /&gt;
&lt;br /&gt;
 Sender: cambo@murphy.internal&lt;br /&gt;
 Reply-To: cambo&lt;br /&gt;
 Thinking about getting a bike for cycling in and out of work.&lt;br /&gt;
 I&#039;ve seen a few people here talking about cycleways.com on Parnell St.&lt;br /&gt;
 Are they the best place in town to get a bike ?&lt;br /&gt;
&lt;br /&gt;
People tend to recommend cycleways on Parnell St when buying bicycles in town. They have a website, decent prices and are well located. Other places are cyclogical on the quays, Joe Dalys in Dundrum, and a bunch in Ranelagh, Rathmines, Georges St etc. Other might add more here. &lt;br /&gt;
&lt;br /&gt;
Online shops are www.chainreactions.com and http://www.evanscycles.com/&lt;br /&gt;
&lt;br /&gt;
When buying bicycles, there are three main types, road bikes, mountain bikes and hybrids. Roadbikes or &#039;Racers&#039; are what ya see in the Tour de France. They go fast. You won&#039;t be reading this if you are looking to buy a roadbike. &lt;br /&gt;
&lt;br /&gt;
Mountain bikes are what you had as a kid, typicaly heavy enough bikes, flat handle bars, reasonably upright posture when cycling them. Mountain bikes can come with front suspension (hard tail frame), front and rear suspension (full suspension) and no suspension.&lt;br /&gt;
&lt;br /&gt;
Hybrid bikes are as you might think, a combination of the two above types. The posture of a hybrid is the same as a mountain bike, but the bikes tend to be lighter, thinner tyres and not have suspension. Or at least only have suspension on the saddle post. For cycling through town as the original question asked, I would recommend a hybrid bicycle with no suspension. &lt;br /&gt;
&lt;br /&gt;
Suspension is somewhat debatable. I cycle a mountain bike with front suspension and thinish tyres. (1.5&amp;quot;) I prefer to have a bit of suspension as the roads on my route can be cack and occasionally it&#039;s necessary to mount the kerb to go around traffic. However, suspension detracts from your speed, by absorbing some of the the downward force applied when pushing on the peddle. You might think, &#039;Well feck that, I won&#039;t be zooming around, the suspension will keep me comfortable&#039; but after a few weeks of cycling, being able to go a bit faster can start to look quite appealing. A compromise is to ensure that the bicycle you can buy enables you to lock out the suspension. You still have the added weight of the heavy front forks, but the lack of suspension will result in a speed up. (I have aspirations of going mountain biking, which is why I stick with the mountain bike and don&#039;t get a hybrid)&lt;br /&gt;
&lt;br /&gt;
Check as many bits as possible (pedals, pedal housing, brake/gear levels&lt;br /&gt;
and so on) are rust-proof. Pedals should be sealed to prevent road gunk&lt;br /&gt;
getting in and causing problems.&lt;br /&gt;
&lt;br /&gt;
Basically, ask the sales guy:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s most likely to break first?&amp;quot; and &amp;quot;How much will it cost to fix?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
He&#039;ll tell you the brake / gear cables might need tuning after a few&lt;br /&gt;
weeks on the road. Reply &amp;quot;yes, obviously, but apart from that ...?&amp;quot; :)&lt;br /&gt;
Also, see will he throw in your first servcie (to tighten said cables)&lt;br /&gt;
for free.&lt;br /&gt;
&lt;br /&gt;
See is there a front chain guard to stop your trouser cuffs getting&lt;br /&gt;
destroyed with oil :) Be prepared to tuck your trousers into your socks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Accessories==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Illumination===&lt;br /&gt;
&lt;br /&gt;
Buy a decent set of lights, rear and front. Get a reflective, Hi-Vis jacket. I cycle with strong front and back lights on my bicycle and weaker flashing lights that I hang on my person, front and back. Reason being that if I come off the bike at night onto the road, at least my wee flashing lights might prevent a car from squashing me. &lt;br /&gt;
&lt;br /&gt;
&amp;gt; I actually found it cheaper going into a builders&#039; supply store&lt;br /&gt;
&amp;gt; looking for hi-vis stuff.&lt;br /&gt;
&lt;br /&gt;
Definitely agree on this one. If you&#039;re around DCU, head into Heitons&lt;br /&gt;
up in Santry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===In the rain===&lt;br /&gt;
&lt;br /&gt;
Get a light rain-jacket, and waterproof trousers.&lt;br /&gt;
Waterproof boots help too.&lt;br /&gt;
&lt;br /&gt;
You&#039;ll heat up in no time once you get going, so don&#039;t smother yourself&lt;br /&gt;
with overcoats and whatnot. Wear a decent pair of gloves (I use padded&lt;br /&gt;
ski gloves) as your hands tend to freeze when cycling in cold rain.&lt;br /&gt;
Gloves are also handy in that they stop you getting cut when you skid off&lt;br /&gt;
on wet, icy roads.&lt;br /&gt;
&lt;br /&gt;
Basically, as long as you&#039;re wrapped up, cycling in the rain is no hassle.&lt;br /&gt;
Just remember to allow extra stopping distance. Your brakes will be wet.&lt;br /&gt;
And if you try to jam on, the whole bike will just shoot from under you :)&lt;br /&gt;
&lt;br /&gt;
Disc brakes can be an advantage here if you are willing to fork (ho ho) out a bit of extra cash. They are superior to v-brakes in the wet. &lt;br /&gt;
&lt;br /&gt;
I tend to not wear waterproof trousers as I end up sweating so much in em that I get just as wet as if I&#039;d been rained on. Decent waterproof trousers may prevent this. &lt;br /&gt;
&lt;br /&gt;
===Helmets===&lt;br /&gt;
&lt;br /&gt;
There is substantial debate as to the merits of helmets for cycling. I won&#039;t get into it particularly much. Whilst they may not safe your life, they can make certain falls less painful. All the stores mentioned at the top will stock em. Any helmet they sell will adhere to the safety regulations, the most important thing is to buy one that is comfortable on your noggin. &lt;br /&gt;
&lt;br /&gt;
===Keeping your bicycle===&lt;br /&gt;
&lt;br /&gt;
When Gavin replied to Kevin&#039;s post about getting a good bike lock he has helped&lt;br /&gt;
loads of us keep our bikes safe. Here&#039;s the origional post as posted on redbrick.help&lt;br /&gt;
&lt;br /&gt;
 From: Gavin &lt;br /&gt;
 Newsgroups: redbrick.help&lt;br /&gt;
 Subject: Re: Bike Locks&lt;br /&gt;
 Date: Tue, 3 May 2005 21:58:47 +0000 (UTC)&lt;br /&gt;
 &lt;br /&gt;
 On Tue, 3 May 2005 Kevin wrote:&lt;br /&gt;
 &amp;gt; Hey,&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; Anyone recommendations for a good bike lock, for securing a mountain bike?&lt;br /&gt;
 &amp;gt;&lt;br /&gt;
 &amp;gt; - Kevin&lt;br /&gt;
&lt;br /&gt;
I did a &#039;&#039;lot&#039;&#039; of reading about this a few months ago. Have a look at http://www.sheldonbrown.com. He has lots of cycling articles and a good one on bicycle locks.&lt;br /&gt;
&lt;br /&gt;
The end points were :&lt;br /&gt;
&lt;br /&gt;
# Its all about pissing the thief off and making them look for an easier target.&lt;br /&gt;
# Use two different locks, the thief will need to carry two seperate pieces of equipment to nick the bike. I use a chain/padlock &amp;amp; Ulock. More on this. &lt;br /&gt;
# If you have a detachable front wheel, take it off and lock it to the back wheel. Lock it with the ulock, passing it through the rear triange and onto something immovable.  The less space available in the lock, less room for leverage on behalf of the thief. Taking the wheel with you doesn&#039;t increase your security.&lt;br /&gt;
# Take your detachable saddle with you, or replace the quick release bolt with an alan key one. Someone will just nick your saddle and chuck it in a bin, cause they are  scummers.&lt;br /&gt;
# Other obvious things. Park it in a public place, not in some secret location no one will ever find it. A secret location means a thief can spend their time working away on the locks without worrying about passers by. Lock it to an immovable object.&lt;br /&gt;
&lt;br /&gt;
That&#039;s most of what I can remember. The lock I settled on was a rather [http://www.evanscycles.com/product.jsp?style=29338 large Abus Granit lock and chain] &lt;br /&gt;
for 90 euro. I bought it in The Great Outdoors, funnily enough. They have a reasonable bicycle accessories section in there. Last time I went in, they were out of that exact lock though. You could also head into a locksmith and ask for a boron alloy chain and good padlock. Something like a 13mm boron chain requires a hydraulic bolt cutter to&lt;br /&gt;
get through it. The best padlocks are the ones that only have room for one link to be fit through. No space for a crowbar to get in there then.&lt;br /&gt;
&lt;br /&gt;
My second lock is a fairly cheap combination ULock. If you get a Ulock, make sure it doesn&#039;t have a circle key. Google for Bic pen attacks ! The best Ulocks are Kryptonite ones. As above, make sure you get a flat key one. I see the New Yorker one mentioned a lot.&lt;br /&gt;
&lt;br /&gt;
If you get a large chain &amp;amp; padlock, leave em at your target location.. I.e I leave mine locked to the bike rack in DCU, it&#039;s too heavy to be carrying it on my bike everyday. I have the ulock for quick tops. Also, never leave the padlock resting on the ground, you are leaving it open to getting whacked with a hammer. Wrap the chain good and tight about the frame and the &#039;immovable object&#039;.&lt;br /&gt;
&lt;br /&gt;
That&#039;s around about it. In conclusion, get a Granit chain and a Ulock &amp;amp; don&#039;t ever lock your bicyle in the city center if you love it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Good cycle practices==&lt;br /&gt;
&lt;br /&gt;
People might put in comments about cycling through town, what to do and what not to do.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
	<entry>
		<id>https://wiki.redbrick.dcu.ie/index.php?title=K750i_Upgrade&amp;diff=5483</id>
		<title>K750i Upgrade</title>
		<link rel="alternate" type="text/html" href="https://wiki.redbrick.dcu.ie/index.php?title=K750i_Upgrade&amp;diff=5483"/>
		<updated>2006-04-10T14:05:30Z</updated>

		<summary type="html">&lt;p&gt;Gavin: /* Flashing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Firmware==&lt;br /&gt;
&lt;br /&gt;
Find out your firmware version by pressing :&lt;br /&gt;
&lt;br /&gt;
right *&lt;br /&gt;
left left *&lt;br /&gt;
left *&lt;br /&gt;
&lt;br /&gt;
Go to the bottom and note the CDA number.&lt;br /&gt;
&lt;br /&gt;
==Flashing==&lt;br /&gt;
&lt;br /&gt;
Go to http://www.seuniverse.com/step1.php and follow the instructions&lt;br /&gt;
there.&lt;br /&gt;
Use the CDA string from your phone in the CDA dialog of the application.&lt;br /&gt;
&lt;br /&gt;
You should use Europe 2 as the region.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&lt;br /&gt;
* When you turn it on, the choice between mobile phone and walkman was reversed for me, so choose walkman to get the mobile phone. &lt;br /&gt;
* The PIN values don&#039;t show up as well so just type em in and press ok. Your keypad ain&#039;t broke. &lt;br /&gt;
* Make sure your sim card is in when you press C and plug the cable in, it no work otherwise. &lt;br /&gt;
* Don&#039;t worry when the application takes ages leaving the test stage, the phone has not been killed.&lt;br /&gt;
* Any names that you backup onto sim must be less than 14 characters or they won&#039;t be recombined properly when you copy em back to phone.&lt;br /&gt;
* Various GPRS settings are available at http://www.taniwha.org.uk/gprs.html &lt;br /&gt;
&lt;br /&gt;
Apart from that, upgrade is seamless. No hassle, walkman feature is&lt;br /&gt;
tres nice. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Conclusion==&lt;br /&gt;
&lt;br /&gt;
On O2, on the contract I chose, the K750i is 70 euro and the w800i 229&lt;br /&gt;
euro. A 1GB memory stick duo cost me 43 euro on ebay, a 3.5mm converter&lt;br /&gt;
cost me 5 euro off ebay and the upgrade software was 10euro.&lt;br /&gt;
So I get a w800i equivalent with extra 512mb memory for 128 smackaroos.&lt;br /&gt;
Around 100 quid saving ! Don&#039;t buy a w800i ! You can even get a w800i&lt;br /&gt;
fascia off ebay that will fit the k750i for around 20 euro, if you like&lt;br /&gt;
the look that much.&lt;/div&gt;</summary>
		<author><name>Gavin</name></author>
	</entry>
</feed>