<?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>klkl &#187; Miscellaneous</title>
	<atom:link href="http://klkl.co.uk/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://klkl.co.uk</link>
	<description>it's easy to type</description>
	<lastBuildDate>Sun, 11 Apr 2010 13:40:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HowTo: Mac OS X Flush DNS Cache</title>
		<link>http://klkl.co.uk/2010/04/11/howto-mac-os-x-flush-dns-cache/</link>
		<comments>http://klkl.co.uk/2010/04/11/howto-mac-os-x-flush-dns-cache/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 13:40:24 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[flush]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=257</guid>
		<description><![CDATA[<p>While playing with my /etc/hosts file for testing a new server setup I needed to flush my DNS cache. As ever, terminal came to my aid.</p>
<h4 style="padding-left: 30px;"><strong>dscacheutil -flushcache</strong></h4>
<p>Now all is well in the world of DNS.</p>
]]></description>
			<content:encoded><![CDATA[<p>While playing with my /etc/hosts file for testing a new server setup I needed to flush my DNS cache. As ever, terminal came to my aid.</p>
<h4 style="padding-left: 30px;"><strong>dscacheutil -flushcache</strong></h4>
<p>Now all is well in the world of DNS.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2010/04/11/howto-mac-os-x-flush-dns-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to MySQL Over SSH</title>
		<link>http://klkl.co.uk/2010/03/21/connecting-to-mysql-over-ssh/</link>
		<comments>http://klkl.co.uk/2010/03/21/connecting-to-mysql-over-ssh/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 14:06:56 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=251</guid>
		<description><![CDATA[<p>The last couple of days I&#8217;ve been thinking about setting up a local copy of my websites on my laptop so that I can develop them before I make them live.</p>
<p>Last night I enabled PHP on the apache server built into Mac OSX on my new laptop and installed MySQL on it. I also set up some bash aliases to rsync commands so that I could synchronise the websites from the server to the laptop and back again.</p>
<p>Now that I had local copies of the sites that are synchronised it was time to turn my attention to synchronising the databases between the server and my local machine. I could of configured the server&#8217;s MySQL installation to allow remote connections, however, I did not want to do this for security reasons. I decided that I would connect to the MySQL server over SSH by forwarding a port on my local machine to a remote port on the server.</p>
<p>First I needed to create an SSH tunnel using the following command</p>
<p style="padding-left: 30px;">ssh -fNg -L 3307:127.0.0.1:3306 server.host.name<span id="more-251"></span></p>
<p>The options for SSH are</p>
<ul>
<li>f
<ul>
<li>Requests SSH to background so that you do not have to keep a terminal connected to the server open</li>
</ul>
</li>
<li>N
<ul>
<li>Does not execute a remote command (useful for just forwarding ports)</li>
</ul>
</li>
<li>g
<ul>
<li>Allows remote hosts to connect to local forwarded ports</li>
</ul>
</li>
<li>L
<ul>
<li>Specifies that a local port (3307) is forwarded to the given host (server.host.name) and port (3306)</li>
</ul>
</li>
</ul>
<p>I created an alias to that command for easy use in future but I&#8217;ll need to make sure the tunnel is active before trying to connect to the remote server.</p>
<p>Next its time to turn our attention to actually connecting to the remote MySQL server.</p>
<p style="padding-left: 30px;">mysql -h 127.0.0.1 -P 3307 -u username -p</p>
<p>The Options:</p>
<ul>
<li>h specifies the host to connect to (must be 127.0.0.1)</li>
<li>P specifies the port to connect to (your locally forwarded port)</li>
<li>u specifies the username to connect with</li>
<li>p will prompt you for your password (&#8211;password=passtext can be used to give the password)</li>
</ul>
<p>Thats if I wanted to connect to the remote MySQL server on the command line. The latest phpmyadmin has an option for syncronizing databases in which case you can put the above details and it will compare the databases and allow you to choose what to synchronise.</p>
]]></description>
			<content:encoded><![CDATA[<p>The last couple of days I&#8217;ve been thinking about setting up a local copy of my websites on my laptop so that I can develop them before I make them live.</p>
<p>Last night I enabled PHP on the apache server built into Mac OSX on my new laptop and installed MySQL on it. I also set up some bash aliases to rsync commands so that I could synchronise the websites from the server to the laptop and back again.</p>
<p>Now that I had local copies of the sites that are synchronised it was time to turn my attention to synchronising the databases between the server and my local machine. I could of configured the server&#8217;s MySQL installation to allow remote connections, however, I did not want to do this for security reasons. I decided that I would connect to the MySQL server over SSH by forwarding a port on my local machine to a remote port on the server.</p>
<p>First I needed to create an SSH tunnel using the following command</p>
<p style="padding-left: 30px;">ssh -fNg -L 3307:127.0.0.1:3306 server.host.name<span id="more-251"></span></p>
<p>The options for SSH are</p>
<ul>
<li>f
<ul>
<li>Requests SSH to background so that you do not have to keep a terminal connected to the server open</li>
</ul>
</li>
<li>N
<ul>
<li>Does not execute a remote command (useful for just forwarding ports)</li>
</ul>
</li>
<li>g
<ul>
<li>Allows remote hosts to connect to local forwarded ports</li>
</ul>
</li>
<li>L
<ul>
<li>Specifies that a local port (3307) is forwarded to the given host (server.host.name) and port (3306)</li>
</ul>
</li>
</ul>
<p>I created an alias to that command for easy use in future but I&#8217;ll need to make sure the tunnel is active before trying to connect to the remote server.</p>
<p>Next its time to turn our attention to actually connecting to the remote MySQL server.</p>
<p style="padding-left: 30px;">mysql -h 127.0.0.1 -P 3307 -u username -p</p>
<p>The Options:</p>
<ul>
<li>h specifies the host to connect to (must be 127.0.0.1)</li>
<li>P specifies the port to connect to (your locally forwarded port)</li>
<li>u specifies the username to connect with</li>
<li>p will prompt you for your password (&#8211;password=passtext can be used to give the password)</li>
</ul>
<p>Thats if I wanted to connect to the remote MySQL server on the command line. The latest phpmyadmin has an option for syncronizing databases in which case you can put the above details and it will compare the databases and allow you to choose what to synchronise.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2010/03/21/connecting-to-mysql-over-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using mysqladmin to Change the root Password</title>
		<link>http://klkl.co.uk/2010/03/20/using-mysqladmin-to-change-the-root-password/</link>
		<comments>http://klkl.co.uk/2010/03/20/using-mysqladmin-to-change-the-root-password/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 22:08:46 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=245</guid>
		<description><![CDATA[<p>If you have never set a root password for MySQL, the server does not require a password at all for connecting as root.</p>
<p>To setup root password for first time, use mysqladmin command at shell prompt as follows:</p>
<p style="padding-left: 30px;">$ mysqladmin -u root password NEWPASSWORD</p>
<p>However, if you want to change (or update) a root password, then you need to use following command</p>
<p style="padding-left: 30px;">$ mysqladmin -u root -p&#8217;oldpassword&#8217; password newpass</p>
]]></description>
			<content:encoded><![CDATA[<p>If you have never set a root password for MySQL, the server does not require a password at all for connecting as root.</p>
<p>To setup root password for first time, use mysqladmin command at shell prompt as follows:</p>
<p style="padding-left: 30px;">$ mysqladmin -u root password NEWPASSWORD</p>
<p>However, if you want to change (or update) a root password, then you need to use following command</p>
<p style="padding-left: 30px;">$ mysqladmin -u root -p&#8217;oldpassword&#8217; password newpass</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2010/03/20/using-mysqladmin-to-change-the-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Firewall: Do You Want the Application Vuze.app to Accept Incoming Network Connections</title>
		<link>http://klkl.co.uk/2009/12/22/mac-firewall-do-you-want-the-application-vuze-app-to-accept-incoming-network-connections/</link>
		<comments>http://klkl.co.uk/2009/12/22/mac-firewall-do-you-want-the-application-vuze-app-to-accept-incoming-network-connections/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 16:37:15 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[vuze]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=240</guid>
		<description><![CDATA[<p>Recently I&#8217;ve had a bother with the Mac firewall asking me if I want it to accept incomming network connections every time I open a particular application.</p>
<p>The appropriate setting can be found under:</p>
<p style="padding-left: 30px;"><strong>System Preferences : Personal &gt; Security &gt; Firewall</strong></p>
<p>I have mine configured to &#8220;Set access for specific services and applications&#8221; which normally asks me if I want to allow an application to accept incoming connections<strong> </strong>the first time I run it and that&#8217;s normally the end of it. The trouble comes when you try and update certain applications using <strong>Software Update</strong>. I&#8217;m not exactly sure what causes the problem but for some reason with specific applications the firewall then proceeds to ask you, each time, if you would like it to accept incoming network connections. This you can imagine is superlatively tedious.</p>
<p>The answer though is to just delete the application from you applications folder and reinstall it. The first time you open the freshly installed application it will ask the question and then bug you no more. Then all you have to worry about is not updating it via software update again.</p>
]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve had a bother with the Mac firewall asking me if I want it to accept incomming network connections every time I open a particular application.</p>
<p>The appropriate setting can be found under:</p>
<p style="padding-left: 30px;"><strong>System Preferences : Personal &gt; Security &gt; Firewall</strong></p>
<p>I have mine configured to &#8220;Set access for specific services and applications&#8221; which normally asks me if I want to allow an application to accept incoming connections<strong> </strong>the first time I run it and that&#8217;s normally the end of it. The trouble comes when you try and update certain applications using <strong>Software Update</strong>. I&#8217;m not exactly sure what causes the problem but for some reason with specific applications the firewall then proceeds to ask you, each time, if you would like it to accept incoming network connections. This you can imagine is superlatively tedious.</p>
<p>The answer though is to just delete the application from you applications folder and reinstall it. The first time you open the freshly installed application it will ask the question and then bug you no more. Then all you have to worry about is not updating it via software update again.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/12/22/mac-firewall-do-you-want-the-application-vuze-app-to-accept-incoming-network-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic POP3 &amp; IMAP Connection Testing via Telnet</title>
		<link>http://klkl.co.uk/2009/12/15/basic-pop3-imap-connection-testing-via-telnet/</link>
		<comments>http://klkl.co.uk/2009/12/15/basic-pop3-imap-connection-testing-via-telnet/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 14:16:01 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=237</guid>
		<description><![CDATA[<p><strong>To Test POP3</strong></p>
<p style="padding-left: 30px;">telnet <strong>xxx.xxx.xxx.xxx</strong> 110 (xxx = mailserver)<br />
<span style="color: #008000;">+OK Hello there.</span><br />
user <strong>USERNAME</strong><br />
<span style="color: #008000;">+OK Password required.</span><br />
pass <strong>PASSWORD<br />
</strong><span style="color: #008000;">+OK logged in.</span><br />
stat<br />
<span style="color: #008000;">+OK (Information about your mail)</span><br />
quit<br />
<span style="color: #008000;">+OK Bye-bye.</span></p>
<p><span id="more-237"></span><strong>To Test IMAP</strong></p>
<p style="padding-left: 30px;">telnet <strong>xxx.xxx.xxx.xxx</strong> 143<br />
<span style="color: #008000;">* OK (welcome message)</span><br />
a login <strong>USERNAME PASSWORD<br />
</strong><span style="color: #008000;">a OK login Ok.</span><br />
a examine inbox<br />
<span style="color: #008000;">(Information about mail)</span><br />
a logout<br />
<span style="color: #008000;">a OK LOGOUT completed</span></p>
<p><strong>To Test POP3 over SSL</strong></p>
<p style="padding-left: 30px;">openssl s_client -connect <strong>xxx.xxx.xxx.xxx</strong>:995<br />
Commands as above</p>
<p><strong>To Test IMAP over SSL</strong></p>
<p style="padding-left: 30px;">openssl s_client -connect <strong>xxx.xxx.xxx.xxx</strong>:993<br />
Commands as above</p>
]]></description>
			<content:encoded><![CDATA[<p><strong>To Test POP3</strong></p>
<p style="padding-left: 30px;">telnet <strong>xxx.xxx.xxx.xxx</strong> 110 (xxx = mailserver)<br />
<span style="color: #008000;">+OK Hello there.</span><br />
user <strong>USERNAME</strong><br />
<span style="color: #008000;">+OK Password required.</span><br />
pass <strong>PASSWORD<br />
</strong><span style="color: #008000;">+OK logged in.</span><br />
stat<br />
<span style="color: #008000;">+OK (Information about your mail)</span><br />
quit<br />
<span style="color: #008000;">+OK Bye-bye.</span></p>
<p><span id="more-237"></span><strong>To Test IMAP</strong></p>
<p style="padding-left: 30px;">telnet <strong>xxx.xxx.xxx.xxx</strong> 143<br />
<span style="color: #008000;">* OK (welcome message)</span><br />
a login <strong>USERNAME PASSWORD<br />
</strong><span style="color: #008000;">a OK login Ok.</span><br />
a examine inbox<br />
<span style="color: #008000;">(Information about mail)</span><br />
a logout<br />
<span style="color: #008000;">a OK LOGOUT completed</span></p>
<p><strong>To Test POP3 over SSL</strong></p>
<p style="padding-left: 30px;">openssl s_client -connect <strong>xxx.xxx.xxx.xxx</strong>:995<br />
Commands as above</p>
<p><strong>To Test IMAP over SSL</strong></p>
<p style="padding-left: 30px;">openssl s_client -connect <strong>xxx.xxx.xxx.xxx</strong>:993<br />
Commands as above</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/12/15/basic-pop3-imap-connection-testing-via-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Epitaph</title>
		<link>http://klkl.co.uk/2009/12/06/epitaph/</link>
		<comments>http://klkl.co.uk/2009/12/06/epitaph/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 15:44:14 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Words]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[epitaph]]></category>
		<category><![CDATA[last words]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=234</guid>
		<description><![CDATA[<h3 style="text-align: center;">Remember now as you pass by,</h3>
<h3 style="text-align: center;">that as you are so once was I.</h3>
<h3 style="text-align: center;">And as I am you too shall be,</h3>
<h3 style="text-align: center;">prepare ye then to follow me.</h3>
]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">Remember now as you pass by,</h3>
<h3 style="text-align: center;">that as you are so once was I.</h3>
<h3 style="text-align: center;">And as I am you too shall be,</h3>
<h3 style="text-align: center;">prepare ye then to follow me.</h3>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/12/06/epitaph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trespassers Will NOT Be Prosecuted</title>
		<link>http://klkl.co.uk/2009/10/09/trespassers-will-not-be-prosecuted/</link>
		<comments>http://klkl.co.uk/2009/10/09/trespassers-will-not-be-prosecuted/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 22:08:27 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Words]]></category>
		<category><![CDATA[civil]]></category>
		<category><![CDATA[criminal]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[QI]]></category>
		<category><![CDATA[trespass]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=223</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="trespassers" src="http://klkl.co.uk/wp-content/uploads/2009/10/FX59.png" alt="trespassers" width="300" height="226" /></p>
<p>Only a breach of criminal law may lead to prosecution. Breach of civil law, however, could well lead to the defendant being sued.</p>
<p>As trespass is a civil offence and not a criminal one then trespassers will most certainly not be prosecuted.</p>
<p>This post is attributed to my brother whom provided the information in the same conversation he tricked me into mis-answering a QI like question. More on that story later.</p>
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="trespassers" src="http://klkl.co.uk/wp-content/uploads/2009/10/FX59.png" alt="trespassers" width="300" height="226" /></p>
<p>Only a breach of criminal law may lead to prosecution. Breach of civil law, however, could well lead to the defendant being sued.</p>
<p>As trespass is a civil offence and not a criminal one then trespassers will most certainly not be prosecuted.</p>
<p>This post is attributed to my brother whom provided the information in the same conversation he tricked me into mis-answering a QI like question. More on that story later.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/10/09/trespassers-will-not-be-prosecuted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the Tilde (~) Character From the Address of Locally Hosted Sites on Mac OS X</title>
		<link>http://klkl.co.uk/2009/07/17/removing-the-tilde-character-from-the-address-of-locally-hosted-sites-on-mac-os-x/</link>
		<comments>http://klkl.co.uk/2009/07/17/removing-the-tilde-character-from-the-address-of-locally-hosted-sites-on-mac-os-x/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 19:08:42 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ln]]></category>
		<category><![CDATA[tilde]]></category>
		<category><![CDATA[webserver]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=194</guid>
		<description><![CDATA[<p>I&#8217;ve been working on some sites locally on my Mac but by default the files are stored in a directory in the individuals user account called Sites and the address you&#8217;ve got to type into your browser is http://localhost/~username/etc&#8230; this annoyed me because I didn&#8217;t want to have to type the tilde character in the address and also that I had to have the files showing in a subdirectories of my user. I couldn&#8217;t be doing with it, I wanted to have addresses like &#8216;http://localhost/subdomain/&#8217; and the solution of course is to use symbolic links.</p>
<p><span id="more-194"></span></p>
<p>The way I did it was to have various directories in the /Users/username/Sites directory as is the normal set up but to have a symbolic link for each project that I wanted to have a better looking URL for so for example if my PHP My Admin was contained in the directory /Users/username/Sites/phpma then I would create a symbolic link to the directory /Library/WebServer/Documents/ using the command&#8230;</p>
<ul>
<li><strong>ln -s /Users/username/Sites/phpma /Library/WebServer/Documents/phpma</strong></li>
</ul>
<p>Et Voila&#8230; I can now use and bookmark a shorter and less visually offensive URL to the sites I&#8217;m working on.</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on some sites locally on my Mac but by default the files are stored in a directory in the individuals user account called Sites and the address you&#8217;ve got to type into your browser is http://localhost/~username/etc&#8230; this annoyed me because I didn&#8217;t want to have to type the tilde character in the address and also that I had to have the files showing in a subdirectories of my user. I couldn&#8217;t be doing with it, I wanted to have addresses like &#8216;http://localhost/subdomain/&#8217; and the solution of course is to use symbolic links.</p>
<p><span id="more-194"></span></p>
<p>The way I did it was to have various directories in the /Users/username/Sites directory as is the normal set up but to have a symbolic link for each project that I wanted to have a better looking URL for so for example if my PHP My Admin was contained in the directory /Users/username/Sites/phpma then I would create a symbolic link to the directory /Library/WebServer/Documents/ using the command&#8230;</p>
<ul>
<li><strong>ln -s /Users/username/Sites/phpma /Library/WebServer/Documents/phpma</strong></li>
</ul>
<p>Et Voila&#8230; I can now use and bookmark a shorter and less visually offensive URL to the sites I&#8217;m working on.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/07/17/removing-the-tilde-character-from-the-address-of-locally-hosted-sites-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If Only I Knew Then&#8230;</title>
		<link>http://klkl.co.uk/2009/06/08/if-only-i-knew-then/</link>
		<comments>http://klkl.co.uk/2009/06/08/if-only-i-knew-then/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 13:58:08 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Words]]></category>
		<category><![CDATA[attitude]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[paradox]]></category>
		<category><![CDATA[phrase]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=181</guid>
		<description><![CDATA[<p>&#8230;what I know now!</p>
<p>Today I&#8217;ve been having a conversation with my mother and we were talking about relationships and personality. We&#8217;re both of the opinion that its futile to attempt to change yourself in order to please someone else. If only I knew then, what I know now cropped up.</p>
<p>A paradox. The epiphany can never be true. I find in conversation that this phrase usually refers to attitudes and not knowledge. I have now the attitude I do only because of the experiences between then and now so it becomes impossible to ever have the vogue attitude without the requisite experience.</p>
<p>Jase</p>
]]></description>
			<content:encoded><![CDATA[<p>&#8230;what I know now!</p>
<p>Today I&#8217;ve been having a conversation with my mother and we were talking about relationships and personality. We&#8217;re both of the opinion that its futile to attempt to change yourself in order to please someone else. If only I knew then, what I know now cropped up.</p>
<p>A paradox. The epiphany can never be true. I find in conversation that this phrase usually refers to attitudes and not knowledge. I have now the attitude I do only because of the experiences between then and now so it becomes impossible to ever have the vogue attitude without the requisite experience.</p>
<p>Jase</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/06/08/if-only-i-knew-then/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poetry</title>
		<link>http://klkl.co.uk/2009/05/23/poetry/</link>
		<comments>http://klkl.co.uk/2009/05/23/poetry/#comments</comments>
		<pubDate>Sat, 23 May 2009 17:43:27 +0000</pubDate>
		<dc:creator>klkl</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Words]]></category>
		<category><![CDATA[desire]]></category>
		<category><![CDATA[dreams]]></category>
		<category><![CDATA[emotions]]></category>
		<category><![CDATA[poetry]]></category>

		<guid isPermaLink="false">http://klkl.co.uk/?p=179</guid>
		<description><![CDATA[<p>I want to hold you close to me.<br/>I want to feel your warmth embrace me.</p>
<p>I want to feel your heart beat.<br/>I want to smell your scent, sweet.</p>
<p>Your touch is all I need.<br/>Your attention my only greed.</p>
<p>When all I wanted was for you to stay.<br/>It wasn&#8217;t right, now, you&#8217;ve gone astray.</p>
]]></description>
			<content:encoded><![CDATA[<p>I want to hold you close to me.<br/>I want to feel your warmth embrace me.</p>
<p>I want to feel your heart beat.<br/>I want to smell your scent, sweet.</p>
<p>Your touch is all I need.<br/>Your attention my only greed.</p>
<p>When all I wanted was for you to stay.<br/>It wasn&#8217;t right, now, you&#8217;ve gone astray.</p>
]]></content:encoded>
			<wfw:commentRss>http://klkl.co.uk/2009/05/23/poetry/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
