<?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>thought-after.com</title>
	<atom:link href="http://www.thought-after.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thought-after.com</link>
	<description>Web development and geeky stuff by Lafinboy</description>
	<lastBuildDate>Sun, 22 Aug 2010 00:29:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Ad-minister plugin: Catchable fatal error</title>
		<link>http://www.thought-after.com/2010/08/ad-minister-plugin-catchable-fatal-error/</link>
		<comments>http://www.thought-after.com/2010/08/ad-minister-plugin-catchable-fatal-error/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 00:26:42 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=131</guid>
		<description><![CDATA[Following the upgrade of WordPress to version 3.0 I noticed that there were some errors with the Ad-minister plugin, specifically on the main administration page (tools.php?page=ad-minister). The page was now displaying an error message: Catchable fatal error: Object of class WP_Error could not be converted to string in ***/***/***/wp-includes/functions.php on line 302 The error is [...]]]></description>
			<content:encoded><![CDATA[<p>Following the upgrade of WordPress to version 3.0 I noticed that there were some errors with the Ad-minister plugin, specifically on the main administration page (tools.php?page=ad-minister).</p>
<p>The page was now displaying an error message:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">Catchable fatal error: Object of <span class="kw2">class</span> WP_Error could not be converted to string in ***<span class="coMULTI">/***/</span>***/wp-includes/functions.php<br />
on line <span class="nu0">302</span></div>
</div>
<p>The error is due to a change in the way new posts are created in WP3. The fix (until such time as the plugin is updated by the authors) is to replace the following section of code in the <em>administer_queue_scripts</em> function in the <em>ad-minister.php</em> file:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="co1">// Create a new one</span><br />
<span class="re0">$_POST</span><span class="br0">&#91;</span><span class="st0">&#039;post_title&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;Ad-minister Data Holder &#039;</span> . <span class="re0">$nbr</span>;<br />
<span class="re0">$_POST</span><span class="br0">&#91;</span><span class="st0">&#039;post_type&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;administer&#039;</span>;<br />
<span class="re0">$_POST</span><span class="br0">&#91;</span><span class="st0">&#039;content&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;This post holds your Ad-minister data&#039;</span>;<br />
<span class="re0">$id</span> = wp_write_post<span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
update_option<span class="br0">&#40;</span><span class="st0">&#039;administer_post_id&#039;</span>, <span class="re0">$id</span><span class="br0">&#41;</span>;</div>
</div>
<p>with the new code:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="co1">// Create a new one</span><br />
<span class="re0">$adminster_post</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st0">&#039;post_title&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;Ad-minister Data Holder &#039;</span> . <span class="re0">$nbr</span>;<br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st0">&#039;post_type&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;administer&#039;</span>;<br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st0">&#039;content&#039;</span><span class="br0">&#93;</span> = <span class="st0">&#039;This post holds your Ad-minister data&#039;</span>;<br />
<span class="re0">$id</span> = wp_insert_post<span class="br0">&#40;</span> <span class="re0">$adminster_post</span>,<span class="kw2">true</span> <span class="br0">&#41;</span>;<br />
update_option<span class="br0">&#40;</span><span class="st0">&#039;administer_post_id&#039;</span>, <span class="re0">$id</span><span class="br0">&#41;</span>;</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2010/08/ad-minister-plugin-catchable-fatal-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live site development with Firebug</title>
		<link>http://www.thought-after.com/2010/03/live-site-development-with-firebug/</link>
		<comments>http://www.thought-after.com/2010/03/live-site-development-with-firebug/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 04:57:34 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[developer tools]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=127</guid>
		<description><![CDATA[Live editing of website code and styles is a breeze with the Firebug plugin for Firefox. Right click any element on the page that you wish to inspect/edit and select the Inspect Element option. The Firebug panel opens with the HTML displayed, and the element you selected highlighted. In the right panel are the CSS [...]]]></description>
			<content:encoded><![CDATA[<p>Live editing of website code and styles is a breeze with the Firebug plugin for Firefox.</p>
<p>Right click any element on the page that you wish to inspect/edit and select the Inspect Element option. The Firebug panel opens with the HTML displayed, and the element you selected highlighted. In the right panel are the CSS styles attached to that element. From here we can make changes to the current styles, or add new styles.</p>
<p>I do this constantly when  working on sites as it gives me realtime feedback and visualisation of the changes I make. Once the styles are working correctly and everything is looking the way you want it to it&#039;s time to copy all those changes back into the actual stylesheet. But can you remember all the changes you made, and to what elements? This is where the pro tip comes into play.</p>
<p>To the right of each of the style declarations is a hyperlink to the relevant CSS file and the line number the declaration is on in that file. Click this link to display the full CSS file in the Firebug CSS panel. Click the Edit button in the panel to view the plain text content of the CSS file, including the changes you&#039;ve just made. You can now select all, copy and paste into the actual stylesheet. That&#039;s it!! Save the stylesheet and transfer it to the server to see all the changes applied to the live site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2010/03/live-site-development-with-firebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The innocent age of comic books</title>
		<link>http://www.thought-after.com/2009/03/the-innocent-age-of-comic-books/</link>
		<comments>http://www.thought-after.com/2009/03/the-innocent-age-of-comic-books/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 06:30:57 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>
		<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=107</guid>
		<description><![CDATA[How the times have changed. Things that seemed so innocent once now have rampant sexual overtones. Just take a look at a few examples from the seemingly harmless comic books of yesteryear. And finally&#8230; I&#039;m sure there are many, many more examples of past innocence seeming corrupted by present standards. Let me know where they [...]]]></description>
			<content:encoded><![CDATA[<p>How the times have changed. Things that seemed so innocent once now have rampant sexual overtones. Just take a look at a few examples from the seemingly harmless comic books of yesteryear.</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 204px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/pic15520.jpg"><img class="size-medium wp-image-109" title="Pearl necklace" src="http://www.thought-after.com/wp-content/uploads/2009/03/pic15520-194x300.jpg" alt="Archie doesn't know how kinky his girlfriend is" width="194" height="300" /></a><p class="wp-caption-text">Archie doesn&#39;t know how kinky his girlfriend is</p></div>
<div id="attachment_112" class="wp-caption alignnone" style="width: 238px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/pic29921.jpg"><img class="size-medium wp-image-112" title="Golden rain" src="http://www.thought-after.com/wp-content/uploads/2009/03/pic29921-228x300.jpg" alt="It's not heavy rain, just a golden shower really" width="228" height="300" /></a><p class="wp-caption-text">It&#39;s not heavy rain, just a golden shower really</p></div>
<div id="attachment_110" class="wp-caption alignnone" style="width: 310px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/pic17325.jpg"><img class="size-medium wp-image-110" title="Robot spanking" src="http://www.thought-after.com/wp-content/uploads/2009/03/pic17325-300x298.jpg" alt="The man of steel isn't enough for Lois." width="300" height="298" /></a><p class="wp-caption-text">The man of steel isn&#39;t enough for Lois.</p></div>
<div id="attachment_111" class="wp-caption alignnone" style="width: 310px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/pic23987.jpg"><img class="size-medium wp-image-111" title="Spidey sperm" src="http://www.thought-after.com/wp-content/uploads/2009/03/pic23987-300x222.jpg" alt="Peter Parkers' aunt has a &quot;Something about Spidey&quot; moment" width="300" height="222" /></a><p class="wp-caption-text">Peter Parkers&#39; aunt has a &quot;Something about Spidey&quot; moment</p></div>
<div id="attachment_113" class="wp-caption alignnone" style="width: 225px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/pic02276.jpg"><img class="size-medium wp-image-113" title="Ass splat" src="http://www.thought-after.com/wp-content/uploads/2009/03/pic02276-215x300.jpg" alt="So that's how he gets the spidey goo in" width="215" height="300" /></a><p class="wp-caption-text">So that&#39;s how he gets the spidey goo in</p></div>
<p>And finally&#8230;</p>
<div id="attachment_114" class="wp-caption alignnone" style="width: 310px"><a href="http://www.thought-after.com/wp-content/uploads/2009/03/untitled.jpg"><img class="size-medium wp-image-114" title="America wanks" src="http://www.thought-after.com/wp-content/uploads/2009/03/untitled-300x215.jpg" alt="Captain America doesn't need to be ordered to wank" width="300" height="215" /></a><p class="wp-caption-text">Captain America doesn&#39;t need to be ordered to wank</p></div>
<p>I&#039;m sure there are many, many more examples of past innocence seeming corrupted by present standards. Let me know where they are and I&#039;ll make a running series.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2009/03/the-innocent-age-of-comic-books/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox web developer plugins</title>
		<link>http://www.thought-after.com/2009/01/web-developer-firefox-plugins/</link>
		<comments>http://www.thought-after.com/2009/01/web-developer-firefox-plugins/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 11:02:39 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[developer tools]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=99</guid>
		<description><![CDATA[Returning to work after the Christmas holidays I was confronted with a brand new, clean install version of Firefox 3.0. Very strange, because I already had said browser/version installed, along with all bookmarks, cookies, plugins and history. But every cloud has a silver lining. A chance to rid myself of no longer needed cruft, and [...]]]></description>
			<content:encoded><![CDATA[<p>Returning to work after the Christmas holidays I was confronted with a brand new, clean install version of Firefox 3.0. Very strange, because I already had said browser/version installed, along with all bookmarks, cookies, plugins and history.</p>
<p>But every cloud has a silver lining. A chance to rid myself of no longer needed cruft, and cut back to the bare essentials. So here is my list of plugins, in no particular order, that make Firefox such a cool tool for any web developer.</p>
<ul>
<li><a title="NoScript - JavaScript/Java/Flash blocker" href="http://noscript.net/">NoScript</a> &#8211; makes the web a safer place to browse. Selectively allow scripts and browser plugins to run on individual sites, block the stuff you don&#039;t want, never be click-jacked!</li>
<li><a title="Foxmarks bookmarking add-on" href="http://www.foxmarks.com/">Foxmarks</a> &#8211; synchronise bookmarks between all of your computers. Home, work, mobile &#8211; all in sync, all the time.</li>
<li><a title="Firebug - web development evolved" href="http://getfirebug.com/">Firebug</a> &#8211; live editing, debugging and monitoring of CSS, HTML and JavaScript as you browse. Plus network monitoring, JavaScript profiling, DOM exploration. Is there anything this magical tool cannot do?</li>
<li><a href="http://chrispederick.com/work/web-developer/">Web Developer Toolbar</a> -information and page control at your fingertips. Turn stuff on, turn stuff off, view hidden stuff, measure it, highlight it, analyse it. Beautiful!</li>
<li><a title="Eyedropper, colour picker, anlayser" href="http://www.colorzilla.com/firefox/">Colorzilla</a> &#8211; the latest version of this add-on adds the ability to create colour palletes from any page, on top of it&#039;s already outstanding eyedropper and colour picker. Lots of other features make this an essential tool for working with colour.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3829">LiveHTTP Headers</a> -View headers and responses as you browse the web. Essential for debugging cookie, server and HTTP transaction information.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4106">Operator</a> &#8211; View and interact with microformat and other semantic data on a web page. Extract contact, location, event, taxanomic details into various applications for storage and/or immediate use.</li>
</ul>
<p>So there we have it, seven plugins that make light of many web development tasks. No doubt there are others that do the same type of job, but these are the best of breed as far as I&#039;m concerned.</p>
<p>Do you use something different, or have a must have recommendation? Comments are open, feel free to let everyone know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2009/01/web-developer-firefox-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Will apathy let the filter in?</title>
		<link>http://www.thought-after.com/2008/12/will-apathy-let-the-filter-in/</link>
		<comments>http://www.thought-after.com/2008/12/will-apathy-let-the-filter-in/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 11:08:38 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>
		<category><![CDATA[nocleanfeed]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=90</guid>
		<description><![CDATA[There has been much written about the pro&#039;s and con&#039;s of the proposed Australian Internet Filter. As a technologist and father I am strongly opposed to it&#039;s introduction. As a member of the Australian public I am appalled at the steps that the Government, and in particular, Senator Conroy, have taken to get it introduced. [...]]]></description>
			<content:encoded><![CDATA[<p>There has been much written about the pro&#039;s and con&#039;s of the proposed Australian Internet Filter. As a technologist and father I am strongly opposed to it&#039;s introduction. As a member of the Australian public I am appalled at the steps that the Government, and in particular, Senator Conroy, have taken to get it introduced.</p>
<p>I have written directly to the Senator, as well as my local MP, requesting answers to several key points that have not been addressed in any public announcements. I have discussed the implications of the introduction of the filter with relatives, friends, and colleagues, and asked them to do as I have, and voice their objections. I will be asking them again, because the more effort we put into stopping it&#039;s introduction now, the less chance it has of being implemented.</p>
<p><a href="http://www.purecaffeine.com">Nathanael Boehm</a> articulates exactly why we must make the effort now in his blog post &#034;<a href="http://www.purecaffeine.com/2008/12/why-we-must-fight-the-filter-now/">Why we must fight the filter NOW</a>&#034;. I advise that you read his post, and if you need more information about the implications of the introduction of the filter visit the <a href="http://nocleanfeed.com/">No Clean Feed</a> website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/12/will-apathy-let-the-filter-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO friendly web content management system launched</title>
		<link>http://www.thought-after.com/2008/09/seo-friendly-web-content-management-system-launched/</link>
		<comments>http://www.thought-after.com/2008/09/seo-friendly-web-content-management-system-launched/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 04:44:11 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=84</guid>
		<description><![CDATA[After months of fine tuning, and a rebranding, Amplify are pleased to announce the public launch of their search engine optimisation content management system, Boost Optimiser. Built from the ground up to enable designers and content editors to rapidly build and manage search engine optimised websites, Boost Optimiser fills a gap in many CMSs available [...]]]></description>
			<content:encoded><![CDATA[<p>After months of fine tuning, and a rebranding, <a href="http://www.amplify.com.au">Amplify</a> are pleased to announce the public launch of their <a href="http://www.boostoptimiser.com.au">search engine optimisation content management system, Boost Optimiser</a>.</p>
<p>Built from the ground up to enable designers and content editors to rapidly build and manage search engine optimised websites, Boost Optimiser fills a gap in many CMSs available today.</p>
<p>Tight integration with Google Analytics and Website Optimizer Tool allows quick development of whole sites, mini-sites and landing pages tailored to rank well with the major search engines.</p>
<p>Online demos of the CMS are available at the Boost Optimiser website, and applications from resellers are welcome. Check it out at <a href="http://www.boostoptimiser.com.au">www.boostoptimiser.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/09/seo-friendly-web-content-management-system-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Gmail Notifier with HTTPS</title>
		<link>http://www.thought-after.com/2008/08/using-gmail-notifier-with-https/</link>
		<comments>http://www.thought-after.com/2008/08/using-gmail-notifier-with-https/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 02:20:47 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>
		<category><![CDATA[Gmail Notifier]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=81</guid>
		<description><![CDATA[Google recently changed an option in Gmail to allow the user to use HTTPS for the whole session, not just the login. As a security conscious user, I immediatelly took advantage of the option and switched over to full time HTTPS communications with Gmail. The first problem I found with making this choice is that [...]]]></description>
			<content:encoded><![CDATA[<p>Google recently changed an option in Gmail to allow the user to use HTTPS for the whole session, not just the login. As a security conscious user, I immediatelly took advantage of the option and switched over to full time HTTPS communications with Gmail.</p>
<p>The first problem I found with making this choice is that the Gmail Notifier tool does not play nicely with HTTPS, and so could not login and retrieve data from my Gmail account. Bah!!</p>
<p>Luckily, there is a workaround available while Google get an update sorted. Details below are sourced from the <a href="http://groups.google.com/group/Gmail-Help-Discussion">Gmail Help Discussion</a> list on Google Groups.</p>
<ol>
<li>Download <a rel="nofollow" href="http://www.google.com/mail/help/downloads/notifier_https.zip" target="_blank">http://www.google.com/mail/help/downloads/notifier_https.zip</a></li>
<li>Open up the folder.</li>
<li>Double-click on the file called notifier_https.reg to install it.</li>
<li>Click &#039;yes&#039; when you&#039;re asked to confirm if you want to add the information to the registry.</li>
<li>Restart the Notifier.</li>
</ol>
<p>And you&#039;re done! The Notifier will now work with Gmail set to always use HTTPS. If you decide you don&#039;t want to use that setting anymore, you&#039;ll need to install the other file in the zip folder &#8211; notifier_https_undo.reg &#8211; to reset Notifier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/08/using-gmail-notifier-with-https/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JQuery port to PHP</title>
		<link>http://www.thought-after.com/2008/08/jquery-port-to-php/</link>
		<comments>http://www.thought-after.com/2008/08/jquery-port-to-php/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 04:16:05 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=79</guid>
		<description><![CDATA[Came across this little gem today, a partial port of JQuery to PHP5. Looks awesome, and I already have several uses for it. Now I&#039;m off to play]]></description>
			<content:encoded><![CDATA[<p>Came across this little gem today, a partial port of <a href="http://code.google.com/p/phpquery/">JQuery to PHP5</a>. Looks awesome, and I already have several uses for it. Now I&#039;m off to play <img src='http://www.thought-after.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/08/jquery-port-to-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP developer position available</title>
		<link>http://www.thought-after.com/2008/08/php-developer-position-available/</link>
		<comments>http://www.thought-after.com/2008/08/php-developer-position-available/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 11:02:17 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[thought-after]]></category>
		<category><![CDATA[hiring]]></category>
		<category><![CDATA[PHP developer]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=71</guid>
		<description><![CDATA[Are you, or do you know, a PHP developer looking for a change of scenery? Is so, I could have just the opportunity you&#039;re looking for. At Amplify we are hiring, and looking for a strong PHP dev with the usual set of skills. The job is a beautiful mix of hardcore exteme programming, laid [...]]]></description>
			<content:encoded><![CDATA[<p>Are you, or do you know, a PHP developer looking for a change of scenery? Is so, I could have just the opportunity you&#039;re looking for.</p>
<p>At <a href="http://www.amplify.com.au">Amplify</a> we are hiring, and looking for a strong PHP dev with the usual set of skills. The job is a beautiful mix of hardcore exteme programming, laid back maintenance, personal development, and Playstation 3! You can check out the full details of the position on the <a href="http://www.amplify.com.au/about/work-for-amplify/">Work for Amplify</a> page.</p>
<p>You&#039;ll be working in a small team of developers, one of whom is me (possibly the main reason for your application), working on a range of new and existing projects. We love our PHP, but also dabble in .NET and Java, as well as all of the fun 2.0 stuff and malarkey that&#039;s going around. We even play with 3.0 stuff for fun.</p>
<p>So if you&#039;re after a taste of the future, in need of a change of routine, or just want to hang out with a bunch of FIFA08 geeks, give us a call. I look foward to meeting you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/08/php-developer-position-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iPhone, the Pope, what next!</title>
		<link>http://www.thought-after.com/2008/07/apple-iphone-the-pope-what-next/</link>
		<comments>http://www.thought-after.com/2008/07/apple-iphone-the-pope-what-next/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:25:35 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[World Youth Day]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=82</guid>
		<description><![CDATA[Australia, and more specifically Sydney, is about to be hit by two of arguably the biggest crowd pullers in the world today. The launch of the Apple iPhone in Australia is due on July 11th, and Pope Benedict XVI is due to arrive in Sydney on July 13th for World Youth Day 2008. Both events [...]]]></description>
			<content:encoded><![CDATA[<p>Australia, and more specifically Sydney, is about to be hit by two of arguably the biggest crowd pullers in the world today.</p>
<p>The launch of the Apple iPhone in Australia is due on July 11th, and Pope Benedict XVI is due to arrive in Sydney on July 13th for World Youth Day 2008. Both events are causing quite a stir, and not all for the good.</p>
<p><span id="more-52"></span></p>
<h3>iPhone</h3>
<p>The iPhone launch has once again seen the Australian telcos whipped into a gouging frenzy, with Optus releasing pricing details of their 3G iPhone plans, and Vodafone and Telstra sure to follow suit shortly.</p>
<p>If the Optus pricing is anything to go by, and the other two follow suit, I will be withdrawing my expression of interest for an iPhone and reverting to my trusty Samsung on a pay-as-you-go account. Optus is advertising 1GB per month for $100 on their <a href="http://www.optusiphone.com.au/getdoc/fe459345-d9c4-437d-a665-f36ec10c7cb8/pre-paid-pricing.aspx">Turbo Cap pre-paid plan</a>. Granted, the plan comes with a huge amount (by my monthly call count) of included calls, but that isn&#039;t why most people will be buying the iPhone. 1GB of internet access will be used up very quickly. A simple example is visiting the <a href="http://www.smh.com.au">Sydney Morning Herald</a> homepage. Today&#039;s measurement of that page weighed in at 920Kb, and the page auto-refreshes every 5 minutes. If you were to visit the page twice a day, which is not unreasonable, and sit on the home page for an average of 7 minutes each visit, you would use up 3.6MB of your allowance. One months worth would see 100MB / 10% of your allowance gone. And that&#039;s just looking at the news! Never mind your mapping, Twittering, Facebooking, and emailing needs. Come on Aussie telcos&#039;! If you want to be a leader in the growing online mobile space you&#039;re going to have to be a lot more generous with your data plans. Making a quick buck now is not in yours, or the national interest.</p>
<h3>The Pope</h3>
<p>I am not a religous man. I am, by definition, an Athiest. I have no belief in God, or any other of the much lauded deities. I do not though have any strong feelings about others having belief in those things. Whatever floats our boat.</p>
<p>I do find the whole religion thing very hypocritcial though, and none more so than the Catholic faith. Throughout history the Catholics, and indeed many other religions, have used their &#039;faith&#039; as an all encompassing reason for attrocities that would, under normal circumstances, be denounced by average men.</p>
<p>But I digress! The Pope visiting Sydney for World Youth Day has caused no end of problems for the citizens of this fair city. From the taking over of the Randwick Racecourse, to untold strain put on the public transport systems, to the special powers being granted to police to arrest anyone causing, or looking like they are going to cause, annoyance to attendees of the functions.</p>
<p>And to top it all off, there is a huge scandal hanging over <a href="http://en.wikipedia.org/wiki/George_Pell">Cardinal George Pell</a>, Catholic Archbishop of Sydney, and his handling of accusations of sexual assualt by a Catholic Priest.</p>
<p>I have nothing against people celebrating their beliefs, but when the act of performing those celebrations affects the way I, and many hundreds of thousands of other Sydneysiders, go about our daily activites, I have to question the legitimacy of the celebrations.</p>
<p>Am I being harsh? I don&#039;t think so. In both cases, the iPhone and the World Youth Day events, somebody is standing to make a lot of money, and your average citizen is having their liberites restricted so that that money can be made. For shame!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2008/07/apple-iphone-the-pope-what-next/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
