<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>LINICKX.com</title><link>https://www.linickx.com/</link><description></description><lastBuildDate>Sun, 13 Oct 2013 19:44:00 +0100</lastBuildDate><item><title>No Comment</title><link>https://www.linickx.com/no-comment</link><description>&lt;p&gt;Linickx.com has been using comments on WordPress for over 5 years now
and over that time the quality and quantity of comments has varied. In
the last six+ months comments have become mostly spam. To reduce &lt;a href="http://s.linickx.com"&gt;the
amount of outages&lt;/a&gt; caused by spam, scrapers and
other internet-rubbish the comment forms and previous comments have been
removed.&lt;/p&gt;
&lt;p&gt;Intelligent humans are still able to use
&lt;a href="http://twitter.com/linickx"&gt;twitter&lt;/a&gt; or the &lt;a href="https://www.linickx.com/contact"&gt;contact
form&lt;/a&gt; to get in touch :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sun, 13 Oct 2013 19:44:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2013-10-13:no-comment</guid><category>Announcements</category><category>comments</category><category>linickx</category></item><item><title>ipv6 ready</title><link>https://www.linickx.com/ipv6-ready</link><description>&lt;p&gt;I've been &lt;a href="https://twitter.com/linickx/status/249431757433217024"&gt;testing the AAAA
records&lt;/a&gt; for
linickx.com, I'm supprised how easy it was!&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.rackspace.co.uk/cloud-servers/"&gt;cloud servers over at
rackspace&lt;/a&gt; (&lt;em&gt;where this is
hosted&lt;/em&gt;) come ipv6 ready - i.e. with a native ipv6 address attached to
the internet. I'm using CentOS 6 so your experience may vary :)&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.linickx.com/files/2012/10/CloudServer.png"&gt;&lt;img alt="" src="https://www.linickx.com/files/2012/10/CloudServer-300x166.png" title="CloudServer" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;ifconfig&lt;/code&gt; showed the IP address in my network stack, a good start! The
first thing is that there are two &lt;code&gt;iptables&lt;/code&gt; config files
&lt;code&gt;/etc/sysconfig/iptables&lt;/code&gt; &amp;amp; &lt;code&gt;/etc/sysconfig/ip6tables&lt;/code&gt;, it should be
obvious which is which! I'm not sure I agree with Redhat's decision to
have two config files but they are configured the same it is only the
IPs that need to be different, therefore I can have the same statement
in each to open up access to apache:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;By default &lt;code&gt;--dport 22&lt;/code&gt; (&lt;em&gt;SSH&lt;/em&gt;) is open on a RHEL/CentOS box, therefore
I recommend you change that as appropriate - yes you need to think about
ACLs on IPv6 as well as IPv4!&lt;/p&gt;
&lt;p&gt;Since there are two config files for iptables there are also two
&lt;em&gt;services&lt;/em&gt;, you will need to restart the service to load up a new
config:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[nick@toad ~]$sudo service ip6tables restart
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The apache config file is &lt;code&gt;/etc/httpd/conf/httpd.conf&lt;/code&gt;, by default there
is a &lt;code&gt;Listen 80&lt;/code&gt; statement, assuming you haven't changed that apache
should be already listening on ipv6 port 80!&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[nick@toad ~]$ sudo netstat -nap --inet6 | grep 80
tcp        0      0 :::80                       :::*                        LISTEN      6878/httpd          
[nick@toad ~]$
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;What happens now when you hit up your server will happen depend now on
your config, check you &lt;code&gt;VirtualHost&lt;/code&gt; statement, if you have an IPv4
address you want to remove it, so you have something like:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;VirtualHost *:80&amp;gt;
  ServerName localhost
  ServerAdmin root@localhost
  DocumentRoot /var/www/html
