<?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>Neosource Web Development &#38; Software</title>
	<atom:link href="http://www.neosource.com.au/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neosource.com.au/blog</link>
	<description>My thoughts on technology and other random things</description>
	<lastBuildDate>Thu, 09 Feb 2012 08:12:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Why &#8216;yum search&#8217; returns &#8220;Error: file is encrypted or is not a database&#8221; [CentOS 6.2]</title>
		<link>http://www.neosource.com.au/blog/2012/02/why-yum-search-returns-error-file-is-encrypted-or-is-not-a-database-centos-6-2/</link>
		<comments>http://www.neosource.com.au/blog/2012/02/why-yum-search-returns-error-file-is-encrypted-or-is-not-a-database-centos-6-2/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 08:12:31 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Troubleshooting Errors]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=97</guid>
		<description><![CDATA[I recently installed CentOS 6.2 on my development server and it was running fine up until today when I tried looking for a package via the yum command line: # yum search host Error: file is encrypted or is not a database The error message did not get any more descriptive even after enabling debug [...]]]></description>
			<content:encoded><![CDATA[<p>I recently installed CentOS 6.2 on my development server and it was running fine up until today when I tried looking for a package via the yum command line:</p>
<blockquote><p># yum search host</p>
<p>Error: file is encrypted or is not a database</p></blockquote>
<p>The error message did not get any more descriptive even after enabling debug output and increasing verbosity. I managed to figure out which repo / file was causing the error after debugging the yum python scripts.</p>
<p>On my system, the file that was causing the error was from the EPEL repository located in <strong>/var/cache/yum/i386/6/epel/gen/pkgtags.sqlite</strong>. I checked copies on a few different mirrors, and the contents were the same as the source <a href="http://dl.fedoraproject.org/pub/epel/6/i386/repodata/pkgtags.sqlite.gz">http://dl.fedoraproject.org/pub/epel/6/i386/repodata/pkgtags.sqlite.gz</a>.</p>
<p>Here&#8217;s what the file contained:</p>
<blockquote><p># cat /var/cache/yum/i386/6/epel/gen/pkgtags.sqlite</p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;503 Service Unavailable&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt;Error 503 Service Unavailable&lt;/h1&gt;<br />
&lt;p&gt;Service Unavailable&lt;/p&gt;<br />
&lt;h3&gt;Guru Meditation:&lt;/h3&gt;<br />
&lt;p&gt;XID: 1920246608&lt;/p&gt;<br />
&lt;hr&gt;<br />
&lt;p&gt;Varnish cache server&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p>Seems that the repository server was having some issues. I reported it to #centos, #epel, #fedora, #fedora-admin at irc.freenode.net, so one of the admins should fix it soon hopefully.</p>
<p>Anyhow I hope this explanation helps anyone else trying to figure out the same error message.</p>
<p>It would be nice if yum was more descriptive with its errors and indicated which repo / file was causing the issue to save people scratching their heads figuring out where the problem is.</p>
<p>If this happens to you, you can disable the corrupt repo by using <strong>yum &#8211;disablerepo=epel</strong>. Replace &#8220;epel&#8221; with the repo you wish to disable.</p>
<p>For those that wish to figure out which repo/file is causing the above error message, edit the file <strong>/usr/lib/python2.6/site-packages/yum/pkgtag_db.py</strong> (requires root privileges). Insert &#8220;<strong>print repoid, sqlite_file</strong>&#8221; at line 50.</p>
<blockquote><p>def __init__(self, repoid, sqlite_file):</p>
<p><strong> print repoid, sqlite_file</strong></p></blockquote>
<p>When you run &#8220;yum search package&#8221;, you&#8217;ll now see:</p>
<blockquote><p># yum search host<br />
Loaded plugins: fastestmirror, presto, priorities<br />
Loading mirror speeds from cached hostfile<br />
* base: mirror.primusdatacentre.com.au<br />
* centosplus: mirror.primusdatacentre.com.au<br />
* epel: ucmirror.canterbury.ac.nz<br />
* epel-source: mirror.optus.net<br />
* extras: mirror.primusdatacentre.com.au<br />
* updates: mirror.primusdatacentre.com.au<br />
85 packages excluded due to repository priority protections<br />
<strong>epel /var/cache/yum/i386/6/epel/gen/pkgtags.sqlite</strong><br />
Error: file is encrypted or is not a database</p></blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2012%2F02%2Fwhy-yum-search-returns-error-file-is-encrypted-or-is-not-a-database-centos-6-2%2F&amp;title=Why%20%26%238216%3Byum%20search%26%238217%3B%20returns%20%26%238220%3BError%3A%20file%20is%20encrypted%20or%20is%20not%20a%20database%26%238221%3B%20%5BCentOS%206.2%5D" id="wpa2a_2"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2012/02/why-yum-search-returns-error-file-is-encrypted-or-is-not-a-database-centos-6-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>$11.8B NBN deal with Telstra and Optus helps censor Australia&#8217;s Internet</title>
		<link>http://www.neosource.com.au/blog/2011/06/11-8b-nbn-deal-with-telstra-and-optus-helps-censor-australias-internet/</link>
		<comments>http://www.neosource.com.au/blog/2011/06/11-8b-nbn-deal-with-telstra-and-optus-helps-censor-australias-internet/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 01:39:06 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet Censorship]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=88</guid>
		<description><![CDATA[Well, looks like the cat&#8217;s out of the bag in regards to Australia&#8217;s controversial internet censorship filter. Yesterday it was announced that Telstra and Optus are to start filtering their customers internet access in July 2011, as part of a voluntary agreement with the Government. This may come as a surprise to some, but what&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_92" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-92" title="Australia's Internet Censored ($11.8B had nothing to do with it)" src="http://www.neosource.com.au/blog/wp-content/uploads/australia-censored.jpg" alt="Australia's Internet Censored ($11.8B had nothing to do with it)" width="500" height="393" /><p class="wp-caption-text">Australia&#39;s Internet Censored ($11.8B had nothing to do with it)</p></div>
<p>Well, looks like the cat&#8217;s out of the bag in regards to Australia&#8217;s controversial internet censorship filter.</p>
<p><a title="Telstra, Optus to start censoring the web next month" href="http://www.news.com.au/technology/internet-filter/telstra-optus-to-begin-censoring-web-next-month/story-fn5j66db-1226079954138">Yesterday it was announced that Telstra and Optus are to start filtering their customers internet access in July 2011</a>, as part of a voluntary agreement with the Government. This may come as a surprise to some, but what&#8217;s even more surprising (or not), is the fact that both companies have just announced that they have signed a $11.8B with the Government in respect to the national broadband network (NBN).</p>
<p><a title="Telstra signs $11b NBN agreement" href="http://www.tradingroom.com.au/apps/view_article.ac?articleId=2446992">Telstra signs $11b NBN agreement</a></p>
<p><a title="Optus strikes $800m NBN deal" href="http://www.tradingroom.com.au/apps/view_article.ac?articleId=2447104">Optus strikes $800m NBN deal</a></p>
<p>Corpocracy seems to be overshadowing democracy, as 96% of people polled are against the internet censorship filter.</p>
<p><a title="Poll 1 - 96% against internet censorship" href="http://www.smh.com.au/polls/technology/technology-news/internet-censorship-20100330-r9ft.html">Poll 1 &#8211; 96% against internet censorship</a></p>
<p><a title="Poll 2 - Surprise, also 96% against internet censorship" href="http://machinegunkeyboard.com/?p=695#GvD7EsCFR5Ve">Poll 2 &#8211; Surprise, also 96% against internet censorship</a></p>
<p>I&#8217;m all for protecting children from harm, though the internet filter is easily bypassed, and therefore is a waste of taxpayers money. After seeing the above, it begs the question, what is the real purpose of the filter&#8230;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2011%2F06%2F11-8b-nbn-deal-with-telstra-and-optus-helps-censor-australias-internet%2F&amp;title=%2411.8B%20NBN%20deal%20with%20Telstra%20and%20Optus%20helps%20censor%20Australia%26%238217%3Bs%20Internet" id="wpa2a_4"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2011/06/11-8b-nbn-deal-with-telstra-and-optus-helps-censor-australias-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook&#8217;s new Instant Personalisation makes your information available to external partner websites</title>
		<link>http://www.neosource.com.au/blog/2011/02/facebooks-new-instant-personalisation-makes-your-information-available-to-external-partner-websites/</link>
		<comments>http://www.neosource.com.au/blog/2011/02/facebooks-new-instant-personalisation-makes-your-information-available-to-external-partner-websites/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 01:37:45 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Social Marketing]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=82</guid>
		<description><![CDATA[The new Instant Personalisation feature currently being launched by Facebook allows your personal information (that you make available to everyone of course) to be shared with external partner websites when you visit them. This is different to the social plugins, which do not share your information when you visit sites with Facebook social plugins. Facebook&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The new Instant Personalisation feature currently being launched by  Facebook allows your personal information (that you make available to  everyone of course) to be shared with external partner websites when you  visit them. This is different to the social plugins, which do not share  your information when you visit sites with Facebook social plugins.</p>
<p>Facebook&#8217;s goal is to bring the social experience everywhere you go on the web, whilst giving their marketing partners more ways to access and mine your data.</p>
<p>Instant  Personalisation is enabled automatically as it becomes available, but  if you do not wish your Facebook information to be shared with external  websites, then you can disable it by following the navigation path  below.</p>
<p>Account -&gt; Privacy Settings -&gt; Apps and websites  -&gt; Edit your settings -&gt; Instant Personalisation -&gt; Edit  Settings</p>
<p>Untick the &#8220;Enable instant personalisation on partner websites&#8221;.</p>
<p>It  was not yet available to be unticked when I wrote this, as it said  &#8220;Note: instant personalisation is not yet available for you.&#8221;. So if  it&#8217;s the same for you then make a note to come back at a later date and  check it again.</p>
<p><strong>Your information is accessible to applications and websites through your friends</strong></p>
<p>Another  Facebook privacy option you may wish to review is &#8220;information  accessible through your friends&#8221;. This setting is found above the Instant Personalisation setting  and allows applications and  websites that your friends use to access your information. The list of  information sharing options are available under this setting, which you can individually allow or block.</p>
<ul>
<li>your bio</li>
<li>birthday</li>
<li>family and relationships</li>
<li>what you&#8217;re interested in and looking for</li>
<li>your religious and political views</li>
<li>your﻿ website</li>
<li>whether you&#8217;re online</li>
<li>your status updates</li>
<li>your photos</li>
<li>your videos</li>
<li>your links</li>
<li>your notes</li>
<li>photos and videos you&#8217;re tagged in</li>
<li>your hometown and current location</li>
<li>your education and work</li>
<li>activities and interests that you like</li>
<li>places that you check in to</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2011%2F02%2Ffacebooks-new-instant-personalisation-makes-your-information-available-to-external-partner-websites%2F&amp;title=Facebook%26%238217%3Bs%20new%20Instant%20Personalisation%20makes%20your%20information%20available%20to%20external%20partner%20websites" id="wpa2a_6"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2011/02/facebooks-new-instant-personalisation-makes-your-information-available-to-external-partner-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Christmas Bargain 80% off! &#8211; Limited Stock!</title>
		<link>http://www.neosource.com.au/blog/2010/12/ipad-christmas-bargain-80-off-limited-stock/</link>
		<comments>http://www.neosource.com.au/blog/2010/12/ipad-christmas-bargain-80-off-limited-stock/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 05:59:55 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=62</guid>
		<description><![CDATA[If you are interested in getting an Apple iPad for Christmas at a huge 80% off, I can get hold of them through a contact. The numbers are limited and he has 10 Apple iPads going for up to 80% off! – it&#8217;s first come first served (they are from a cancelled SouthernHealth contract due [...]]]></description>
			<content:encoded><![CDATA[<p>If you are interested in getting an Apple iPad for Christmas at a huge <strong>80% off, </strong> I can get hold of them through a contact.</p>
<div id="attachment_64" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-64 " title="ipad-xmas" src="http://www.neosource.com.au/blog/wp-content/uploads/ipad-xmas-300x267.jpg" alt="iPad Christmas Bargain - Limited Stock!" width="300" height="267" /><p class="wp-caption-text">iPad Christmas Bargain - Limited Stock!</p></div>
<p>The numbers are limited and he has <strong>10 Apple iPads </strong>going for <strong>up to 80% off!</strong> – it&#8217;s first come first served (they are from a cancelled SouthernHealth contract due to the cutbacks).</p>
<p>2 have already been sold, so <strong>click the link below</strong> to see what iPads we have left in stock for you!</p>
<p><a onclick="ipad.style.display = 'block';" href="#">Click here to see your iPad</a></p>
<p><img id="ipad" style="display: none;" src="/blog/wp-content/uploads/ipad-bargain-298x300.jpg" alt="iPad Christmas Bargain" /></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2010%2F12%2Fipad-christmas-bargain-80-off-limited-stock%2F&amp;title=iPad%20Christmas%20Bargain%2080%25%20off%21%20%26%238211%3B%20Limited%20Stock%21" id="wpa2a_8"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2010/12/ipad-christmas-bargain-80-off-limited-stock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The elusive Eternity II puzzle &#8211; is there a pattern to it?</title>
		<link>http://www.neosource.com.au/blog/2010/12/the-elusive-eternity-ii-puzzle-is-there-a-pattern-to-it/</link>
		<comments>http://www.neosource.com.au/blog/2010/12/the-elusive-eternity-ii-puzzle-is-there-a-pattern-to-it/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 15:52:19 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Puzzles]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=21</guid>
		<description><![CDATA[I&#8217;ve been fascinated and hooked on Eternity II, the elusive edge matching puzzle,  since I first heard about it in November 2009. It was released in 2007 as the successor to the original Eternity puzzle, and offers a $2M prize to the first person that solves it. Submissions are reviewed on Dec 31st each year [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been fascinated and hooked on <a href="http://uk.eternityii.com/">Eternity II</a>, the elusive edge matching puzzle,  since I first heard about it in November 2009. It was released in 2007 as the successor to the <a href="http://en.wikipedia.org/wiki/Eternity_puzzle">original Eternity puzzle</a>, and offers a $2M prize to the first person that solves it. Submissions are reviewed on Dec 31st each year with the final scrutiny date being Dec 31st, 2010. It remained unsolved as of Dec 31st, 2009.</p>
<p>The puzzle consists of 256 uniquely designed square tiles that have a pattern on each edge. There are 60 tiles that make up the border, consisting of 5 patterns. The inner 14&#215;14 grid is made up using 196 tiles comprising 17 patterns.  Here is a <a href="http://uk.eternityii.com/try-eternity2-online/">playable mini version</a> of the puzzle. There is also an <a href="http://games.groups.yahoo.com/group/eternity_two/">Eternity II Yahoo group</a> where people have been discussing their ideas.</p>
<div id="attachment_29" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-29 " style="margin: 10px;" title="eternity-ii-puzzle" src="http://www.neosource.com.au/blog/wp-content/uploads/eternity-ii-puzzle-300x220.jpg" alt="" width="300" height="220" /><p class="wp-caption-text">Eternity II Puzzle</p></div>
<p>Christopher Monckton, the inventor has spent 8 years designing it, and has designed it in such a way that it cannot be solved by raw computing power alone. To give you an idea of the complexity of this puzzle, it&#8217;d take 360,000,000 times the age of the Universe to exhaust all of the possibilities using <a href="http://www.news.com.au/technology/the-worlds-new-fastest-supercomputer-can-perform-2750000000000000-calculations-per-second/story-e6frfro0-1225953675313">Tianhe-1, the worlds fastest supercomputer</a>. That&#8217;s some seriously large numbers, considering the Tianhe-1 has a processing speed of 2,750 trillion instructions per second. There are a number of people writing backtracking solvers to try and find a solution, maybe hoping for a miracle and an extraordinary amount of luck, even with thousands of distributed Tianhe-1&#8242;s, the search for a computer generated solution appears quite futile.</p>
<p>Monckton has stated from the outset that a backtracking solver will not solve this puzzle, yet people persist. I myself have created a number of different programs to analyse the puzzle, backtracking solvers with a range of variable options to try and optimise the search. Even if you eliminate 99% of the search space, that still leaves 1% of 360,000,000 universes of time, so any reduction in search space would have to be exponentially better than a mere 99% reduction.</p>
<p>I&#8217;ve had a bit of time up my sleeve, and so I&#8217;ve dedicated a fair amount of time on this puzzle, trying to understand and figure out how it has been designed. I can&#8217;t explain why I&#8217;ve been so attached to it, I&#8217;ve never been so involved in a single project for an extended amount of time, with no apparent payoff. Sure the prize money would be life changing, but just the thought of being the first to solve such a challenging puzzle before anyone  else would be a life changing achievement in itself.</p>
<p>I have looked at the <a href="http://www.claymath.org/millennium/">7 x $1M Millennium Prize Problems</a> offered by Clay Mathematics Institute, though they are above my understanding of mathematics. The E2 puzzle falls into the <a href="http://en.wikipedia.org/wiki/P_versus_NP_problem">P=NP</a> puzzle domain, of which there is also a <a href="http://www.claymath.org/millennium/P_vs_NP/">$1M millennium prize offered for solving P=NP</a>.</p>
<p>I&#8217;ve always been fond of mathematics, it&#8217;s amazing how it appears in so many seemingly unrelated areas, from the golden mean ratio that the spiral of galaxies seem to follow, to fibonacci and the human body, plants, even language. Pretty much everything has a mathematical connection.</p>
<p>My philosophy has been that if I can figure out how E2 was designed, then there must be a logical way to solve it. My quest has led me to explore a number of different algorithms from simulated annealing, mutational algorithms, and an extensive analysis of the tileset to see if I could find any patterns within the dataset and comparing it against other puzzles with E2 like properties. I felt that I&#8217;ve been close to cracking the code  a number of times, yet the sheer enormity of the puzzle has humbled me time and time again.</p>
<p>In my research I found that Monckton has published a number of Sudoku books, and invented the Sudoku-X variety in which both diagonals also have 9 unique digits. I recently purchased a copy of his Suduko X &#8211; Book 1. I was stunned when I read the following statement on page 9, &#8221; I developed Sudoku X using the advanced computer algorithm that I&#8217;d originally constructed to help me design the Eternity puzzle.&#8221;  I had a sneaking suspicion that it was connected to Sudoku somehow! Even so, trying to figure out how this can help solve the puzzle is still proving quite difficult. There is also no guarantee that E2 was designed in the same way that Eternity 1 was designed, though it seems there must be some connection between the two. It is not known whether the official solution to Eternity 1 had any sort of pattern, as the 2 solutions found were not the official solution, and they did not appear to have any distinctive pattern.</p>
<p><a href="http://www.fishpond.com.au/product_info.php?ref=2481&amp;id=9780755315017&amp;affiliate_banner_id=1" target="_blank"><img style="margin: 10px; border: 0pt none;" src="http://www.fishpond.com.au/affiliate_show_banner.php?ref=2481&amp;affiliate_pbanner_id=2531699" border="0" alt="Sudoku X: The Only Puzzle with the X Factor: Bk. 1" width="78" height="120" /></a></p>
<p>It would be cruel if there is no pattern or determinable design to Eternity II, and I can&#8217;t imagine it&#8217;d be a random puzzle even though it very much <em>appears</em> to be random. If it is indeed random, I&#8217;m not sure what kind of implications that&#8217;d have for Tomy for selling a puzzle that has no likelyhood of ever being solved.</p>
<p>I won&#8217;t yet elaborate on the finer details of my current ideas, as I may yet crack it (haha yeah right), but I may follow up in a future post if it hasn&#8217;t been solved and the prize has been withdrawn. With only 10 days or so remaining, to allow time for delivery, I&#8217;m not expecting any miracles, but am still giving it a go to the end!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2010%2F12%2Fthe-elusive-eternity-ii-puzzle-is-there-a-pattern-to-it%2F&amp;title=The%20elusive%20Eternity%20II%20puzzle%20%26%238211%3B%20is%20there%20a%20pattern%20to%20it%3F" id="wpa2a_10"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2010/12/the-elusive-eternity-ii-puzzle-is-there-a-pattern-to-it/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beware of Google&#8217;s pre-emptive AdWords landing page checker</title>
		<link>http://www.neosource.com.au/blog/2010/12/beware-of-googles-pre-emptive-adwords-landing-page-checker/</link>
		<comments>http://www.neosource.com.au/blog/2010/12/beware-of-googles-pre-emptive-adwords-landing-page-checker/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 13:04:24 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=24</guid>
		<description><![CDATA[Today I launched a new website for a client, www.AussieGoatsMilkSoap.com.au &#8211; they make natural goats milk soap, apparently really good for sensitive skin &#8211; it&#8217;s not a plug, just stating the facts . Whilst deploying the site I started setting up a Google AdWords campaign to promote the site. I prepared an ad and started [...]]]></description>
			<content:encoded><![CDATA[<p>Today I launched a new website for a client, <a href="http://www.AussieGoatsMilkSoap.com.au">www.AussieGoatsMilkSoap.com.au</a> &#8211; they make natural goats milk soap, apparently really good for sensitive skin &#8211; it&#8217;s not a plug, just stating the facts <img src='http://www.neosource.com.au/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Whilst deploying the site I started setting up a Google AdWords campaign to promote the site.</p>
<p>I prepared an ad and started writing some ad copy, and put in the website URL and info as typically required. I saved it, but the campaign was not yet active as the billing information wasn&#8217;t yet entered. A few minutes later I receive an email from Google with the subject &#8220;<strong>Your AdWords account: Site(s) violation</strong>&#8220;<strong>.</strong> I was a little surprised to see this as I&#8217;ve set up AdWords campaigns before and never had a problem with violating their guidelines.</p>
<p>The email stated that &#8220;one or more of your sites is   in violation of our Landing Page and Site Policies.&#8221;. As I was in the midst of deploying the site, I figured the site would&#8217;ve appeared broken (as it hadn&#8217;t finished uploading) when Google&#8217;s AdWords bot visited the site to check the landing page URL. As a result of this, the ad campaign was disabled and marked as &#8220;disapproved&#8221;. I was quite annoyed at this considering the Ad was not yet live. There was no information in the email about the cause of the problem, nor did any useful messages appear in the AdWords console.</p>
<p>I wrote to Google expressing that I wasn&#8217;t impressed with how it pre-emptively blocked my campaign before it was live, and sent an email to my client saying the ad campaign was in violation of their terms. I hope they review their landing page checking bot and their policy on blocking sites, as I can imagine many other people could get snagged by this inconvenience, which could be avoided by a simple alteration in the way the Google AdWords bot processes new ads.</p>
<p>&#8220;You should&#8217;ve deployed the site before creating the ad campaign!&#8221;, some of you may say, but even a mis-typed URL could cause the same problem. I believe they should wait until the ad is marked live or ready to publish before initiating any sort of background checking.</p>
<p>If Google reply to my letter, or if I find I goofed something up I&#8217;ll let you know!</p>
<p>In the meantime, if you&#8217;ve also had a similar experience, share your comments below.</p>
<p><strong>Update 17-Dec-2010</strong></p>
<p>I waited patiently without making any changes to the site or the ads, and on 14-Dec-2010 I received the following email from Google:</p>
<blockquote><p>Hello Joe,  Thank you for your patience. Our specialists have re-reviewed your site and found that it is in compliance with our Landing Page and Site Policies. You should see improvements to your Quality Score soon, reflected by higher Quality Scores for your keywords. We recommend that you continue checking our guidelines and making continuous improvement over time.</p></blockquote>
<p>Excellent, though why did the bot not approve it in the first place? I tried re-submitting the ads after receiving the email, though it took another 2 days before I got an email with the subject &#8220;Your AdWords account: Site(s) approved&#8221;.</p>
<blockquote><p>We have re-reviewed one or more of your sites and found that the sites are    no longer violating our Landing Page and Site policies.</p></blockquote>
<p>The ads are now running without any issues. Thanks Google.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2010%2F12%2Fbeware-of-googles-pre-emptive-adwords-landing-page-checker%2F&amp;title=Beware%20of%20Google%26%238217%3Bs%20pre-emptive%20AdWords%20landing%20page%20checker" id="wpa2a_12"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2010/12/beware-of-googles-pre-emptive-adwords-landing-page-checker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>After great anticipation (not), my blog has been launched.</title>
		<link>http://www.neosource.com.au/blog/2010/12/after-great-anticipation-not-my-blog-has-been-launched/</link>
		<comments>http://www.neosource.com.au/blog/2010/12/after-great-anticipation-not-my-blog-has-been-launched/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 11:30:47 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=15</guid>
		<description><![CDATA[Background After months of procrastination, unforeseen delays and a bunch of other excuses I could probably come up with, I&#8217;ve finally decided to take the plunge and install my own blog. It&#8217;s been sitting idly on my development server longer than I care to mention, just waiting for me to take the time to push [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Background</strong><br />
After months of procrastination, unforeseen delays and a bunch of other excuses I could probably come up with, I&#8217;ve finally decided to take the plunge and install my own blog. It&#8217;s been sitting idly on my development server longer than I care to mention, just waiting for me to take the time to push it live.</p>
<p>Many a time I&#8217;ve written an email to a client or to a software or service provider and thought &#8220;this should be a blog post&#8221;. Well today is the day that I can cross off &#8220;launch my blog&#8221; from my ever growing todo list. Then I write 3 pages and think, hmm this needs to be re-written and gets stashed in my list of &#8220;draft articles to publish&#8221;.  Well now maybe they are a step closer to being published, if they aren&#8217;t outdated and obsolete within 3 minutes of writing this.</p>
<p><strong>So what do I intend to blog about ?<br />
</strong>Whatever I feel is worthy of sharing with people, hopefully making someone&#8217;s life a little easier by presenting solutions to problems, or just putting some ideas out there that might inspire someone or cause a revolution, or make front page news, that would be awesome wouldn&#8217;t it!</p>
<p>I often find myself searching and finding a lot of useful sites and software, even if I don&#8217;t have a use for them myself I&#8217;ll see something and think  &#8220;this is cool, could come in handy someday&#8221;, and add it to my endless list of bookmarks. Funny thing is, if I go to find something again I&#8217;ll just Google it instead of searching my bookmarks. Why is that ? Who knows, I like collecting information, maybe someday I&#8217;ll open a library or an archive containing random bits of the internet. Maybe not.</p>
<p><strong>About Me</strong><br />
Whilst writing this blog page, I&#8217;m thinking &#8220;who&#8217;s gonna read this anyway?&#8221;, and &#8220;what do I put in here without sounding like a douche&#8221;. So I&#8217;m not writin anythin, leaving it a mystery for now. Ok well I&#8217;ve been self employed most of my adult life, I prefer the idea of time freedom to money freedom, though the money would be great. Maybe I can have both if I apply myself. I&#8217;m not a fan of rigid schedules booked out weeks in advance. I consider myself creatively spontaneous, well maybe a little unorganised at times, but creatively spontaneous sounds better.  More to come later, maybe. Yeah I say maybe a lot, nothing is certain in life, so maybe works well for me.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2010%2F12%2Fafter-great-anticipation-not-my-blog-has-been-launched%2F&amp;title=After%20great%20anticipation%20%28not%29%2C%20my%20blog%20has%20been%20launched." id="wpa2a_14"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2010/12/after-great-anticipation-not-my-blog-has-been-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How will Bluetooth Marketing Evolve ?</title>
		<link>http://www.neosource.com.au/blog/2009/02/how-will-bluetooth-marketing-evolve/</link>
		<comments>http://www.neosource.com.au/blog/2009/02/how-will-bluetooth-marketing-evolve/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 14:08:04 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.neosource.com.au/blog/?p=9</guid>
		<description><![CDATA[I recently read an article that discusses how bluetooth marketing has been excluded from requiring Opt-In permission by ICO in the UK. Article link: http://www.consumer-preference.com/2007/10/bluetooth-marketing-ico-removes.html I&#8217;ve recently experimented with some bluetooth marketing, and whilst I am against spam via email etc, I do see some differences in the bluetooth approach. Bluetooth vs Email or SMS [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read an article that discusses how bluetooth marketing has been excluded from requiring Opt-In permission by ICO in the UK.</p>
<p>Article link: <a href="http://www.consumer-preference.com/2007/10/bluetooth-marketing-ico-removes.html">http://www.consumer-preference.com/2007/10/bluetooth-marketing-ico-removes.html</a></p>
<p>I&#8217;ve recently experimented with some bluetooth marketing, and whilst I am against spam via email etc, I do see some differences in the bluetooth approach.</p>
<p><strong>Bluetooth vs Email or SMS Marketing</strong><br />
1. The message isn&#8217;t stored in the phone unless the consumer accepts it.</p>
<p>2. If they do nothing, the message disappears within 60-120 seconds on it&#8217;s own, as if it was never there, so it&#8217;s quite common they weren&#8217;t even aware of the message in the first place. I noticed most Nokia phones don&#8217;t vibrate or have an option to vibrate when a bluetooth request is received, so it&#8217;s not as intrusive as SMS as it behaves differently from what I have seen.</p>
<p>3. It is quite easy for anyone to either switch their bluetooth off or hide their phone from being &#8216;advertised&#8217; via bluetooth to avoid any unsolicited messages, which I believe is quite adequate for managing whether people want to receive bluetooth marketing or not. I disagree with the analogy of having your phone number listed in the phonebook vs having bluetooth on to receive messages. You can&#8217;t disable your phone listing momentarily, though you can disable bluetooth as needed. People turn their mobiles off when going into hospitals, aeroplanes, and use silent mode in meetings, movies etc, why should bluetooth be any different? There&#8217;s no reason to have bluetooth on and discoverable unless you want to receive messages. There&#8217;s no detriment to the user experience if they still want to receive messages from friends which should be paired devices anyhow, so being hidden wouldn&#8217;t have a negative effect on that.</p>
<p>Though the only negative side I can see is if everyone was using bluetooth marketing, then it would become ineffective a walk in a shopping centre would illicit dozens of messages every few minutes as you approach more bluetooth marketing zones. Most phones haven&#8217;t been designed to handle multiple simultanoeus incoming connections (on the user interface side anyhow).</p>
<p>Some suggestions that may be useful though would be to have a code of conduct on how bluetooth marketing is used, such as maximum number of communication attempts per device, and minimum intervals between attempts to avoid bombardment etc. Alternatively, if the protocol was enhanced to allow the consumer to browse a list of &#8216;advertisers&#8217; in their proximity, then they could opt to choose who to allow receieving messages from, which would be a once-off per advertiser/location. If they make no preference, then they don&#8217;t receive any advertisements. There are many possible applications for bluetooth, such as community announcements or location based instructions/guides etc. It would be a shame if it doesn&#8217;t reach it&#8217;s full potential due to overuse or ineffective protocols to deal with the growing list of possible uses.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.neosource.com.au%2Fblog%2F2009%2F02%2Fhow-will-bluetooth-marketing-evolve%2F&amp;title=How%20will%20Bluetooth%20Marketing%20Evolve%20%3F" id="wpa2a_16"><img src="http://www.neosource.com.au/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.neosource.com.au/blog/2009/02/how-will-bluetooth-marketing-evolve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

