<?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</title>
	<atom:link href="http://www.thought-after.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thought-after.com</link>
	<description>Geeky stuff by Lafinboy</description>
	<lastBuildDate>Mon, 24 Oct 2011 00:05:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Senior PHP Developer role</title>
		<link>http://www.thought-after.com/2011/10/senior-php-developer-role/</link>
		<comments>http://www.thought-after.com/2011/10/senior-php-developer-role/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 23:31:29 +0000</pubDate>
		<dc:creator>Lafinboy</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[thought-after]]></category>

		<guid isPermaLink="false">http://www.thought-after.com/?p=152</guid>
		<description><![CDATA[Are you a crash hot PHP dev? Do you know one? If you can answer yes to either of these questions, read on! Holler Sydney are looking to make an &#8230; <a class="more" href="http://www.thought-after.com/2011/10/senior-php-developer-role/">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p>Are you a crash hot PHP dev? Do you know one? If you can answer yes to either of these questions, read on!</p>
<p>Holler Sydney are looking to make an immediate hire to fill a Senior PHP Developer role in their Sydney office. The usual list of requirements need to be fulfilled, and full details can be found in the attached <a href="http://www.thought-after.com/wp-content/uploads/2011/10/Senior-PHP-Developer.pdf">Senior PHP Developer job description</a>.</p>
<p>If you think you&#039;re a suitable fit for the requirements, are an Australian Citizen or Permanent Resident, and live in the Sydney area, get in touch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thought-after.com/2011/10/senior-php-developer-role/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 &#8230; <a class="more" href="http://www.thought-after.com/2010/08/ad-minister-plugin-catchable-fatal-error/">Continue reading</a>]]></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="php codesnip" style="font-family:monospace;">Catchable fatal error<span class="sy0">:</span> Object of <span class="kw2">class</span> WP_Error could not be converted to string in <span class="sy0">***</span><span class="coMULTI">/***/</span><span class="sy0">***/</span>wp<span class="sy0">-</span>includes<span class="sy0">/</span>functions<span class="sy0">.</span>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="php 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="st_h">&#039;post_title&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;Ad-minister Data Holder &#039;</span> <span class="sy0">.</span> <span class="re0">$nbr</span><span class="sy0">;</span><br />
<span class="re0">$_POST</span><span class="br0">&#91;</span><span class="st_h">&#039;post_type&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;administer&#039;</span><span class="sy0">;</span><br />
<span class="re0">$_POST</span><span class="br0">&#91;</span><span class="st_h">&#039;content&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;This post holds your Ad-minister data&#039;</span><span class="sy0">;</span><br />
<span class="re0">$id</span> <span class="sy0">=</span> wp_write_post<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
update_option<span class="br0">&#40;</span><span class="st_h">&#039;administer_post_id&#039;</span><span class="sy0">,</span> <span class="re0">$id</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</div>
<p>with the new code:</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;"><span class="co1">// Create a new one</span><br />
<span class="re0">$adminster_post</span> <span class="sy0">=</span> <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st_h">&#039;post_title&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;Ad-minister Data Holder &#039;</span> <span class="sy0">.</span> <span class="re0">$nbr</span><span class="sy0">;</span><br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st_h">&#039;post_type&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;administer&#039;</span><span class="sy0">;</span><br />
<span class="re0">$adminster_post</span><span class="br0">&#91;</span><span class="st_h">&#039;content&#039;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st_h">&#039;This post holds your Ad-minister data&#039;</span><span class="sy0">;</span><br />
<span class="re0">$id</span> <span class="sy0">=</span> wp_insert_post<span class="br0">&#40;</span> <span class="re0">$adminster_post</span><span class="sy0">,</span><span class="kw4">true</span> <span class="br0">&#41;</span><span class="sy0">;</span><br />
update_option<span class="br0">&#40;</span><span class="st_h">&#039;administer_post_id&#039;</span><span class="sy0">,</span> <span class="re0">$id</span><span class="br0">&#41;</span><span class="sy0">;</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>5</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[developer tools]]></category>
		<category><![CDATA[Firefox]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2010/03/live-site-development-with-firebug/">Continue reading</a>]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2009/03/the-innocent-age-of-comic-books/">Continue reading</a>]]></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[developer tools]]></category>
		<category><![CDATA[Firefox]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2009/01/web-developer-firefox-plugins/">Continue reading</a>]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2008/12/will-apathy-let-the-filter-in/">Continue reading</a>]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2008/09/seo-friendly-web-content-management-system-launched/">Continue reading</a>]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2008/08/using-gmail-notifier-with-https/">Continue reading</a>]]></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 &#8230; <a class="more" href="http://www.thought-after.com/2008/08/php-developer-position-available/">Continue reading</a>]]></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>
	</channel>
</rss>