&amp;lt;/VirtualHost&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you use a &lt;code&gt;NameVirtualHost *:80&lt;/code&gt; then your &lt;code&gt;ServerName&lt;/code&gt; statements
will start working when you published AAAA records.&lt;/p&gt;
&lt;p&gt;To publish an AAAA record use whatever method you use for ipv4 A
records, they're the same thing :) ... I used &lt;a href="https://github.com/linickx/rsdns"&gt;my rsdns
util&lt;/a&gt; ... kick of a test and watch
your access log, all things being equal you should see ipv6 source
addresses!&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.linickx.com/files/2012/10/ipv6_ready.png"&gt;&lt;img alt="" src="https://www.linickx.com/files/2012/10/ipv6_ready-300x95.png" title="ipv6_ready" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;...OK, I have assumed you have an ipv6 source to test with; the quickest
method is &lt;a href="http://ipv6-test.com/validate.php"&gt;http://ipv6-test.com/validate.php&lt;/a&gt;, the more involved method
is to setup a 6in4 tunnel with
&lt;a href="http://www.tunnelbroker.net/"&gt;tunnelbroker.net&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If it all works you can get yourself a cool badge like this one!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://ipv6-test.com/validate.php?url=https://www.linickx.com"&gt;&lt;img alt="ipv6
ready" src="http://ipv6-test.com/button-ipv6-small.png" title="ipv6 ready" /&gt;&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sat, 13 Oct 2012 16:05:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2012-10-13:ipv6-ready</guid><category>apache</category><category>ipv6</category><category>linickx</category><category>Linux</category></item><item><title>Test Facebook post from linickx.com (WordPress)</title><link>https://www.linickx.com/test-facebook-post-from-linickx-com-wordpress</link><description>&lt;p&gt;&lt;a href="https://www.linickx.com/files/2012/06/facebook-linickx-banner.png"&gt;&lt;img alt="" src="https://www.linickx.com/files/2012/06/facebook-linickx-banner.png" title="facebook-linickx-banner" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A while back facebook disabled RSS importing of my linickx.com posts
which has resulted in &lt;a href="http://www.facebook.com/nick.bettison"&gt;my facebook
timeline&lt;/a&gt; being very empty.&lt;/p&gt;
&lt;p&gt;It's taken them a while, but facebook appear to have got with the
program and released &lt;a href="http://wordpress.org/extend/plugins/facebook"&gt;an official wordpress
plugin&lt;/a&gt;... nice work guys!&lt;/p&gt;
&lt;p&gt;This is a test post to see if I have it setup correctly... assuming it
works my friends will starting seeing a bit more linickx'y things :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Wed, 13 Jun 2012 14:58:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2012-06-13:test-facebook-post-from-linickx-com-wordpress</guid><category>Blog</category><category>facebook</category><category>linickx</category><category>WordPress</category></item><item><title>Speed, I am Speed</title><link>https://www.linickx.com/speed-i-am-speed</link><description>&lt;p&gt;Recently I've been focusing on getting linickx.com not only available,
but snappy too!&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://haproxy.1wt.eu/"&gt;HA Proxy&lt;/a&gt; distributes the load across two
    &lt;a href="http://www.rackspace.com/cloud/cloud_hosting_products/servers/"&gt;cloud
    servers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.varnish-cache.org"&gt;Varnish&lt;/a&gt; Caches have a hit rate of
    between 30% &amp;amp; 49%&lt;/li&gt;
&lt;li&gt;&lt;a href="https://wordpress.org/extend/plugins/wp-super-cache/"&gt;WP Super
    Cache&lt;/a&gt; serves
    up static files to Varnish&lt;/li&gt;
&lt;li&gt;&lt;a href="https://wordpress.org/extend/plugins/hyperdb/"&gt;HypderDB&lt;/a&gt;
    distributes MySQL Requests across my two servers&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;My next step is to get some
