<?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>johnjcamilleri.com</title>
	<atom:link href="http://johnjcamilleri.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnjcamilleri.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 13:00:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Goodbye GoDaddy, hello VPS.NET</title>
		<link>http://johnjcamilleri.com/2010/09/goodbye-godaddy-hello-vps-net/</link>
		<comments>http://johnjcamilleri.com/2010/09/goodbye-godaddy-hello-vps-net/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 12:57:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[virtual private server]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=220</guid>
		<description><![CDATA[So, I have finally made the move off GoDaddy shared hosting. While their stuff works and is admittedly cheap, I knew the perofmance was a bit crappy and in general just grew tired of the company. Their management panel is horrible, even though I&#8217;d gotten used to it after all these years. In addition I [...]]]></description>
			<content:encoded><![CDATA[<p>So, I have finally made the move off GoDaddy shared hosting. While their stuff works and is admittedly cheap, I knew the perofmance was a bit crappy and in general just grew tired of the company. Their management panel is horrible, even though I&#8217;d gotten used to it after all these years. In addition I always found their advertising a bit offensive (I don&#8217;t need sexy women to convince me to buy their stuff) and in general too American. Using them just makes me feel cheap.</p>
<p><a href="http://www.vps.net/virtual-private-server"><img class="alignleft" title="VPS.NET Robot" src="https://www.vps.net/images/icons/vm-title-robot.png" alt="" width="64" height="87" style="margin-right:10px;" /></a>So I searched a while for a good-looking VPS solution, and found <a href="http://www.vps.net/">VPS.NET</a>. Their focus on scalabilty is super, you can start out with minimal resources and then add as you go, without having to reprovision anything. I&#8217;d also read really good things about their customer service, and decided to take the plunge.</p>
<p>It&#8217;s still very early days, but so far I&#8217;m loving them. Everything was very fast to set up (minutes), support was very prompt and I have all the flexibiltiy I want and a really good price. As time goes by we&#8217;ll see if things remain this good.. well, just the fact that I&#8217;m already off GoDaddy is a huge relief!</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/09/goodbye-godaddy-hello-vps-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling compression with GoDaddy Shared Hosting</title>
		<link>http://johnjcamilleri.com/2010/07/enabling-compression-with-godaddy-shared-hosting/</link>
		<comments>http://johnjcamilleri.com/2010/07/enabling-compression-with-godaddy-shared-hosting/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 10:44:13 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Random Tech]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[deflate]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=213</guid>
		<description><![CDATA[Compression of HTML, CSS and JavaScript is quite important for improving your site&#8217;s speed and should always be used. Of you will find that all you need to do is add a line similar to the following to your .htaccess file: AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml application/x-javascript text/javascript application/javascript Source: StackOverflow However, if you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Compression of HTML, CSS and JavaScript is quite important for improving your site&#8217;s speed and should always be used.</p>
<p>Of you will find that all you need to do is add a line similar to the following to your <code>.htaccess</code> file:</p>
<p><code>AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml application/x-javascript text/javascript application/javascript</code><br />
<em>Source: <a href="http://stackoverflow.com/questions/373725/javascript-compression-via-htaccess">StackOverflow</a></em></p>
<p>However, if you&#8217;re on a GoDaddy shared hosting account you may have realised that this doesn&#8217;t work. <a href="http://help.godaddy.com/article/4485">GoDaddy&#8217;s help page</a> recommends that you paste this code in all your PHP pages:</p>
<p><code>&lt;?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?&gt;</code></p>
<p>That&#8217;s fine, but from my understanding this will not cache your CSS or JavaScript. However, I found a <a href="http://wordpresspartner.com/tutorials/godaddy-htaccess-gzip/">solution here</a>, which involves some <code>.htaccess</code> trickery to compress all your CSS and JavaScript files automatically. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/07/enabling-compression-with-godaddy-shared-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>j&#8217;s instead of smileys in Thunderbird 3</title>
		<link>http://johnjcamilleri.com/2010/07/js-instead-of-smileys-in-thunderbird-3/</link>
		<comments>http://johnjcamilleri.com/2010/07/js-instead-of-smileys-in-thunderbird-3/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 15:24:28 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[3]]></category>
		<category><![CDATA[emoticon]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[smiley]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=209</guid>
		<description><![CDATA[It seems the solution for the outlook smileys posted here only works for Thunderbird 2. For Thunderbird 3, I found this very helpful discussion and add-on.  Enjoy!]]></description>
			<content:encoded><![CDATA[<p>It seems the solution for the <em>outlook smileys</em> posted <a title="j’s in Thunderbird emails Outlook smiley faces" href="http://johnjcamilleri.com/2009/11/js-in-thunderbird-emails-outlook-smiley-faces/">here</a> only works for Thunderbird 2.<br />
For Thunderbird 3, I found this very helpful <a title="How to stop smiley in Thunderbird showing up as a J?" href="http://superuser.com/questions/159334">discussion</a> and <a title="github: smileyfixer" href="http://github.com/richq/smileyfixer/downloads">add-on</a>.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/07/js-instead-of-smileys-in-thunderbird-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vertical alignment of inline images in LaTeX</title>
		<link>http://johnjcamilleri.com/2010/05/vertical-alignment-of-inline-images-in-latex/</link>
		<comments>http://johnjcamilleri.com/2010/05/vertical-alignment-of-inline-images-in-latex/#comments</comments>
		<pubDate>Sun, 09 May 2010 10:05:04 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[alignments]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[inline]]></category>
		<category><![CDATA[vertical]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=199</guid>
		<description><![CDATA[This is one of those things which isn&#8217;t so easy to find, so here&#8217;s my contribution. The Problem You&#8217;re using LaTeX, and have a small image which you want to display inline with the text (i.e. not a float). So, you use something like the following: ...indicate whether the phrase you've constructed is valid (\includegraphics{tick.png}) [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of those things which isn&#8217;t so easy to find, so here&#8217;s my contribution.</p>
<h3>The Problem</h3>
<p>You&#8217;re using LaTeX, and have a small image which you want to display inline with the text (i.e. not a float). So, you use something like the following:</p>
<p><code>...indicate whether the phrase you've constructed is valid (\includegraphics{tick.png}) or not (\includegraphics{cross.png}}). To make things...</code></p>
<p>This works, but often the vertical alignment is not quite right, as shown in the images below:</p>
<div id="attachment_202" class="wp-caption alignnone" style="width: 285px"><a href="http://johnjcamilleri.com/wp-content/uploads/2010/05/nonaligned.png"><img class="size-full wp-image-202" title="Inline images, non-aligned" src="http://johnjcamilleri.com/wp-content/uploads/2010/05/nonaligned.png" alt="" width="275" height="80" /></a><p class="wp-caption-text">Inline images, non-aligned</p></div>
<div id="attachment_203" class="wp-caption alignnone" style="width: 614px"><a href="http://johnjcamilleri.com/wp-content/uploads/2010/05/nonalignedx600.png"><img class="size-full wp-image-203 " title="Inline images, non-aligned (x600)" src="http://johnjcamilleri.com/wp-content/uploads/2010/05/nonalignedx600.png" alt="" width="604" height="254" /></a><p class="wp-caption-text">Zoomed (x600)</p></div>
<h3>The Solution</h3>
<p>After some searching and experimenting, I found the best solution to be using the <code>\raisebox</code> command with a negative value, like so:</p>
<p><code>...indicate whether the phrase you've constructed is valid (<strong>\raisebox{-1mm}</strong>{\includegraphics{tick.png}<strong>}</strong>) or not (<strong>\raisebox{-1mm}</strong>{\includegraphics{cross.png}<strong>}</strong>). To make things...</code></p>
<p>The additional code is minimal and it works perfectly (as far as I can tell). Results as below:</p>
<div id="attachment_200" class="wp-caption alignnone" style="width: 285px"><a href="http://johnjcamilleri.com/wp-content/uploads/2010/05/aligned.png"><img class="size-full wp-image-200" title="Inline images, properly aligned" src="http://johnjcamilleri.com/wp-content/uploads/2010/05/aligned.png" alt="" width="275" height="80" /></a><p class="wp-caption-text">Inline images, properly aligned</p></div>
<div id="attachment_201" class="wp-caption alignnone" style="width: 614px"><a href="http://johnjcamilleri.com/wp-content/uploads/2010/05/alignedx600.png"><img class="size-full wp-image-201 " title="Inline images, properly aligned (x600)" src="http://johnjcamilleri.com/wp-content/uploads/2010/05/alignedx600.png" alt="" width="604" height="248" /></a><p class="wp-caption-text">Zoomed (x600)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/05/vertical-alignment-of-inline-images-in-latex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mendeley, BibTeX and citing Website URLs</title>
		<link>http://johnjcamilleri.com/2010/05/mendeley-bibtex-cite-website-url/</link>
		<comments>http://johnjcamilleri.com/2010/05/mendeley-bibtex-cite-website-url/#comments</comments>
		<pubDate>Mon, 03 May 2010 10:57:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[bibtex]]></category>
		<category><![CDATA[citation]]></category>
		<category><![CDATA[cite]]></category>
		<category><![CDATA[mendeley]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=189</guid>
		<description><![CDATA[The Problem Using Mendeley Desktop (&#60;3) to manage all my dissertation references, which automatically writes a BibTeX (.bib) for me which I include in my LaTeX document. So far so good. When I manually create an entry in Mendeley for a website, it creates a BibTeX entry like the following: @misc{myKey, author = {Surname, Name}, [...]]]></description>
			<content:encoded><![CDATA[<h3>The Problem</h3>
<ol>
<li>Using <a href="http://www.mendeley.com/">Mendeley Desktop</a> (&lt;3) to manage all my dissertation references, which automatically writes a BibTeX (.bib) for me which I include in my LaTeX document. So far so good.</li>
<li>When I manually create an entry in Mendeley for a website, it creates a BibTeX entry like the following:<br />
<code>@misc{myKey,<br />
author = {Surname, Name},<br />
title = {{Website Name}},<br />
url = {http://my.url.com/},<br />
year = {2010}<br />
}</code></li>
<li>That looks fair enough, but standard BibTeX/LaTeX simply ignores the <code>url</code> field in the entry&#8230; which makes the reference look rather stupid. So how can I handle websites properly?</li>
</ol>
<h3>What I hoped I would be able to find</h3>
<ol>
<li>I wish Mendeley had some more advanced options which controlled how BibTeX files were created, this would have definitely been the most ideal option, but alas no such options exist. Editing the generated .bib yourself would be pointless since Mendeley will just overwrite the file each time.</li>
<li>BibTeX itself could really do with an update in the website-citation department. I&#8217;ve seen lots of talk about new versions but can&#8217;t see where they are&#8230; Also I know there are alternative BibTeX packages which can be used, but this was something I wanted to avoid because sometimes you can&#8217;t tell what else it&#8217;s going to change in your references. For more information on the options, I recommend this link: <a title="UK List of TeX Frequently Asked Questions" href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=citeURL">URLs in BibTeX bibliographies</a></li>
</ol>
<h3>The Solution</h3>
<ol>
<li>The best solution I could come up with so far, is to simply delete these references from Mendeley and put them in your own custom .bib file. Thus, you will have the Mendeley-generated bib file (which we&#8217;ll call <code>mendeley.bib</code>) and your own custom bib file for website entries (which we&#8217;ll call <code>websites.bib</code>)</li>
<li>When writing your BibTeX website entries, be sure to use the <code>howpublised</code> field like so:<br />
<code>@misc{myKey,<br />
author = {Surname, Name},<br />
title = {{Website Name}},<br />
howpublished = {\url{http://my.url.com/}},<br />
year = {2010}<br />
}</code></li>
<li>This will get BibTeX to correctly show the URL in the bibliography entry.</li>
<li>Finally in your LaTeX document be sure to include both bib files, like so: <code>\bibliography{mendeley,websites}</code></li>
</ol>
<h3>An Alternative</h3>
<p>Actually, what I ended up doing in my dissertation is listing these &#8220;one-off&#8221; website references as <em>footnotes</em> rather than actual citations, since they&#8217;re not exactly publications. Obviously you will have to see whether this is applicable or not to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/05/mendeley-bibtex-cite-website-url/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSAI&#8217;s Guide To Dissertation Writing</title>
		<link>http://johnjcamilleri.com/2010/04/csais-guide-to-dissertation-writing/</link>
		<comments>http://johnjcamilleri.com/2010/04/csais-guide-to-dissertation-writing/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 10:38:52 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[dissertation]]></category>
		<category><![CDATA[fyp]]></category>
		<category><![CDATA[guidelines]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[university of malta]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=186</guid>
		<description><![CDATA[I found this on my computer, not sure where it came from (can&#8217;t find it online now) but I figured it may be useful to other IT students writing their FYP/dissertation. CSAI Final Year Projects Guidelines (B.Sc.IT)]]></description>
			<content:encoded><![CDATA[<p>I found this on my computer, not sure where it came from (can&#8217;t find it online now) but I figured it may be useful to other IT students writing their FYP/dissertation.</p>
<p><a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/CSAI_Final_Year_Projects_Guidelines.pdf">CSAI Final Year Projects Guidelines (B.Sc.IT)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/04/csais-guide-to-dissertation-writing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fonts, Keyboards &amp; Layouts &#8211; How to correctly type Maltese characters</title>
		<link>http://johnjcamilleri.com/2010/04/fonts-keyboards-layouts-how-to-correctly-type-maltese-characters/</link>
		<comments>http://johnjcamilleri.com/2010/04/fonts-keyboards-layouts-how-to-correctly-type-maltese-characters/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 22:10:07 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[maltese]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=172</guid>
		<description><![CDATA[UPDATE: Thomas Pace kindly pointed out this very helpful link which basically covers everything here, and includes steps for Apple&#8217;s OSX: http://www.kunsilltalmalti.gov.mt/filebank/documents/kompjuter.pdf I&#8217;ve been asked many times how to enter Maltese characters on a computer &#8211; i.e. ċĊ, ġĠ, ħĦ and żŻ. It turns out there&#8217;s a lot of misconceptions out there, and many people [...]]]></description>
			<content:encoded><![CDATA[<p style="padding: 5px; background: #FFFFE0; border: 1px solid #E6DB55; margin: 1em;"><strong>UPDATE</strong>: Thomas Pace kindly pointed out this very helpful link which basically covers everything here, and includes steps for Apple&#8217;s OSX: <a href="http://www.kunsilltalmalti.gov.mt/filebank/documents/kompjuter.pdf">http://www.kunsilltalmalti.gov.mt/filebank/documents/kompjuter.pdf</a></p>
<p>I&#8217;ve been asked many times how to enter Maltese characters on a computer &#8211; i.e. ċĊ, ġĠ, ħĦ and żŻ.<br />
It turns out there&#8217;s a lot of misconceptions out there, and many people think that typing Maltese and other non-Latin characters requires a special keyboard and/or specially installed fonts. This is completely not true, and all users with a moderately modern computer are able to enter such characters by simply adding a selecting a different keyboard layout from their OS.</p>
<p>Below is a short explanation of the misconceptions, if you just want to see the steps for selecting a different keyboard layout, <a href="#howto">click here</a>.</p>
<h3>&#8220;Maltese Fonts&#8221; and why they&#8217;re such a bad idea</h3>
<p>A few years ago, everyone thought these so-called &#8220;Maltese Fonts&#8221; were the solution to entering Maltese characters into your computer. These fonts are just copies of the usual fonts we all know (Arial, Times etc) but with certain characters redrawn, such that when you type a <em>[</em> it is displayed as a <em>ġ</em>, <em>}</em> becomes <em>Ħ</em> and so on. Now if all you're doing is typing into a word processor and printing directly from the same computer, the solution seems to work.</p>
<p>But what happens if you want to send a Maltese document to someone who doesn't have these fonts installed? Well, they will still be able to open the document, but in place of the proper Maltese characters they would see different punctuation symbols. So the phrase <em>Għażiż Ċali</em> would become something like:</p>
<blockquote><p>G]a\i\ `ali</p></blockquote>
<p>People just accepted this, and would say to each other &#8220;you need to install the Maltese fonts in order to read the document&#8221;. But, it gets worse. What if you&#8217;re entering text somewhere which doesn&#8217;t allow you to change fonts? I you were filling in a form on  a web page or even writing an email, you would just forget the use of Maltese characters altogether.</p>
<p>To summarise, &#8220;Maltese Fonts&#8221; are a very short-sighted and inelegant solution. Thankfully, due to a little something called Unicode, all modern computers today will allow you to enter (and read) Maltese and other non-Latin characters, simply by changing your keyboard layout settings (see below).</p>
<h3>&#8220;Maltese Keyboards&#8221; and why you don&#8217;t need one (but might still want one)</h3>
<p>Another misconception I&#8217;ve heard is that in order to enter Maltese characters, you require special hardware — i.e. a &#8220;Maltese Keyboard&#8221;. This is not true, because all a Maltese keyboard really is is a standard US/UK keyboard with different symbols printed on the keys. Circuitry-wise, everything else is identical. In fact any keyboard can be used to enter any type of character, simply by changing your computer settings.</p>
<p>However, that being said, users may find that having a Maltese keyboard is helpful since they don&#8217;t need to remember that they need to press the <em>[</em> button to produce a <em>ġ</em> and so on.<br />
<a name="howto"> </a></p>
<h2>How to select the Maltese keyboard layout on your computer</h2>
<p>The screenshots below are taken in <strong>Windows 7</strong>. Steps for <strong>Windows Vista</strong> and <strong>Windows XP</strong> are very similar, almost identical. Steps vary for Linux because of all the different distributions, for <strong>Mac OSX</strong> refer to the linked article above.</p>
<ol>
<li>Start → Control Panel</li>
<li>"Change keyboards or other input methods"</li>
<li>Click "Change Keyboards..."<br />
<a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-1.png"><img class="size-full wp-image-173 alignnone" title="Windows 7 - Step 1" src="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-1.png" alt="" width="477" height="550" /></a></li>
<li>This shows all your installed keyboard layouts. Click Add.<br />
<a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-2.png"><img class="alignnone size-full wp-image-174" title="Windows 7 - Step 2" src="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-2.png" alt="" width="431" height="491" /></a></li>
<li>Choose one of the Maltese keyboard layouts:<br />
<a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-3.png"><img class="alignnone size-full wp-image-175" title="Windows 7 - Step 3" src="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-3.png" alt="" width="417" height="386" /></a></p>
<ul>
<li>If on your keyboard, the <em>@</em> symbol is above the number <em>2</em>, choose Maltese 47-key</li>
<li>Otherwise, if the <em>"</em> symbol is above the <em>2</em> key, choose Maltese 48-key</li>
</ul>
</li>
<li>You can also preview the keyboard layout:<br />
<a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-4.png"><img class="alignnone size-full wp-image-176" title="Windows 7 - Step 4" src="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-4.png" alt="" width="517" height="266" /></a></li>
<li>After clicking OK to everything, you should now notice a new icon in your taskbar next to the time, called the Language bar with this icon:<a href="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-5.png"><br />
<img class="alignnone size-full wp-image-177" title="Windows 7 - Step 5" src="http://johnjcamilleri.com/wp-content/uploads/2010/04/w7-5.png" alt="" width="34" height="30" /></a><br />
Click on it to change the desired input language. After changing it to Maltese, try pressing these keys on your keyboard:</li>
</ol>
<blockquote><p>[ { ] } `¬ \ | # ~</p></blockquote>
<p>You should now see our lovely Maltese characters on your screen <img src='http://johnjcamilleri.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (The last 4 will vary depending on whether you chose the 47 or 48-key layout).</p>
<p>Note that this setting is <strong>per-application</strong>. So, if you&#8217;re in Microsoft word and change it to Maltese, then switch to your email client, you will need to set the language again for that application. If you always want the Maltese keyboard layout to be the default active layout for all your applications, you can set it from the screen in point 4 above (under <em>default input language</em>).</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/04/fonts-keyboards-layouts-how-to-correctly-type-maltese-characters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Buzz: Stop getting emails via POP</title>
		<link>http://johnjcamilleri.com/2010/03/google-buzz-stop-getting-emails-via-pop/</link>
		<comments>http://johnjcamilleri.com/2010/03/google-buzz-stop-getting-emails-via-pop/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:05:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[buzz]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pop]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=170</guid>
		<description><![CDATA[If you use Gmail /Google Buzz and a POP client for your email, chances are you&#8217;re receiving a bunch of emails telling you about new buzz&#8217;s &#8211; including your own updates! This is very annoying and there&#8217;s no direct setting to turn it off. However this guy has come up with a great solution, by [...]]]></description>
			<content:encoded><![CDATA[<p>If you use Gmail /Google Buzz and a POP client for your email, chances are you&#8217;re receiving a bunch of emails telling you about new buzz&#8217;s &#8211; including your own updates!</p>
<p>This is very annoying and there&#8217;s no direct setting to turn it off. However <a href="http://www.google.com/support/forum/p/gmail/thread?tid=264ecc795485cc3e&amp;hl=en">this guy</a> has come up with a great solution, by basically creating a Gmail filter for emails containing the words <code>in:buzz</code></p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/03/google-buzz-stop-getting-emails-via-pop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An interesting way to avoid publishing your email address..</title>
		<link>http://johnjcamilleri.com/2010/03/an-interesting-way-to-avoid-publishing-your-email-address/</link>
		<comments>http://johnjcamilleri.com/2010/03/an-interesting-way-to-avoid-publishing-your-email-address/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:11:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Random Tech]]></category>
		<category><![CDATA[antispam]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=167</guid>
		<description><![CDATA[Check out this page: http://blacksapphire.com/antispam/ Not only does this guy require you to answer a mini quiz to prove you are human, but he will also generate a new email address for every person who wishes to contact him (which I imagine are only valid for a limited amount of time) so that he never [...]]]></description>
			<content:encoded><![CDATA[<p>Check out this page: <a href="http://blacksapphire.com/antispam/">http://blacksapphire.com/antispam/</a></p>
<p>Not only does this guy require you to answer a mini quiz to prove you are human, but he will also generate a new email address for every person who wishes to contact him (which I imagine are only valid for a limited amount of time) so that he never has to give a single, spammable, email address..</p>
<p>I thought it was quite inventive!</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/03/an-interesting-way-to-avoid-publishing-your-email-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>johnjcamilleri.com is now seriffed</title>
		<link>http://johnjcamilleri.com/2010/02/johnjcamilleri-com-is-now-seriffed/</link>
		<comments>http://johnjcamilleri.com/2010/02/johnjcamilleri-com-is-now-seriffed/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:19:04 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[serif]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://johnjcamilleri.com/?p=160</guid>
		<description><![CDATA[there&#8217;s just something I like about serifs, so I thought it was about time I seriffed the fonts on my own site. other than that, it&#8217;s still the same old boring gray theme.. tbh i&#8217;m waiting for WordPress 3 before my next major site facelift (not that the 2 are really related, but anyway&#8230;)]]></description>
			<content:encoded><![CDATA[<p>there&#8217;s just something I like about serifs, so I thought it was about time I seriffed the fonts on my own site.</p>
<p>other than that, it&#8217;s still the same old boring gray theme.. tbh i&#8217;m waiting for WordPress 3 before my next major site facelift (not that the 2 are really related, but anyway&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://johnjcamilleri.com/2010/02/johnjcamilleri-com-is-now-seriffed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
