<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>&gt;_bryanallott.net</title>
	
	<link>http://bryanallott.net/blog</link>
	<description>shifting complexity one bit at a time</description>
	<lastBuildDate>Wed, 28 Jul 2010 18:08:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bryanallottnet" /><feedburner:info uri="bryanallottnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>bryanallottnet</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Jospehus Interactive</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/1fB5MmLfkRk/jospehus-interactive.html</link>
		<comments>http://bryanallott.net/blog/2010/07/jospehus-interactive.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:08:56 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[maths]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=398</guid>
		<description><![CDATA[If you&#8217;re into math puzzles, you have probably come across the Josephus Problem at some point or another. If you enjoyed testing your ability at finding the right spot, there&#8217;s an interactive version (the theme slightly mangled with creative licence). Enjoy!]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re into math puzzles, you have probably come across the <a href="http://en.wikipedia.org/wiki/Josephus_problem">Josephus Problem</a> at some point or another. If you enjoyed testing your ability at finding the right spot, there&#8217;s an i<a href="http://bryanallott.net/puzzles/josephus.html">nteractive version</a> (the theme slightly mangled with creative licence). Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/jospehus-interactive.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/jospehus-interactive.html</feedburner:origLink></item>
		<item>
		<title>Javascript Jasmine</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/3cLSjNGnyIk/javascript-jasmine.html</link>
		<comments>http://bryanallott.net/blog/2010/07/javascript-jasmine.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 09:09:32 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[jasmine]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=392</guid>
		<description><![CDATA[If you know me (or have worked with me) then there&#8217;s one thing you&#8217;ll be quickly become aware of with regards my coding behaviour: tests. I love tests. More importantly, I love meaningful, passing tests that validate my sanity and check my logic in critical areas. And Javascript is no exception. I&#8217;ve run with jsUnit [...]]]></description>
			<content:encoded><![CDATA[<p>If you know me (or have worked with me) then there&#8217;s one thing you&#8217;ll be quickly become aware of with regards my coding behaviour: tests. I love tests. More importantly, I love meaningful, passing tests that validate my sanity and check my logic in critical areas.</p>
<p>And Javascript is no exception. I&#8217;ve run with <a href="http://www.jsunit.net/">jsUnit</a> for quite some time now (because it just worked). Subsequently though, I got my hands dirty with it&#8217;s <del datetime="2010-07-28T08:14:06+00:00">upgraded</del> re-written cousin: <a href="http://pivotal.github.com/jasmine/" title="Simple DOM-less<br />
JavaScript testing framework">Jasmine</a>. There&#8217;s not much I can say about getting going with Jasmine since, to be fair, it really is so simple and well documented on the site already, needless to say:</p>
<p>1. Don&#8217;t Panic<br />
This useful bit of instruction should be mandatory on every new piece of technology and before you take on any new learning. Don&#8217;t you feel better already?</p>
<p>2. Download the archive for standalone javascript projects<br />
The primary folder of interest is the aptly-named lib folder which is, well, the core library.</p>
<p>3. Prepare a test runner<br />
You need a test runner (test harness, if you like) for actually running the tests and a demo has been provided for you in the form of the included SpecRunner.html</p>
<p>4. Write tests<br />
The included &#8216;src&#8217; folder is the sample functionality under test. This is usually your own code. The &#8216;spec&#8217; folder contains sample test code. I say -test- but when you start moving into proving behaviours, -test- seems such a dry word, and so the word -specification- is born, but that may sound too technical and daunting (until you become used to it). The two are, for all intensive purposes the same to the newly initiated, but quite different once you start grokking the subtle differences.</p>
<p>5. Have fun<br />
Now go get on with doing something awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/javascript-jasmine.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/javascript-jasmine.html</feedburner:origLink></item>
		<item>
		<title>Healthy Desk Jockeys</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/iR6jepZOLXw/healthy-desk-jockeys.html</link>
		<comments>http://bryanallott.net/blog/2010/07/healthy-desk-jockeys.html#comments</comments>
		<pubDate>Tue, 27 Jul 2010 20:39:19 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=390</guid>
		<description><![CDATA[Because i code&#8230; and code&#8230; and code&#8230; then code some more (you get the point) i tend to spend a fair amount of time with my fingers on the keyboard, an open LCD monitor staring back at me and worlds of awesomeness (all disguised as code) swirling around me. And then every so once in [...]]]></description>
			<content:encoded><![CDATA[<p>Because i code&#8230; and code&#8230; and code&#8230; then code some more (you get the point) i tend to spend a fair amount of time with my fingers on the keyboard, an open LCD monitor staring back at me and worlds of awesomeness (all disguised as code) swirling around me. And then every so once in a while I&#8217;ll get some fresh air and go do something else &#8220;cool&#8221;.</p>
<p>But for the most part, i sit. Sometimes slouch. Badly.</p>
<p>Then a few years ago i started with regular back pain. I won&#8217;t bore you with the details. We have all back pain somewhere between the thoracic and the lumbar. It happens. And so i tried almost everything to correct my bad posture. Surfing helps keep that back flexed &#8220;the other way&#8221; but you can&#8217;t -always- surf. Ok, so you can. But unless you&#8217;re really really (really really) good or have rich grandparents, you&#8217;re not going to eat nicely (an entirely different problem altogether).</p>
<p>Alexander Technique, sitting on a oversized (and somewhat colorful) swiss ball, taking frequent breaks; all the tips you can throw a Google search at. Even tried changing my desk setup and &#8220;sitting correctly&#8221;. I followed the diagrams and posters on the walls of the physio to the &#8216;T&#8217;. None of it was that practical and most of it interfered with &#8220;me&#8221;. The ball actually made my shoulder/back problem worse.</p>
<p>Then I got a Mac and that all changed. Just kidding. It wasn&#8217;t the Mac <img src='http://bryanallott.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>No, quite accidentally, i came across working out with kettlebells right about the time my brother started working at this gym in cape town: <a href="http://one80.co.za/" title="we don't use machines we create them">one80</a>. Of course he learned a lot working there and he shared his knowledge and as he settled in, i spent some time working out with one80 here and there. The short times that I have spent in their gym inspired me to do more body-weight and kettlebell workouts. The result: no more back pain!</p>
<p>I can code for hours longer&#8230; i can swim way more than i used to&#8230; i feel &#8220;lighter&#8221; on my feet and i&#8217;ve had to do some pretty amazing things around the house. For example; fix a curtain rail from a very awkward angle (which, in a thousand words i won&#8217;t get right in describing) needless to say when my daughter walked into the room and saw me she said: &#8220;Wow, Mommy. What&#8217;s Daddy doing?&#8221; </p>
<p>No to mention the almost-daily heater-goblet-squat up and down two flights of stairs (once in the morning, once at night). Not that easy when you have a baby-gate to navigate and the gas bottle is full. And of course, playtime is so much more fun when you can squat, press and launch a 13kg toddler for 20 quick reps.</p>
<p>So, yes. If you just know you need to get back in shape -even if it&#8217;s just so you can code for longer or survive behind the keyboard for those extra hours- turn your life around, <a href="http://one80.co.za/">one80</a> degrees.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/healthy-desk-jockeys.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/healthy-desk-jockeys.html</feedburner:origLink></item>
		<item>
		<title>Saffer Startups</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/ANgwdAdztFY/saffer-startups.html</link>
		<comments>http://bryanallott.net/blog/2010/07/saffer-startups.html#comments</comments>
		<pubDate>Tue, 27 Jul 2010 20:11:59 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=388</guid>
		<description><![CDATA[I guess a lot of folk don&#8217;t realise just how many creative and energetic startups are born in South Africa (there&#8217;s a lot in that for another story some day, bit not today) and one of the more recent ones is personera.com. Aside from the energy these guys have been feeding off and into the [...]]]></description>
			<content:encoded><![CDATA[<p>I guess a lot of folk don&#8217;t realise just how many creative and energetic startups are born in South Africa (there&#8217;s a lot in that for another story some day, bit not today) and one of the more recent ones is <a href="http://personera.com" title="your life in print. person. era. get it?">personera.com</a>. </p>
<p>Aside from the energy these guys have been feeding off and into the world wide social web, the brainchild Sheraan Amod certainly seems to have done all the right homework. Particularly useful was this quick piece on <a href="http://www.gottaquirk.com/2010/03/15/marketing-innovation-for-startups-three-strategies-to-take-on-big-challenges/" title="hire. launch. acquire.">marketing innovation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/saffer-startups.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/saffer-startups.html</feedburner:origLink></item>
		<item>
		<title>Building For BlackBerry</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/2BLWLqU9Odk/building-for-blackberry.html</link>
		<comments>http://bryanallott.net/blog/2010/07/building-for-blackberry.html#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:22:57 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[blackberry]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=386</guid>
		<description><![CDATA[A suggestion for all budding (and current) BlackBerry developers out there. When you purchase your signing keys, be sure to NOT use your regular email address. Instead create an account like bbsigning@youremaildomain.com or rim@youremaildomain.com to receive all the automated emails you get when signing. For example, on one project, I have a build process that [...]]]></description>
			<content:encoded><![CDATA[<p>A suggestion for all budding (and current) BlackBerry developers out there. When you purchase your signing keys, be sure to NOT use your regular email address. Instead create an account like bbsigning@youremaildomain.com or rim@youremaildomain.com to receive all the automated emails you get when signing.</p>
<p>For example, on one project, I have a build process that signs about 30 .cod files per build. But each build has specific builds for different OS levels, as well as different builds for testing, staging and production.</p>
<p>Add that up and you get 30 .cod files x 3 (one for each cert) = 90 x 3 (for each build type) = 270.<br />
270 x 2 (for each platform) = 540. 540 x 4 (one for each white label) = 2160 emails!</p>
<p>For a daily build&#8230; and then adhoc builds. And not including any other projects. And you cannot get rid of the automated emailing. Standard RIM policy.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/building-for-blackberry.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/building-for-blackberry.html</feedburner:origLink></item>
		<item>
		<title>Through The Magnifying Glass</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/Y8m0hga4dig/through-the-magnifying-glass.html</link>
		<comments>http://bryanallott.net/blog/2010/07/through-the-magnifying-glass.html#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:14:14 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=384</guid>
		<description><![CDATA[First off, thank to readers who gave me feedback on this site/blog. The single most important issue raised was readability: &#8220;Bryan, my eyes hurt. Please increase the font size.&#8221; Sorry. Being a pure techie-hacker, I get used to reading print so small (and hence writing) that it breaks every law in the how-to-improve-your-website-guide (pick one [...]]]></description>
			<content:encoded><![CDATA[<p>First off, thank to readers who gave me feedback on this site/blog. The single most important issue raised was readability: &#8220;Bryan, my eyes hurt. Please increase the font size.&#8221; Sorry.</p>
<p>Being a pure techie-hacker, I get used to reading print so small (and hence writing) that it breaks every law in the how-to-improve-your-website-guide (pick one of a dozen or so). Funny enough, I spot this trend quite quickly in all my clients&#8217; work (but ignore it so close to 127.0.0.1).</p>
<p>That said, the font has improved; things are a little clearer and easier to read. This is good.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/through-the-magnifying-glass.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/through-the-magnifying-glass.html</feedburner:origLink></item>
		<item>
		<title>When It Doesn’t Work</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/yybxN2qhmao/when-it-doesnt-work.html</link>
		<comments>http://bryanallott.net/blog/2010/07/when-it-doesnt-work.html#comments</comments>
		<pubDate>Thu, 22 Jul 2010 21:03:53 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=380</guid>
		<description><![CDATA[So, I&#8217;ve recently come into &#8220;loanership&#8221; of a brand new box for a specific project and it was loaded with my most favourite of favourite operating systems (not). Microsoft Windows 7 Ultimate 64-bit edition. Wow. After rolling that out my mouth, I have installed on it (stock standard next, i agree, next, next, finish) Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve recently come into &#8220;loanership&#8221; of a brand new box for a specific project and it was loaded with my most favourite of favourite operating systems (not). Microsoft Windows 7 Ultimate 64-bit edition. Wow. After rolling that out my mouth, I have installed on it (stock standard next, i agree, next, next, finish) Microsoft Sql Server 2008 R2 64-bit edition. Wow again. There&#8217;s a lot of editions and bits flying around here quite casually.</p>
<p>And to boot, there&#8217;s Microsoft Office Professional Plus 2010. Oooo. The joy.</p>
<p>First development-related task on shiny hardware (with an OS that is probably a tribute to <a href="http://en.wikipedia.org/wiki/Timothy_Leary" title="Turn on, tune in, drop out">Timothy Leary</a>) is &#8230; wait for it &#8230; really complicated &#8230; so i need you to focus now &#8230; import a flat file (a CSV or comma-seperated values file) into a brand spanking new database as a table. Without writing a single line of code and using all the tools provided by all the spunky long-winded monikers. Tricky? Apparently.</p>
<div id="attachment_381" class="wp-caption aligncenter" style="width: 310px"><a href="http://bryanallott.net/blog/wp-content/uploads/2010/07/abort-retry-ignore.png"><img src="http://bryanallott.net/blog/wp-content/uploads/2010/07/abort-retry-ignore-300x284.png" alt="" title="abort-retry-ignore" width="300" height="284" class="size-medium wp-image-381" /></a><p class="wp-caption-text">You Kidding?</p></div>
<p>The real joy came in when clicked retry. Phooof!</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/when-it-doesnt-work.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/when-it-doesnt-work.html</feedburner:origLink></item>
		<item>
		<title>bodyCircuit Goes Touch</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/QVfIFqKF3BM/bodycircuit-goes-touch.html</link>
		<comments>http://bryanallott.net/blog/2010/07/bodycircuit-goes-touch.html#comments</comments>
		<pubDate>Fri, 16 Jul 2010 14:35:32 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=373</guid>
		<description><![CDATA[Having had a look at jQTouch, it was time to see what you can and cannot do with the framework. First guinea in line was the popular online &#62;_bodyCircuit tool created for iTrainedToday.com did you?. A screenshot is worth a thousand words so here are a thousand words: So this is what it looks like [...]]]></description>
			<content:encoded><![CDATA[<p>Having had a look at <a href="http://jqtouch.com" title="jQuery plugin for the iPhone html application">jQTouch</a>, it was time to see what you can and cannot do with the framework. </p>
<p>First guinea in line was the popular online <a href="http://itrainedtoday.com/bodyCircuit/touch.html" title="online circuit timing utility">&gt;_bodyCircuit</a> tool created for <a href="http://iTrainedToday.com" title="simplified online training tools">iTrainedToday.com</a> <em>did you?</em>.</p>
<p>A screenshot is worth a thousand words so here are a thousand words:<br/></p>
<div id="attachment_374" class="wp-caption aligncenter" style="width: 296px"><a href="http://bryanallott.net/blog/wp-content/uploads/2010/07/bc-start.png"><img src="http://bryanallott.net/blog/wp-content/uploads/2010/07/bc-start-286x300.png" alt="" title="bodyCircuit landing page" width="286" height="300" class="size-medium wp-image-374" /></a><p class="wp-caption-text">Get Going with bodyCircuit</p></div>
<p>So this is what it looks like in Safari (don&#8217;t bother with any other browsers really since it&#8217;s not really targeted for anything else than the Apple family). Pretty neat. And in action:<br/></p>
<div id="attachment_375" class="wp-caption aligncenter" style="width: 300px"><a href="http://bryanallott.net/blog/wp-content/uploads/2010/07/bc-go.png"><img src="http://bryanallott.net/blog/wp-content/uploads/2010/07/bc-go-290x300.png" alt="" title="Getting Busy with bodyCircuit" width="290" height="300" class="size-medium wp-image-375" /></a><p class="wp-caption-text">Huff! Puff! Don't give up!</p></div>
<p>And it ticks along nicely, better ui framework and better looking than it&#8217;s original cousin :p</p>
<p>So, naturally, how does it function on the smaller devices? Well, it looks pretty much the same on the iPod Touch and I did get it to tick over smoothly&#8230; but&#8230;. some intermittent success. Will have to look more into that.</p>
<p>Otherwise, it&#8217;s <a href="http://itrainedtoday.com/bodyCircuit/touch.html" title="HTML/JS timing application for the iPhone">all yours to test-drive here</a>.</p>
<p>UPDATE: just finished testing it on my new android browser (which i&#8217;m also busy writing from at the moment) and it works super nicely <img src='http://bryanallott.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/bodycircuit-goes-touch.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/bodycircuit-goes-touch.html</feedburner:origLink></item>
		<item>
		<title>Fanatical Idiocracy Froths Again</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/vilPXEhVVDU/fanatical-idiocracy-froths-again.html</link>
		<comments>http://bryanallott.net/blog/2010/07/fanatical-idiocracy-froths-again.html#comments</comments>
		<pubDate>Thu, 15 Jul 2010 12:30:39 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[copyright]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=367</guid>
		<description><![CDATA[Why? We spent a lot of money, time, energy dealing with an international body responsible for managing the game played with a round ball while they were in our country for the tournament where a whole bunch of international teams came and played against each other; they call it the &#8220;beautiful game&#8221; and it was [...]]]></description>
			<content:encoded><![CDATA[<p>Why? We spent a lot of money, time, energy dealing with an international body responsible for managing the game played with a round ball while they were in our country for the tournament where a whole bunch of international teams came and played against each other; they call it the &#8220;beautiful game&#8221; and it was played on our doorstep. Make no mistake, the event for us was phenomenal for a whole bunch of completely unrelated reasons. Sure, for the footy fans it <em>was</em> about footy. For the rest of us who puzzled over a round ball that bounces straight- it was something else magic entirely. </p>
<p>But it came with a price. Bans on anything and everything related to world cup, 2010 = <a href="http://www.mg.co.za/article/2010-03-19-kulula-to-revisit-world-cup-ad-campaign" title="really?">protecting copyright$</a>. And some <a href="http://www.iol.co.za/index.php?art_id=vn20100319042832300C676642" title="cheap flights during the you know what">clever advertising</a> scored even bigger when they were challenged and forced to come up with something <del datetime="2010-07-15T12:15:07+00:00">else</del> better.</p>
<p>But it&#8217;s not just a souf efrican thing:</p>
<div id="attachment_368" class="wp-caption alignleft" style="width: 310px"><a href="http://bryanallott.net/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-15-at-2.13.36-PM.png"><img src="http://bryanallott.net/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-15-at-2.13.36-PM-300x44.png" alt="" title="Copyright Violation?" width="300" height="44" class="size-medium wp-image-368" /></a><p class="wp-caption-text">Blocked</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/fanatical-idiocracy-froths-again.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/fanatical-idiocracy-froths-again.html</feedburner:origLink></item>
		<item>
		<title>Safe Browsing</title>
		<link>http://feedproxy.google.com/~r/bryanallottnet/~3/dKN-DPorlrY/safe-browsing.html</link>
		<comments>http://bryanallott.net/blog/2010/07/safe-browsing.html#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:22:01 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://bryanallott.net/blog/?p=365</guid>
		<description><![CDATA[I keep a log on my router to track network activity originating from within my firewall -a healthy dose of paranoia combined with the fact that there still is one virtual PC running Windows on my network. And so from time to time I check the logs, not so much the detail but the quantity. [...]]]></description>
			<content:encoded><![CDATA[<p>I keep a log on my <a href="http://kb.netgear.com/app/products/model/a_id/2324" title="DG834Gv2 54 Mbps Wireless ADSL Firewall Modem">router</a> to track network activity originating from within my firewall -a healthy dose of paranoia combined with the fact that there still is one virtual PC running Windows on my network. And so from time to time I check the logs, not so much the detail but the quantity. All good. Today, on a fresh log, before I really started doing anything I did notice one odd detail: TCP Packet &#8211; Source:192.168.10.8,50096 Destination:209.85.227.109,25 &#8211; [SMTP rule match]</p>
<p>Odd because I hadn&#8217;t sent out any emails yet. Odd because that&#8217;s an unfamiliar IP address (even I did send out emails). Odd because I send emails over SSL (a different port entirely). And so the trace went:</p>
<p>* A quick check on the IP revealed the domain: 1e100.net and <a href="http://geobytes.com/%5C/Default.htm" title="IP Address Locator Tool">location</a> Los Angeles. Definitely nothing I&#8217;m associated to. I think.<br />
* A Google search (oh the irony) on 1e100.net and it turns out, this is a Google address.<br />
* Your browser sends out &#8220;relatively&#8221; anonymous data to Google about your browsing habits- at least something like that: <a href="http://www.google.com/intl/en_us/privacy_browsing.html" title="Google Safe Browsing Policies for Firefox 3.0, Google Chrome, and Apple Safari">Safe Browsing Policy</a></p>
<p>Back to <a href="http://en.wikipedia.org/wiki/DEFCON" title="a defense readiness condition measure closely related to paranoid levels">DEFCON 4</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryanallott.net/blog/2010/07/safe-browsing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bryanallott.net/blog/2010/07/safe-browsing.html</feedburner:origLink></item>
	</channel>
</rss>