&lt;a href="http://en.wikipedia.org/wiki/Minification_(programming)"&gt;minification&lt;/a&gt;
going, either with
&lt;a href="http://code.google.com/speed/page-speed/docs/using_mod.html"&gt;page-speed&lt;/a&gt;
or a &lt;a href="https://wordpress.org/extend/plugins/tags/optimize"&gt;WP-Plugin&lt;/a&gt;..
they seem to be a bit tricky to troubleshoot tho!&lt;/p&gt;
&lt;p&gt;If you are looking to measure your websites performance, I've been using
&lt;a href="http://www.pingdom.com/"&gt;pingdom&lt;/a&gt; for server response times and
&lt;a href="%20http://www.webpagetest.org"&gt;webpagetest.org&lt;/a&gt; for gathering client
load speeds.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Tue, 06 Mar 2012 20:47:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2012-03-06:speed-i-am-speed</guid><category>Blog</category><category>linickx</category><category>Linux</category></item><item><title>A New Style!</title><link>https://www.linickx.com/a-new-style</link><description>&lt;p&gt;&lt;a href="https://www.linickx.com"&gt;&lt;img alt="screenshot" src="https://www.linickx.com/files/2011/08/linickx_v4_blog.png" title="linickx_v4_blog" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;After many happy years my ps3-tribute theme for linickx.com is retiring.
Today &lt;a href="https://www.linickx.com/"&gt;linickx.com&lt;/a&gt; as a new shiny theme, this
version is a bit more self indulgent than the last and returns to having
a &lt;a href="https://www.linickx.com"&gt;home page&lt;/a&gt; with
&lt;a href="https://www.linickx.com/blog"&gt;/blog&lt;/a&gt; type layout rather than a single
entry page.The main aim was to go minimal, I've always admired simple
themes, hopefully this lives up to the dream! This new linickx version 4
themes is based off of
&lt;a href="http://theme.wordpress.com/themes/twentyeleven/"&gt;twentyeleven&lt;/a&gt; and I'm
hoping to leverage some of the new features, I'm already taking
advantage of post types and custom backgounds as I digg deeper they
maybe more to come :)&lt;/p&gt;
&lt;p&gt;I'm in the process of tweaking any bugs, if you find something that
doesn't look right please &lt;a href="https://www.linickx.com/contact"&gt;let me know&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sat, 20 Aug 2011 09:38:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2011-08-20:a-new-style</guid><category>linickx</category><category>theme</category></item><item><title>LINICKX is now a word!</title><link>https://www.linickx.com/linickx-is-now-a-word</link><description>&lt;p&gt;Whilst trying to find something of mine via google I've noticed
something new. LINICKX has now been accepted by google as a word, not
back considering I made it up!&lt;/p&gt;
&lt;p&gt;In the past if you googled for linickx -
&lt;a href="http://www.google.com/search?q=linickx"&gt;www.google.com/search?q=linickx&lt;/a&gt; -
google would suggest "&lt;em&gt;Did you mean links?&lt;/em&gt;", but today I've noticed
that is gone!&lt;/p&gt;
&lt;p&gt;So it appears that my continued internet activity has made an impact on
the wold wide web, Very cool!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Thu, 12 Mar 2009 12:59:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2009-03-12:linickx-is-now-a-word</guid><category>Blog</category><category>Google</category><category>linickx</category></item><item><title>4 Years of Blogging</title><link>https://www.linickx.com/4-years-of-blogging</link><description>&lt;p&gt;&lt;a href="https://www.linickx.com/archives/2/and-the-site-goes-live"&gt;Exactly 4 years ago I posted my 1st WordPress
post.&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sun, 08 Mar 2009 21:34:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2009-03-08:4-years-of-blogging</guid><category>Blog</category><category>blogging</category><category>linickx</category><category>linickx.com</category></item><item><title>Twitterings</title><link>https://www.linickx.com/twitterings</link><description>&lt;p&gt;Those with a sharp eye will have noticed there are two "linickx" twitter
accounts. I've had my main &lt;a href="http://twitter.com/linickx"&gt;@linickx&lt;/a&gt; for
some time, although I don't spam it all the time the &lt;a href="https://www.linickx.com/archives/tag/tweets"&gt;linickx.com tweet
integration&lt;/a&gt; and integration
into facebook/mugshot/add_social_site_here.com is cool.&lt;/p&gt;
&lt;p&gt;Twitter has been in a lot of main stream media recently, and I've
noticed that it appears to be becoming a popular replacement for RSS,
many non-technicals just don't "get" RSS but it appears that twitter is
providing an alternative source of keeping up with news... rather than
just answering the social question "what are you doing?" .&lt;/p&gt;
&lt;p&gt;My blog will always have the most interesting content..... of course the
definition of interesting is up for debate.... but in an attempt to
reach out to those using twitter to follow blogs &amp;amp; news I've created
another twitter account &lt;a href="http://twitter.com/linickxfeed"&gt;@linickxfeed&lt;/a&gt;;
This second account is simply tweeting when I create blog posts... I'm
not sure of the etiquette, should tweets from people be mixed with
&lt;a href="http://twitterfeed.com/"&gt;auto-magic stuff from blogs&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;Hopefully this approach won't cause to much confusion, and If it does
I'll just have to delete the account :) So....&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://twitter.com/linickx"&gt;@linickx&lt;/a&gt; - Are twitterings from Me,
    feel free to follow, direct message, send messages to @linickx and
    anything else you can think of.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://twitter.com/linickxfeed"&gt;@linickxfeed&lt;/a&gt; - Is a BOT, &lt;a href="https://www.linickx.com/feed"&gt;feeding
    from linickx.com&lt;/a&gt; not a person, follow
    only.&lt;/li&gt;
&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Fri, 20 Feb 2009 12:12:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2009-02-20:twitterings</guid><category>Blog</category><category>linickx</category><category>RSS</category><category>twitter</category></item><item><title>LINICKX - PlayStation ID</title><link>https://www.linickx.com/linickx-playstation-id</link><description>&lt;p&gt;&lt;a href="http://uk.playstation.com/psn/profile/linickx/"&gt;&lt;img alt="" src="http://mypsn.eu.playstation.com/psn/profile/linickx.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Mon, 08 Dec 2008 13:22:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-12-08:linickx-playstation-id</guid><category>Blog</category><category>linickx</category><category>Playstation3</category></item><item><title>LINICKX.com New Tag Line</title><link>https://www.linickx.com/linickx-dotcom-new-tag-line</link><description>&lt;p&gt;I've decided it was time for a change, and updated my tagline, my
browser/html site still scrolls thru random rubbish, but those subcribed
to my feed should see my new tag :cool:&lt;/p&gt;
&lt;div class="twittering"&gt;

&lt;div class="tweet"&gt;

Moments of Genius followed by Trash

&lt;/div&gt;

&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sat, 01 Nov 2008 21:05:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-11-01:linickx-dotcom-new-tag-line</guid><category>Blog</category><category>linickx</category></item></channel></rss>