<?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>bryars.eu</title>
	<atom:link href="http://bryars.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://bryars.eu</link>
	<description></description>
	<lastBuildDate>Thu, 02 Sep 2010 19:51:33 +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>How to get rid of GPG NO_PUBKEY errors when doing apt-get update</title>
		<link>http://bryars.eu/2010/09/how-to-get-rid-of-gpg-no_pubkey-errors-when-doing-apt-get/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-get-rid-of-gpg-no_pubkey-errors-when-doing-apt-get</link>
		<comments>http://bryars.eu/2010/09/how-to-get-rid-of-gpg-no_pubkey-errors-when-doing-apt-get/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 20:13:40 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://bryars.eu/?p=32</guid>
		<description><![CDATA[When doing apt-get update you might see a lot of errors like W: GPG error: http://ceph.newdream.net lenny Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY DA4420ED288995C8 W: GPG error: http://download.opensuse.org Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 85753AA5EEFEFDE9 W: GPG [...]]]></description>
			<content:encoded><![CDATA[<p>When doing apt-get update you might see a lot of errors like<br />
<code><br />
W: GPG error: http://ceph.newdream.net lenny Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY DA4420ED288995C8<br />
W: GPG error: http://download.opensuse.org  Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 85753AA5EEFEFDE9<br />
W: GPG error: http://ppa.launchpad.net karmic Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 28577FE31F882273<br />
W: GPG error: http://download.virtualbox.org lenny Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 54422A4B98AB5139<br />
</code></p>
<p>For the best part you should install the apropriate keyrings</p>
<pre>apt-cache search keyring$</pre>
<p>should list most of them, sometimes they dont exist for some third party repositories, so try this one liner, split for (a little) clarity</p>
<pre>
for KEY in `apt-get update 2&gt;&amp;1 |grep NO_PUBKEY|awk  '{print $NF}'`; do
 gpg --keyserver subkeys.pgp.net --recv $KEY; gpg --export --armor $KEY|apt-key add -;
done</pre>
<p>Caveat, this is insecure, but more secure than disabling validation. Please be aware for full security you should validate the key signatures you are importing via private quantumly secured links to the originator obtained at your own cost, etc etc.</p>

<!-- Quick Adsense WordPress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:20px 0 20px 0;text-align:center;">
<script type="text/javascript"><!--
google_ad_client = "pub-2580495672340331";
/* 468x60, created 7/10/10 */
google_ad_slot = "8996068278";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div>]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/09/how-to-get-rid-of-gpg-no_pubkey-errors-when-doing-apt-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to generate an svn-authors-for-git file automatically</title>
		<link>http://bryars.eu/2010/09/how-to-generate-an-svn-authors-for-git-file-automatically/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-generate-an-svn-authors-for-git-file-automatically</link>
		<comments>http://bryars.eu/2010/09/how-to-generate-an-svn-authors-for-git-file-automatically/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 16:18:13 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://bryars.eu/?p=31</guid>
		<description><![CDATA[If you are using git-svn to interoperate or migrate to git from an svn repository it is a bit irritating having your long git svn fetch repeatedly interrupted by unknown users in your svn repo. This bash script one liner will get you started with a template file with every user in it already, just [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using git-svn to interoperate or migrate to git from an svn repository it is a bit irritating having your long git svn fetch repeatedly interrupted by unknown users in your svn repo.</p>
<p>This bash script one liner will get you started with a template file with every user in it already, just tweak their names if you wish.</p>
<pre>

svn log svn://svnserver -q|grep -v -- ---|cut -d\| -f 2|sort|tr -d ' '|uniq|
   xargs -i echo '{} = {} &lt;{}@example.com&gt;' &gt; /pathto/svn-authors-for-git

git config --global --replace-all svn.authorsfile /pathto/svn-authors-for-git
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/09/how-to-generate-an-svn-authors-for-git-file-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Anyone Explain My Gas Bill Power Discrepancy</title>
		<link>http://bryars.eu/2010/08/can-anyone-explain-my-gas-bill-power-discrepancy/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=can-anyone-explain-my-gas-bill-power-discrepancy</link>
		<comments>http://bryars.eu/2010/08/can-anyone-explain-my-gas-bill-power-discrepancy/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 16:11:15 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[gas]]></category>
		<category><![CDATA[power]]></category>

		<guid isPermaLink="false">http://bryars.eu/?p=30</guid>
		<description><![CDATA[I&#8217;ve been trying to figure out how much my gas / heating / showers were costing me, but I&#8217;ve hit a fairly big discrepancy that I can&#8217;t explain. I have a brand new 28kW/h rated boiler, with 98% efficiency rating, and according to the service manual it will consume 28.57kW/h max worth of gas, or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to figure out how much my gas / heating / showers were costing me, but I&#8217;ve hit a fairly big discrepancy that I can&#8217;t explain.</p>
<p>I have a brand new 28kW/h rated boiler, with 98% efficiency rating, and according to the service manual it will consume 28.57kW/h max worth of gas, or 3.02 m^3 per hour.</p>
<p>I have found through measurement of having a 7 minute hot shower that the boiler was running full whack, consuming exactly at the rate claimed by the guide, 3.02 m^3, but this equates according to my bill to be 34 kW/h.</p>
<p>Where is the extra energy going / being wasted?</p>
<table id="tblMain_0" class="tblGenFixed" style="height: 658px;" border="0" cellspacing="0" cellpadding="0" width="357">
<tbody>
<tr>
<td class="s0"><strong>Boiler Stats</strong></td>
<td class="s1"><strong>Value</strong></td>
<td class="s1"><strong>Units</strong></td>
</tr>
<tr>
<td class="s2">Gas Max Flow Rate</td>
<td class="s3">3.02</td>
<td class="s4">m^3/hr</td>
</tr>
<tr>
<td class="s5">Max Heat In:</td>
<td class="s6">28.57</td>
<td class="s7">kW/h</td>
</tr>
<tr>
<td class="s5">Max Heat Out:</td>
<td class="s6">28</td>
<td class="s7">kW/h</td>
</tr>
<tr>
<td class="s8"></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="s5">(Calculated Efficiency)</td>
<td class="s6">98.0049002450122</td>
<td class="s7">%</td>
</tr>
<tr>
<td class="s8"></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="s9" colspan="3"><strong>Meter Readings</strong></td>
<td style="display: none;"></td>
<td style="display: none;"></td>
</tr>
<tr>
<td class="s2">Used</td>
<td class="s3">12.5</td>
<td class="s4">ft^3</td>
</tr>
<tr>
<td class="s5">Duration</td>
<td class="s6">7</td>
<td class="s7">min</td>
</tr>
<tr>
<td class="s8"></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="s5">Metric Conversion</td>
<td class="s6">0.35375</td>
<td class="s7">m^3</td>
</tr>
<tr>
<td class="s5">Flow Rate</td>
<td class="s6">3.03214285714286</td>
<td class="s7">m^3/hr</td>
</tr>
<tr>
<td class="s8"></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="s9" colspan="3"><strong>Gas Qualities / Constants</strong></td>
<td style="display: none;"></td>
<td style="display: none;"></td>
</tr>
<tr>
<td class="s2">Calorific Value</td>
<td class="s3">39.7</td>
<td class="s10"></td>
</tr>
<tr>
<td class="s5">Conversion Factor</td>
<td class="s6">1.02264</td>
<td></td>
</tr>
<tr>
<td class="s5">kW/h / MJ</td>
<td class="s6">3.6</td>
<td></td>
</tr>
</tbody>
</table>
<p>kW/h at Max Flow = Max m^3/h (3.02) * Calorific Value (39.7) * Conversion Factor (1.02264) / kWh per MJ (3.6)</p>
<p>kW/h at Max Flow = 34.0578889333333</p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/08/can-anyone-explain-my-gas-bill-power-discrepancy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Validating and Exploring DNSSEC with dig</title>
		<link>http://bryars.eu/2010/08/validating-and-exploring-dnssec-with-dig/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=validating-and-exploring-dnssec-with-dig</link>
		<comments>http://bryars.eu/2010/08/validating-and-exploring-dnssec-with-dig/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 22:45:36 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[dnssec]]></category>

		<guid isPermaLink="false">http://bryars.eu/?p=28</guid>
		<description><![CDATA[Now that the Root DNS nameservers and .org TLD have both been signed, you can validate DNS server responses are legitimate. In an attempt to learn better how this all hangs together, I thought I&#8217;d first try and validate some requests. My first difficulty was figuring out what the root nameserver key is, what format [...]]]></description>
			<content:encoded><![CDATA[<p>Now that the Root DNS nameservers and .org TLD have both been signed, you can validate DNS server responses are legitimate.</p>
<p>In an attempt to learn better how this all hangs together, I thought I&#8217;d first try and validate some requests.</p>
<p>My first difficulty was figuring out what the root nameserver key is, what format it needs to be in, where you store it, and how to use it with dig to validate. Of course, the keys themselves are stored in DNS, you can query them in the format DIG needs to read them back with the command:</p>
<pre>dig +nocomments +nostats +nocmd +noquestion -t dnskey . &gt; trusted-key.key</pre>
<p>This can be placed in /etc/trusted-key.key if desired for site-wide dig use, or else it will search the current directory for it.</p>
<p>If the file cannot be parsed, dig when you try to use it in dnssec mode will print:</p>
<pre>No trusted keys present
or
;; No trusted key, +sigchase option is disabled
</pre>
<p>To test out a full chain of validation from the root, you can now try to resolve www.isc.org</p>
<pre>dig +topdown +sigchase +multiline -ta www.isc.org

-- snip --

;; OK a DS valids a DNSKEY in the RRset
;; Now verify that this DNSKEY validates the DNSKEY RRset
;; VERIFYING DNSKEY RRset for isc.org. with DNSKEY:12892: success
;; VERIFYING A RRset for www.isc.org. with DNSKEY:7617: success
;; The Answer:
www.isc.org.		600 IN A 149.20.64.42

;; FINISH : we have validate the DNSSEC chain of trust: SUCCESS
</pre>
<p>Hooray, we have validation.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/08/validating-and-exploring-dnssec-with-dig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BitCoin Bugzilla Extension v0.1 Released</title>
		<link>http://bryars.eu/2010/07/bitcoin-bugzilla-extension-v0-1-released/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=bitcoin-bugzilla-extension-v0-1-released</link>
		<comments>http://bryars.eu/2010/07/bitcoin-bugzilla-extension-v0-1-released/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 09:28:24 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[bugzilla]]></category>

		<guid isPermaLink="false">http://bryars.eu/?p=25</guid>
		<description><![CDATA[I was fascinated by the concepts behind BitCoin, one of the things it really needs was trade to give the currency value. So I&#8217;ve started writing a plugin for BugZilla, to allow people to donate bitcoins to various bugs in order to sponsor / vote / show their appreciation for the bug fixes and enhancements. [...]]]></description>
			<content:encoded><![CDATA[<p>I was fascinated by the concepts behind <a href="http://www.bitcoin.org/">BitCoin</a>, one of the things it really needs<br />
was trade to give the currency value. So I&#8217;ve started writing a plugin for BugZilla, to allow people to donate bitcoins to<br />
various bugs in order to sponsor / vote / show their appreciation for the bug fixes and enhancements.</p>
<p>Source/Download: <a href="http://github.com/darkskiez/bitcoinbugzilla/archives/v0.1">http://github.com/darkskiez/bitcoinbugzilla/archives/v0.1</a></p>
<p>GitHub: <a href="http://github.com/darkskiez/bitcoinbugzilla">http://github.com/darkskiez/bitcoinbugzilla</a></p>
<p>Bugtracker: <a href="http://bugzilla.darkskiez.co.uk">http://bugzilla.darkskiez.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/07/bitcoin-bugzilla-extension-v0-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog is now IPv6 Enabled</title>
		<link>http://bryars.eu/2010/07/blog-is-now-ipv6-enabled/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=blog-is-now-ipv6-enabled</link>
		<comments>http://bryars.eu/2010/07/blog-is-now-ipv6-enabled/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 00:00:13 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.bryars.eu/?p=19</guid>
		<description><![CDATA[Although my awesome hosting company dreamhost are not serving up via IPv6 yet, I&#8217;ve IPv6 enabled by blog for them by using apache reverse proxy on my home machine. I configured apache much like: http://linux.yyz.us/ipv6/proxy.html with a few differences 1. I didnt use NameVirtualHost, just put a specific IP in. NameVirtualHosts just feel a bit [...]]]></description>
			<content:encoded><![CDATA[<p>Although my awesome hosting company dreamhost are not serving up via IPv6 yet, I&#8217;ve IPv6 enabled by blog for them by using apache reverse proxy on my home machine.</p>
<p>I configured apache much like: <a href="http://linux.yyz.us/ipv6/proxy.html ">http://linux.yyz.us/ipv6/proxy.html</a> with a few differences</p>
<p>1. I didnt use NameVirtualHost, just put a specific IP in. NameVirtualHosts just feel a bit unnecessary with IPv6, and this way i can point several aliases at the entry without defining them all. This may be considered a small security issue, as other people could point their illegitimate domain names at your site and it would still work and look official.</p>
<p>2. So i didnt have to register all of the aliases, i did not enable ProxyPreserveHost</p>
<p>3. As bryars.eu would resolve to AAAA and A, I didn&#8217;t want Apache to get in a loop and proxy to itself, so i added an alias v4 to ensure v4 only forwarding.</p>
<p>For some reason it was sending 301 redirects until the DNS was all sorted</p>
<pre># Contents of /etc/apache2/sites-available/bryars.eu-proxy
&lt;VirtualHost [2001:470:9272:1::2]&gt;
 ServerName bryars.eu
 CustomLog /var/log/apache2/bryars.eu-proxy.log combined

 ProxyRequests Off
 &lt;proxy http://v4.bryars.eu/*&gt;
 Order deny,allow
 Allow from all
 &lt;/proxy&gt;
 ProxyPass             /       http://v4.bryars.eu/
 ProxyPassReverse      /       http://v4.bryars.eu/
&lt;/VirtualHost&gt;
</pre>
<p>Also added the IP address to my /etc/network/interfaces so it would get allocated when the tunnel came up, by adding the following line to my tunnel interface stanza:</p>
<pre>
up ip addr add 2001:470:9272:1::2/64 dev $IFACE preferred_lft 0
</pre>
<p>The preferred_lft 0 is to mark the ip as deprecated so it doesn&#8217;t get used as the default address for outgoing connections.  For more information see: <a href="http://www.davidc.net/networking/ipv6-source-address-selection-linux">http://www.davidc.net/networking/ipv6-source-address-selection-linux</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/07/blog-is-now-ipv6-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chili Beer</title>
		<link>http://bryars.eu/2010/07/chili-beer/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=chili-beer</link>
		<comments>http://bryars.eu/2010/07/chili-beer/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:42:36 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[chili]]></category>

		<guid isPermaLink="false">http://www.bryars.eu/?p=22</guid>
		<description><![CDATA[With Chillies in! Yum. Where: Byres Road Peckhams Cost: £1.89 Strength: 4.2% Vol Verdict: Better than expected, light lager with subtle and warming chili taste. Small Bonus for screw top, slightly overpriced. 7/10 The first two bottles had only one chili in, this one has two, same strength of chili flavour though it still feels [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.bryars.eu/wp-content/uploads/2010/07/wpid-IMAG0266.jpg" /></p>
<p>With Chillies in! Yum.</p>
<p>Where: Byres Road Peckhams<br />
Cost: £1.89<br />
Strength: 4.2% Vol<br />
Verdict: Better than expected, light lager with subtle and warming chili taste. Small Bonus for screw top, slightly overpriced. 7/10</p>
<p>The first two bottles had only one chili in, this one has two, same strength of chili flavour though it still feels like winning a little prize.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/07/chili-beer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Debian IPv6 Configuration and Lessons Learned</title>
		<link>http://bryars.eu/2010/07/debian-ipv6-configuration-and-lessons-learned/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=debian-ipv6-configuration-and-lessons-learned</link>
		<comments>http://bryars.eu/2010/07/debian-ipv6-configuration-and-lessons-learned/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 23:22:20 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[he.net]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.bryars.eu/?p=16</guid>
		<description><![CDATA[I&#8217;ve had a few issues configuring IPv6 on Debian If due to a misconfiguration a v4tunnel interface you have brought up with ifup has failed, you need to manually delete it before trying again or this annoying error will happen: # ifup somev6tunnel ioctl: No buffer space available # ip tunnel del somev6tunnel # ifup [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a few issues configuring IPv6 on Debian</p>
<p>If due to a misconfiguration a v4tunnel interface you have brought up with ifup has failed, you need to manually delete it before trying again or this annoying error will happen:</p>
<p><code><br />
# ifup somev6tunnel<br />
ioctl: No buffer space available<br />
# ip tunnel del somev6tunnel<br />
# ifup somev6tunnel<br />
#<br />
</code></p>
<p>I was trying to configure a 6to4 tunnel but without specifying a local interface address by using local any endpoint any, but that gives an unhelpful and yet increasingly familiar error message.</p>
<p><code><br />
# ifup 6to4<br />
ioctl: No buffer space available<br />
</code></p>
<p>Linux doesn&#8217;t like both local and remote values unset, so I thought, aha I&#8217;ll just use local any endpoint 192.88.99.1, it appeared to work. I have since realised that it only works for talking to non 6to4 hosts, if I tried to talk to another 6to4 host, it routed the packets through the gateway instead of directly and the return packets were also lost. So, I just specified the local address and it works. </p>
<p>My working 6to4 debian /etc/network/interfaces</p>
<p><code><br />
auto 6to4<br />
iface 6to4 inet6 v4tunnel<br />
      address 2002:561e:XXXX::1 # ipv6calc -I ipv4addr -O ipv6addr -A conv6to4 86.30.XX.XX<br />
      netmask 16<br />
      local 192.168.1.2 # address assigned by wifi router<br />
      endpoint any<br />
      gateway ::192.88.99.1 # 6to4 anycast address<br />
</code></p>
<p>Though its best to use a managed tunnel, like <a href="http://tunnelbroker.net">Hurricane Electrics tunnelbroker.net</a></p>
<p>The is the Debian network interfaces config i used to connect to my tunnelbroker.net ipv6 tunnel, reconfigure the tunnel endpoint dynamically, and also add one of my routed /48 subnets to the interface (so i can use pretty reverse dns addresses from my host).</p>
<p><code><br />
auto he-ipv6<br />
iface he-ipv6 inet6 v4tunnel<br />
     address 2001:470:1f08:xxxx::2<br />
     netmask 64<br />
     endpoint 216.66.80.26<br />
     gateway ::216.66.80.26<br />
     # Docs to generate pass etc from http://ipv4.tunnelbroker.net/ipv4_end.php<br />
     up wget --no-check-certificate -O - 'https://ipv4.tunnelbroker.net/ipv4_end.php?ipv4b=AUTO&#038;pass=9c4db7a186c8xxxxxxxxxxxxxx&#038;user_id=ef2ffab0c775dxxxxxx&#038;tunnel_id=19xxx' 2>/dev/null<br />
     up ip addr add 2001:470:XXXX:1::1/64 dev $IFACE<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/07/debian-ipv6-configuration-and-lessons-learned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barclaycard RFID Exploring</title>
		<link>http://bryars.eu/2010/07/barclaycard-rfid-exploring/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=barclaycard-rfid-exploring</link>
		<comments>http://bryars.eu/2010/07/barclaycard-rfid-exploring/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 22:22:18 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[rfid]]></category>

		<guid isPermaLink="false">http://www.bryars.eu/?p=18</guid>
		<description><![CDATA[Waived my card over my Arduino Powered SM130 RFID reader to see what it would say.. Student Card: Mifare 1K(2) : 2ADEXXXX Barclay Card: Unknown Tag(FF) : 09A1XXXX It&#8217;s compatible with the usual RFID standards to some degree, enough to give the same serial number every time, unlike my passport which randomises its ID each [...]]]></description>
			<content:encoded><![CDATA[<p>Waived my card over my Arduino Powered SM130 RFID reader to see what it would say..</p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.bryars.eu/wp-content/uploads/2010/07/wpid-IMAG0260.jpg" /></p>
<p>Student Card: Mifare 1K(2) : 2ADEXXXX</p>
<p>Barclay Card: Unknown Tag(FF) : 09A1XXXX</p>
<p>It&#8217;s compatible with the usual RFID standards to some degree, enough to give the same serial number every time, unlike my passport which randomises its ID each activation, but not surprisingly it doesn&#8217;t read on my basic reader, probably a more advanced one would get further..</p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/07/barclaycard-rfid-exploring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 Sage Certified</title>
		<link>http://bryars.eu/2010/05/ipv6-sage-certified/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ipv6-sage-certified</link>
		<comments>http://bryars.eu/2010/05/ipv6-sage-certified/#comments</comments>
		<pubDate>Mon, 31 May 2010 13:38:12 +0000</pubDate>
		<dc:creator>darkskiez</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[he.net]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.bryars.eu/?p=15</guid>
		<description><![CDATA[Yay, thanks to their new free DNS service, I have been able to complete Hurricane Electrics IPv6 certification course, and they are sending me a T-Shirt! Highly recommend working your way through their course if this interests you.]]></description>
			<content:encoded><![CDATA[<p>Yay, thanks to their new free DNS service, I have been able to complete Hurricane Electrics IPv6 certification course, and they are sending me a T-Shirt!</p>
<p>Highly recommend working your way through their course if this interests you.</p>
<p><a href="http://ipv6.he.net/certification/scoresheet.php?pass_name=darkskiez" target="_blank"><img src="http://ipv6.he.net/certification/create_badge.php?pass_name=darkskiez&#038;badge=2" width=250 height=194 border=0 alt="IPv6 Certification Badge for darkskiez"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bryars.eu/2010/05/ipv6-sage-certified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
