<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Conor's Blog &#187; Linux</title>
	<atom:link href="http://blog.macaoidh.name/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macaoidh.name</link>
	<description>PHP, Music, Linux</description>
	<lastBuildDate>Mon, 05 Jul 2010 13:25:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>OS X VIM Syntax Highlighting</title>
		<link>http://blog.macaoidh.name/2010/06/12/os-x-vim-syntax-highlighting/</link>
		<comments>http://blog.macaoidh.name/2010/06/12/os-x-vim-syntax-highlighting/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 09:21:43 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[preferences]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[Syntax Highlighting]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vim highlighting]]></category>

		<guid isPermaLink="false">http://blog.macaoidh.name/?p=303</guid>
		<description><![CDATA[Syntax highlighting isn&#8217;t enabled by default on OS X, though it&#8217;s easy enough to set it up, and a few other small enhancments at the same it. Start by executing this command: cd /usr/share/vim &#38;&#38; sudo vim vimrc After entering your password press i to enter insertion mode and add the following lines after the [...]]]></description>
			<content:encoded><![CDATA[<p>Syntax highlighting isn&#8217;t enabled by default on OS X, though it&#8217;s easy enough to set it up, and a few other small enhancments at the same it.</p>
<p>Start by executing this command:</p>
<pre class="brush:bash">cd /usr/share/vim &amp;&amp; sudo vim vimrc</pre>
<p>After entering your password press <strong>i</strong> to enter insertion mode and add the following lines after the line set backspace=2:</p>
<pre class="brush:bash">
set showmatch           " automatically show matching brackets
set binary noeol        " do NOT put a carriage return at the end of the last line
set backspace=indent,eol,start  " make that backspace key work the way it should
set history=100         " keep 100 lines of history
set ruler               " show the cursor position
syntax on               " syntax highlighting
set hlsearch            " highlight the last searched term
filetype plugin on      " use the file type plugins

" When editing a file, always jump to the last cursor position
autocmd BufReadPost *
\ if ! exists("g:leave_my_cursor_position_alone") |
\ if line("'\"") > 0 &#038;&#038; line ("'\"") < = line("$") |
\ exe "normal g'\"" |
\ endif |
\ endif</pre>
<p>The lines above add syntax highlighting and a few other useful things. The line <code>set binary noeol</code> is very important for web developers. For example if you are programming in PHP and you leave a space outside the closing <code>?></code> it will cause http headers to be needlessly sent. That line prevents that from happening.</p>
<p>Well that's it if you press <strong>ESC</strong> then type <strong>:wq</strong> you will return to the terminal. Try editing some files again and the highlighting should be enabled.</p>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2010/06/12/os-x-vim-syntax-highlighting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mac OS X &#8211; VIM Templates</title>
		<link>http://blog.macaoidh.name/2009/12/24/mac-os-x-vim-templates/</link>
		<comments>http://blog.macaoidh.name/2009/12/24/mac-os-x-vim-templates/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 22:18:41 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[templating system]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[with vim]]></category>

		<guid isPermaLink="false">http://blog.macaoidh.name/?p=288</guid>
		<description><![CDATA[I have always wondered if it was possible to use a template system with VIM. Whenever I used large editors it was usually because of the default template schemes they allow. I have always preferred using VIM because it&#8217;s so practical, and it&#8217;s useful to be able to execute commands in-between editing files. Well anyway [...]]]></description>
			<content:encoded><![CDATA[<p>I have always wondered if it was possible to use a template system with VIM. Whenever I used large editors it was usually because of the default template schemes they allow. I have always preferred using VIM because it&#8217;s so practical, and it&#8217;s useful to be able to execute commands in-between editing files.</p>
<p>Well anyway here are a few commands to configure a vim template system on UNIX (It should work on both OSX and Linux):</p>
<ul>
<li>Download the template system:
<pre class="brush: bash">curl -C - -O http://www.vim.org/scripts/download_script.php?src_id=3747</pre>
</li>
<li>Open VIM:
<pre class="brush: bash">sudo vim</pre>
</li>
<li>Source the file you have downloaded from within VIM by typing:
<pre class="brush: bash">:source ./download_script.php\?src_id=3747</pre>
</li>
<li>Now the VIM template system has been configured. The previous command should output the template directory so that you can create new templates, it differs depending on your OS.</li>
</ul>
<p>That&#8217;s it if you need more info on how the system works you can visit the project homepage <a href="http://www.vim.org/scripts/script.php?script_id=1172">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/12/24/mac-os-x-vim-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; Calculate Taxi Fares</title>
		<link>http://blog.macaoidh.name/2009/12/02/java-calculate-taxi-fares/</link>
		<comments>http://blog.macaoidh.name/2009/12/02/java-calculate-taxi-fares/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 00:21:25 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[fare]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[Scratch]]></category>
		<category><![CDATA[taxi]]></category>

		<guid isPermaLink="false">http://blog.macaoidh.name/?p=281</guid>
		<description><![CDATA[This week my ICSP assignment was to calculate taxi fares. The task was: Using the fare table write a program that calculates the fares and test if it is correct. Upload your .java or your Scratch file. A template file for java will be provided. (Hint, only the boundary values needs to be tested. The [...]]]></description>
			<content:encoded><![CDATA[<p>This week my ICSP assignment was to calculate taxi fares. The task was:</p>
<blockquote><p>Using the fare table write a program that calculates the fares and test if it is correct. Upload your .java or your Scratch file. A template file for java will be provided. (Hint, only the boundary values needs to be tested. The fare table is also presented in the slides. The compile command for java should be &#8220;javac TaxiRide.java&#8221;)</p>
<table border="0">
<tbody>
<tr>
<th colspan="2">Fare table</th>
</tr>
<tr>
<th>Distance (km)</th>
<th>Cost (€)</th>
</tr>
<tr>
<td>&gt;50</td>
<td>30</td>
</tr>
<tr>
<td>50-100</td>
<td>25, plus 9 for each km &gt; 50</td>
</tr>
<tr>
<td>100 &#8211; 2000</td>
<td>190, plus 8 for each km &gt; 100</td>
</tr>
<tr>
<td>&gt; 2000</td>
<td>1800</td>
</tr>
</tbody>
</table>
</blockquote>
<p>It wasn&#8217;t the hardest task. The only thing that confused me was the Java switch syntax. In PHP you can have conditions in a switch statement such as:</p>
<pre class="brush:php">
&lt;?php
switch($num){
        case ($num&lt;10):
                // blah
        break;
        case ($num&lt;100):
                // blah
        break;
        default:
                //blah
?&gt;
</pre>
<p>I couldn&#8217;t get Java to accept anything other than a value for the variable bring switched. So I did it the old-fashioned way! My code is below&#8230;</p>
<pre class="brush:java">
public class TaxiRide{
        public int distance=0;

        public TaxiRide(String arg){
                try{
                        int distance=Integer.parseInt(arg);
                        this.distance=distance;
                }
                catch(NumberFormatException e){
                        System.err.println("Arguement must be an integer representing the distance traveled");
                        System.exit(1);
                }
        }

        public int calculateFare(){
                int distance=this.distance;
                int fare=0;
                int i=0;
                if(distance&lt;50){
                        return 30;
                }
                if(distance%lt;100){
                        fare=25;
                        distance-=50;
                        for(i=0;i&lt;distance;i++){
                                fare+=9;
                        }
                        return fare;
                }
                if(distance&lt;2000){
                        fare=190;
                        distance-=100;
                        for(i=0;i&lt;distance;i++){
                                fare+=8;
                        }
                        return fare;
                }
                return 1800;
        }

        public static void main(String[] args){
                TaxiRide taxiRide = new TaxiRide(args[0]);
                int fare=taxiRide.calculateFare();
                System.out.println("The fare is: "+fare+" euro for traveling "+taxiRide.distance+"kM\n Thank you\n");
        }
}
</pre>
<p>I feel i am learning a lot from this course. Lately I have been experimenting in a few different languages. I added a bit to the Scratch Linux installer, written in Perl, so that it added an icon in the applications menu during installation. I&#8217;ve also been messing around with bash, trying to automate some of my most common commands&#8230; was thinking of writing a small bash script that backed up my data when my external hard drive is plugged in, similar to Time Machine on OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/12/02/java-calculate-taxi-fares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World &#8211; Java</title>
		<link>http://blog.macaoidh.name/2009/04/26/hello-world-java/</link>
		<comments>http://blog.macaoidh.name/2009/04/26/hello-world-java/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 11:56:07 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[first application]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.macaoidh.name/?p=195</guid>
		<description><![CDATA[I wrote my first Java application today. Ir is traditional to start out with something simple and boy this is simple and it works! First you need to download and install the Java Development Kit (JDK) from Sun here. Then change directory to your workspace &#8211; where ever you want! In my case it was: [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote my first Java application today. Ir is traditional to start out with something simple and boy this is simple and it works!</p>
<p>First you need to download and install the Java Development Kit (JDK) from Sun <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewFilteredProducts-SingleVariationTypeFilter">here</a>. Then change directory to your workspace &#8211; where ever you want! In my case it was:</p>
<pre>cd /home/conor/java</pre>
<p>Then open up a new file named HelloWorld.java in your favourite text editor. In my case it was:</p>
<pre>vim HelloWorld.java</pre>
<p>Now we start the coding:</p>
<pre>class HelloWorld{
  public static void main(String[] args){
    System.out.println("Hello World!");
  }
}</pre>
<p>This is basically just a class that tells Java to output the words &#8216;Hello World! Now the code must be turned into machine code so that it is faster to run. To do that simply type:</p>
<pre>javac HelloWorld.java</pre>
<p>This creates a new file named HelloWorld.class which is written in machine code. If you open this file in your text editor all you will see is a load of gobledeegook. Now the application is ready to run. Type the following command to run it:</p>
<pre>java HelloWorld</pre>
<p>You should then see Hello World! written on your screen like this:</p>
<pre>[conor@host java]$ java HelloWorld
Hello World!</pre>
<p>Another one in the bag!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/04/26/hello-world-java/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Down&#8230;. Don&#8217;t Know How Long&#8230;</title>
		<link>http://blog.macaoidh.name/2009/02/18/down-dont-know-how-long/</link>
		<comments>http://blog.macaoidh.name/2009/02/18/down-dont-know-how-long/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:42:33 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[My Blog]]></category>
		<category><![CDATA[Web Projects]]></category>
		<category><![CDATA[changing hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sites down]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://macaoidh.name/?p=121</guid>
		<description><![CDATA[This site is going to be down soon.. I don&#8217;t know when or for how long. The reason for this is I am finally getting around to switching to Linux hosting! Oh I can&#8217;t wait because Windows has been shit. It hasn&#8217;t really caused a problem until now but I can&#8217;t get my CMS to [...]]]></description>
			<content:encoded><![CDATA[<p>This site is going to be down soon.. I don&#8217;t know when or for how long.</p>
<p>The reason for this is I am finally getting around to switching to Linux hosting! Oh I can&#8217;t wait because Windows has been shit. It hasn&#8217;t really caused a problem until now but I can&#8217;t get my CMS to work on Windows. I can&#8217;t advertise the CMS properly without a Demo. It&#8217;s all a vicious circle really.</p>
<p>Anyway it could be a few days until my sites are back up again. Until then I don&#8217;t know what your going to do &#8211; I recommend staying inside and keeping to your-self, staying low until it blows over. Sites affected are:</p>
<ul>
<li><a href="http://todhchai.org">Todhchai Promotions</a></li>
<li><a href="http://macaoidh.name/">My Blog</a></li>
<li><a href="http://furasta.macaoidh.name">Furasta CMS</a></li>
<li><a href="http://webdesign.macaoidh.name">Next Generation Designs</a></li>
<li><a href="http://musicjam.eu">MusicJam</a></li>
</ul>
<p>If you want to blow of all your rage click <a href="http://www.bored.com/destroysites/disaster.php?mode=flamethrower&amp;url=http://macaoidh.name&amp;nosound=0&amp;auto=0">here</a>. Or show your love <a href="http://www.bored.com/destroysites/disaster.php?mode=kiss&amp;url=http://macaoidh.name&amp;nosound=0&amp;auto=1">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/02/18/down-dont-know-how-long/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tagged!</title>
		<link>http://blog.macaoidh.name/2009/01/16/tagged/</link>
		<comments>http://blog.macaoidh.name/2009/01/16/tagged/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 00:23:17 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[My Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[The Dominican Affair]]></category>
		<category><![CDATA[Web Projects]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[bodhran]]></category>
		<category><![CDATA[conor mac aoidh]]></category>
		<category><![CDATA[drums]]></category>
		<category><![CDATA[furasta cms]]></category>
		<category><![CDATA[mac aoidh]]></category>
		<category><![CDATA[ogra sinn fein]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sword fighting]]></category>
		<category><![CDATA[tagged]]></category>
		<category><![CDATA[the pot smoking pirates]]></category>
		<category><![CDATA[warhammer]]></category>
		<category><![CDATA[webworks]]></category>

		<guid isPermaLink="false">http://macaoidh.name/?p=90</guid>
		<description><![CDATA[I got tagged by Kae today. I had actually never herd of the thing before, I just don&#8217;t do enough blog reading I guess! Anyway it&#8217;s tough to list seven things that people don&#8217;t already know. I don&#8217;t have much to talk about so don&#8217;t be surprised if you know half of these things already!:-) [...]]]></description>
			<content:encoded><![CDATA[<p>I got tagged by <a href="http://verens.com">Kae</a> today. I had actually never herd of the thing before, I just don&#8217;t do enough blog reading I guess! Anyway it&#8217;s tough to list seven things that people don&#8217;t already know. I don&#8217;t have much to talk about so don&#8217;t be surprised if you know half of these things already!:-)</p>
<p>1. I was sixteen on 19th September &gt; Virgo (What a sign &#8211; a fucking  mermaid!). I am still in fifth year at school which i absolutely detest. In fact the only thing that is keeping me in there is the promise of College. From my perspective that is heaven! Parties all the time &#8211; and when there are no parties I will be studying for tests by Programming! What more could you want? I should probably mention that I have been in an all Irish school for my whole life and that I talk Irish at home. Native language gotta be done. Oh and just for the record my name, Conor Mac Aoidh is pronounced &#8220;Mac í&#8221; or &#8220;Mac e&#8221;.</p>
<p>2. I play the Drums in two bands &gt; The Pot Smokin&#8217; Pirates and The Dominican Affair. Guess which one I enjoy more? I started the drums when I was 13. Before that I played the bodhran (What a load of shite). I went to drum lessons for about a year then I tought myself. When I finished teaching myself I moved on to teaching other people. At the moment I am practicing for the local Panto. I have done it three times before, it is good crac on the night. Gotta hate the music though! The Pot Smokin&#8217; Pirates where the first band I joined, or should I say formed! They were a school band but soon enough I discovered that school and rock music don&#8217;t go so well together! We used to practice in the lead singers garage. One day his older brother asked me to join his band &#8216;The Kamikaze Potato Men&#8217;. Thats when I really got to grips with the drums &#8211; I was playing with a band three years older than me! Eventually &#8216;The Kamikaze Potato Men&#8217; got rid of the lead singer, found a new one and formed <a href="http://thedominicanaffair.com">The Dominican Affair</a>!</p>
<p>3. I am Oifigeach na hAirgeadais for Ógra Shinn Féin Muineacháin. I don&#8217;t want to delve to deeply into this because once you start me I can&#8217;t stop! Basically I support and am a member of Sinn Féin. I am in favor of a democratic-socialist, anti-neo-libiralist, egalitarian 32 county united Ireland. Make Partition History! 26 + 6 = 1.</p>
<p>4. Oh what else&#8230; I am half Scotish, half Irish and was born in England. I used to collect Warhammer! God I have to include that because it was not a minor thing in my life. For those of you who are familiar with the way it works, I had a 3,000 point Empire Army! That is pretty massive for a ten year old in fairness. The strange thing is that I used them for display. I only ever played a couple of times and found the games to complicated. My main concentration was actually painting the things. I used to paint them like a machine. I also had millions of nobles and all that I couldn&#8217;t use because I didn&#8217;t have enough points to incorporate them! Come to think of it my first army was High Elves. By the end of my Empire collection I had gotten pretty good at painting the models. Then I started with Bretonians. I had just enough of them to play &#8211; two core units and a general. I recently got rid of almost everything in my collection. I kept only a few things. My two best painted pieces &#8211; &#8216;The Green Night&#8217; and a Celtos model which I made a cool base for. Also I have an old White Dwarf from the 80&#8242;s signed by the Eavy Metal Team. I might Ebay it! I think that I have enough to make a core unit and general army at the moment!</p>
<p>5. PHP. This tagged thing is directed towards the language users so I had better talk about it. I started learning HTML at the end of 2007 as part of a school transition year course. I didn&#8217;t pay much attention to it at first. Then by chance I got work expierence with the local web design company, <a href="http://webworks.ie">webworks</a> last summer. That is were i learned CSS and began on PHP. Not to soon after that I got hooked on the language and I love it! I am currently writing Furasta CMS, which will be in beta of it&#8217;s first &#8220;stable&#8221; version by the end of next week, hopefully! I am a linux user and have been since November! I started out with Mandriva One 2009 and then recently moved on to Fedora 10. I think that Linux bears a big role in the future of computers in general.</p>
<p>6. I can fight. With a sword I mean! I trained for Medieval Historical Re-enacting for too many years. I did all the shows where you dress up and people stare at you and ask you if they can look at your sword. It&#8217;s not all it&#8217;s cracked up to be really. It&#8217;s like any other physical sport. You do the same thing over and over and over untill you can do it in your sleep! Then finally once you have done it for a few years you dump the wooden swords and go on to metal! I have to say the proper equipment is pretty cool. It&#8217;s quite tough to fight with armour actually because it weighs a ton. I learned how to fight with a sword. shield, staff, pike, bow and arrow and claymore. I haven&#8217;t really done anything with it in the last year but there is talk of it starting again so you never know!</p>
<p>7. This is tough&#8230; Em&#8230; I am an atheist. I believe that believing in God is a completely personal thing and that it should have nothing what-so-ever to do with the state and especially the schools! I don&#8217;t have a problem with anyone else that believes in god I just hate the fact that so much trouble has been caused in this world because of religion. I was not baptised and brought up to make my own decision &#8211; and I have! <img src='http://blog.macaoidh.name/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It annoys me that my school gets massive &#8220;grants&#8221; from Catholic Associations and therefore it is a Catholic School. Not only that but the fact that I have to take time out of classes to go to mass four times a year. Basically I think that religion in schools should be eradicated, but the religion class should be kept. I think it is a good idea to discuss religions and to make people aware that there are much more religions out there than Catholicism and that they should make their own decision rather than blindly following the crowd.</p>
<p>Now onto the tagging. I am bound by the rules to tag seven other people. The problem is that I only know one PHP developer and that is the person who tagged me! So for now I will leave this part. <strong>But I will update it once I meet other enthusiasts, </strong>so I&#8217;m not breaking the rules!</p>
<p><strong></strong><strong>Rules</strong></p>
<ul>
<li>Link your original tagger(s), and list these rules on your blog.</li>
<li>Share seven facts about yourself in the post &#8211; some random, some weird.</li>
<li>Tag seven people at the end of your post by leaving their names and the links to their blogs.</li>
<li>Let them know they’ve been tagged by leaving a comment on their blogs and/or Twitter</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/01/16/tagged/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora 10</title>
		<link>http://blog.macaoidh.name/2009/01/13/fedora-10/</link>
		<comments>http://blog.macaoidh.name/2009/01/13/fedora-10/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 21:09:56 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[distro]]></category>
		<category><![CDATA[fedora 10]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://macaoidh.name/?p=80</guid>
		<description><![CDATA[I recently made the change from Mandriva One 2009 to Fedora 10. Oh what a difference! Mandriva was the first Linux OS that I ever used and I suppose it appealed to me because of it being a very user friendly distro. Actually when I first stumbled upon it I was extatic. I was stuned [...]]]></description>
			<content:encoded><![CDATA[<p>I recently made the change from Mandriva One 2009 to Fedora 10. Oh what a difference!</p>
<p>Mandriva was the first Linux OS that I ever used and I suppose it appealed to me because of it being a very user</p>
<p>friendly distro. Actually <a href="http://macaoidh.name/index.php/archives/2008/11/mandriva/">when I first stumbled upon it</a> I was extatic. I was stuned with KDE 4.1 and its amazing ability to allow you to customise everything. But eventually I realised that I didn&#8217;t want to customise everything and that some things are better left to the distro designers! Mandriva, for me, was kind of a bridge into the Linux world. I learned a hell of a lot while using it and I am now quite familiar with the Konsole and all it&#8217;s various</p>
<p>commands. But after a while I did feel like I wanted more, more Linux that is &#8211; and less Windows. Because at the end of the day Mandriva is designed for Windows users and in my opinion it is a bit Windows like.</p>
<p>Anyway I better start talking about Fedora. I went of to a faulty start with this distro. I had previously tried Fedora 9 on my laptop but it rejected my graphics card and I decided to wait for the release of Fedora 10. I know it has been released for a couple of months at this stage but I was waiting for a packaged release. I got this last week in the Linux Format magazine. Unfortunately Fedora 10 also rejected my graphics card. But not to worry the local <a href="http://verens.com">Linux guru</a> was happy to help! Once I got the graphics sorted I had free reign!</p>
<p>The CD I got with the Linux Format magazine had everything! I distinctly remember in Mandriva having to download ever</p>
<p>ything that you would expect to have with a distro, packages that a hell of a lot of programs depend on, such as glibc. Not the case this time though thank god because my internet connection would probably get stressed and stop working or something&#8230;. The CD gave me a pre-installed web server! Brilliant because frankly I could not have been arsed learning how to set up Apache vhosts again! It also came with a wide range of extra programs such as GIMP 2.6 (I tried to get this for Mandriva but urpmi was still stuck on 2.4!), Transmission Bit Torrent (usefull for downloading music) and rythmbox music player. I was surprised at the fact that it didn&#8217;t include Konqueror &#8211; I thought that all distros did. It could be a KDE program.</p>
<p>Another choice that I had to face was KDE or GNOME? As I earlier emphasised Mandriva One 2009 came with KDE 4.1, which was the first stable release of KDE 4, and Mandriva was the first distro to be released with it. It certainly had a lot to live up to after KDE 3, not that I would know &#8211; it&#8217;s a bit before my time! I had enjoyed KDE and I wanted to take it with me when I made the switch to Fedora. But i still haven&#8217;t actually got round to setting it up and for the moment I am stuck with GNOME 2.24. That is not a bad thing though because it is ever so slowly growing on me. I am at the point now where I think that I might just not bother setting up KDE&#8230;</p>
<p>So Fedora 10. All round it&#8217;s impressive. The last release I toyed with was Fedora 8 and it has certainly changed for the better since then! The new graphically animated boot proccess is much better than the old jumpy thing and the desktop photo of a blue star is very interesting. For those of you that reject it&#8217;s animated state <strong>you are wrong!</strong> I spent ten minutes yesterday staring at that screen and I am certain that it moves! However slightly and smoothly, it does move!. Thats about it. Fedora 10 gets top marks by me, great distro! Hopefully the team can keep up with their twice a year releases because I for one can&#8217;t wait &#8217;till Fedora 11.</p>
<p>Oh and be expecting some Fedora Magik in the form of USB!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2009/01/13/fedora-10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mandriva :-)</title>
		<link>http://blog.macaoidh.name/2008/11/22/mandriva/</link>
		<comments>http://blog.macaoidh.name/2008/11/22/mandriva/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 21:12:42 +0000</pubDate>
		<dc:creator>Conor</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Web Projects]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[o2]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[root login]]></category>
		<category><![CDATA[the strats]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[web design forum]]></category>

		<guid isPermaLink="false">http://macaoidh.name/?p=46</guid>
		<description><![CDATA[Yeaterday I met a guy browsing the Linux magazines in easons. We started talking about Linux and he highly recomended Mandriva. I had been using Fedora for a month at that stage and to be honest I didn&#8217;t think that much of it. The man managed to convince me to buy the Linux Format magazine [...]]]></description>
			<content:encoded><![CDATA[<p>Yeaterday I met a guy browsing the Linux magazines in easons. We started talking about Linux and he highly recomended Mandriva. I had been using Fedora for a month at that stage and to be honest I didn&#8217;t think that much of it. The man managed to convince me to buy the Linux Format magazine which included a live version of Mandriva.</p>
<p>When I got home I stuck in the CD, not expecting much since I was disapointed with both Fedora and Ubuntu. Oh My God it is brilliant!! Mandriva is the best operating system that I have ever stumbled upon! Absolutly brilliant! <img src='http://blog.macaoidh.name/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It combines all the good visual aspects of Microsoft&#8217;s Window Vista and the good old back end of Linux! The graphical &#8216;flowing&#8217; widgets and the availability to completly customise everything visually creates a great user friendly (and more importandly Windows user friendly) interface.</p>
<p>So I set about getting rid of Fedora. I only had 12 GB hard drive space reserved for Fedora but I was so impressed by Mandriva that I managed to clear 34 GB for it! The OS is now installed and almost fully functional. </p>
<p>I have to say I am surprised that a Linux distribution has finally achieved what I have been waiting for. The things that I want in Linux are finally available, which are:</p>
<ul>
<li>The graphical, ease of use, user friendly aspects of a Windows distribution. Mandriva in my opinion has achieved this, and to my great suprise it has out-done any Windows OS that I have ever used in this section in particular.</li>
<li>No Viruses. This has allways been available &#8211; but without the other points it means nothing.</li>
<li>The ability to code properly, I have learned the hard way that this isn&#8217;t possible on Windows.</li>
<li>Oh and everything is easy! Like MySQL for example, i found it impossible to set it up on Windows without using PHP MyAdmin.</li>
</ul>
<p>Over all i think Mandriva is brilliant and I cant wait to get it working properly. The only one problem that I did find with it is that my 02 3G modem won&#8217;t work properly on it. I have found some articles to hack the config files, which I intent to do as soon as I find out how to log in as root!!! <img src='http://blog.macaoidh.name/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  oh it will all work eventually&#8230;</p>
<p>Just to note I got The Strats website up at http://www.thestrats.com please check it out and give me a review here or preferably at http://www.webdesignforum.com/5904-review-my-new-site.html#post22842</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaoidh.name/2008/11/22/mandriva/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
