<?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>Atomicon</title>
	<atom:link href="http://www.atomicon.nl/feed" rel="self" type="application/rss+xml" />
	<link>http://www.atomicon.nl</link>
	<description>Code, Design, Tutorials, and plugins.</description>
	<lastBuildDate>Tue, 21 Feb 2012 08:39:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>VMware Webservices</title>
		<link>http://www.atomicon.nl/vmware-webservices</link>
		<comments>http://www.atomicon.nl/vmware-webservices#comments</comments>
		<pubDate>Mon, 20 Feb 2012 09:09:39 +0000</pubDate>
		<dc:creator>Yvo</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.atomicon.nl/?p=292</guid>
		<description><![CDATA[VMware deploys with a broken webservice (the definitions are incomplete) This can be easily fixed by following these steps. Download the SDK from VMware and manually install the definitions I hope this posts saves you some headache. Download the VMware SDK Extract all files Copy the files from SDK/vsphere-ws/wsdl/vim and SDK/vsphere-ws/wsdl/vim25 to your server e.g. C:\ProgramData\VMware\VMware VirtualCenter\docRoot\sdk (may be located elsewhere on your server) Thats it. You may restart your &#8220;VMware vCenter Server Web Services [...]]]></description>
			<content:encoded><![CDATA[<p>VMware deploys with a broken webservice (the definitions are incomplete)<br />
This can be easily fixed by following these steps.<span id="more-292"></span></p>
<p>Download the SDK from VMware and manually install the definitions<br />
I hope this posts saves you some headache.</p>
<ol>
<li><a href="http://www.vmware.com/support/developer/vc-sdk/">Download the VMware SDK</a></li>
<li>Extract all files</li>
<li>Copy the files from <strong>SDK/vsphere-ws/wsdl/vim</strong> and <strong>SDK/vsphere-ws/wsdl/vim25</strong> to your server e.g. <strong>C:\ProgramData\VMware\VMware VirtualCenter\docRoot\sdk</strong><br />
(may be located elsewhere on your server)</li>
</ol>
<p>Thats it. You may restart your &#8220;VMware vCenter Server Web Services HTTP&#8221; (via services) and everything should work perfectly.</p>
<p>Another headache case is connecting via the standard PHP-SoapClient since VMware accepts ONLY correctly namespaced XML packets</p>
<p>To solve this you&#8217;ll have to override your SoapClient here below I&#8217;ll demonstrate how to override</p>
<pre class="brush: php; title: ; notranslate">
//Overridden SoapClient (basically it injects the default XML-Schema instance)
class VMware_SoapClient extends SoapClient
{
    public function __doRequest($request,$location,$action,$version,$one_way = 0)
    {
        $inject = 'xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;';
        if (strpos($request, $inject) === false) {
            $pos = strpos($request, 'xmlns:');
            if ($pos !== false) {
                $pos = strpos($request, '&gt;', $pos);
                if ($pos !== false) {
                    $request = substr($request, 0, $pos) . ' ' . $inject . substr($request, $pos);
                }
            }
        }
        return parent::__doRequest($request, $location, $action, $version, $one_way);
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.atomicon.nl/vmware-webservices/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 for wordpress</title>
		<link>http://www.atomicon.nl/html5-for-wordpress</link>
		<comments>http://www.atomicon.nl/html5-for-wordpress#comments</comments>
		<pubDate>Tue, 29 Mar 2011 16:29:37 +0000</pubDate>
		<dc:creator>Yvo</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atomicon.nl/?p=194</guid>
		<description><![CDATA[The following code has HTML5 replacements for the doctype, and other elements for WordPress themes. Add this code to your header.php file and you site will use HTML5. For internet explorer compatibility it will include the html5shiv this code will recognize and style the HTML5 elements in internet explorer prior to version 9. Please backup(!) and check your theme carefully before deploying.]]></description>
			<content:encoded><![CDATA[<p>The following code has HTML5 replacements for the doctype, and other elements for WordPress themes. Add this code to your <strong>header.php</strong> file and you site will use HTML5.<span id="more-194"></span></p>
<pre class="brush: php; title: ; notranslate">

&lt;!DOCTYPE HTML&gt;
&lt;html &lt;?php language_attributes(); ?&gt;&gt;
&lt;head&gt;

&lt;meta charset=&quot;&lt;?php bloginfo('charset'); ?&gt;&quot; /&gt;

&lt;!--[if lt IE 9]&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://html5shiv.googlecode.com/svn/trunk/html5.js&quot;&gt;&lt;/script&gt;
&lt;![endif]--&gt;

&lt;style type=&quot;text/css&quot;&gt;
/* HTML5-specific CSS setup */
article,aside,figure,footer,header,hgroup,nav,section { display:block; }
&lt;/style&gt;
</pre>
<p>For internet explorer compatibility it will include the html5shiv this code will recognize and style the HTML5 elements in internet explorer prior to version 9.</p>
<p>Please backup(!) and check your theme carefully before deploying.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atomicon.nl/html5-for-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Members only access</title>
		<link>http://www.atomicon.nl/members-only-access</link>
		<comments>http://www.atomicon.nl/members-only-access#comments</comments>
		<pubDate>Mon, 28 Mar 2011 16:06:26 +0000</pubDate>
		<dc:creator>Yvo</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atomicon.nl/?p=175</guid>
		<description><![CDATA[Sometimes you only want to show content for registered users. You can think of zip-files with photo&#8217;s or other content. To do this in wordpress you can achieve this by following these instructions. Paste the following code in your functions.php file. (this file is located in your &#60;root&#62;/wp-content/themes/&#60;your-theme&#62;/ directory) Anytime when you post something with &#8220;registered users only&#8221;-content you can use it in the following way: As you can see it is very easy to [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you only want to show content for registered users. You can think of zip-files with photo&#8217;s or other content. To do this in wordpress you can achieve this by following these instructions.<span id="more-175"></span></p>
<p>Paste the following code in your <strong>functions.php</strong> file.<br />
<small>(this file is located in your <strong>&lt;root&gt;/wp-content/themes/&lt;your-theme&gt;/</strong> directory)</small></p>
<pre class="brush: php; title: ; notranslate">//register the shortcode in wordpress
add_shortcode( 'registered', 'registered_only_shortcode' );

function registered_only_shortcode( $atts, $content = null )
{
 //criteria
 //is the user logged in?
 //is the content not null?
 //isn't it an RSS request?
 if ( is_user_logged_in() &amp;&amp; !is_null( $content ) &amp;&amp; !is_feed() )
 {
 //the user matches the criteria... return the content.
 return $content;
 }
 else
 {
 //the user didn't match one of the criteria above.
 //so return nothing.
 return '';
 }
}</pre>
<p>Anytime when you post something with &#8220;registered users only&#8221;-content you can use it in the following way:</p>
<pre class="brush: xml; title: ; notranslate">

This is my post. Everybody can see it.

[registered]
You are registered so you can read this! Unregistered user can not see this text.
[/registered]
</pre>
<p>As you can see it is very easy to setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atomicon.nl/members-only-access/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling cache for stylesheets</title>
		<link>http://www.atomicon.nl/disabling-cache-for-stylesheets</link>
		<comments>http://www.atomicon.nl/disabling-cache-for-stylesheets#comments</comments>
		<pubDate>Sat, 26 Mar 2011 15:35:29 +0000</pubDate>
		<dc:creator>Yvo</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atomicon.nl/?p=150</guid>
		<description><![CDATA[What is &#8220;Cache&#8220;? Your browser (Firefox, Chrome, Internet Explorer, etc.—whatever application you use to surf the web) has a folder in which certain items that have been downloaded are stored for future access. Graphic images (such as buttons, banners, icons, advertising, graphs, and color bars), photographs, and even entire web pages are examples of cache items. When going to a page on a website, your computer will check its cache folder first to see if [...]]]></description>
			<content:encoded><![CDATA[<p>What is &#8220;<a title="Cache" href="http://en.wikipedia.org/wiki/Cache" target="_blank">Cache</a>&#8220;? Your browser (Firefox, Chrome, Internet Explorer, etc.—whatever application you use to surf the web) has a folder in which certain items that have been downloaded are stored for future access. <span id="more-150"></span>Graphic images (such as buttons, banners, icons, advertising, graphs, and color bars), photographs, and even entire web pages are examples of cache items. When going to a page on a website, your computer will check its cache folder first to see if it already has those images and, if so, it won&#8217;t take the time to download them again. This makes for a faster loading of the page. Cache folders can get quite large, however, and can occupy 40-to-50-to-100 megabytes or more of hard drive space, storing graphics for sites you may never visit again, so it may be wise for those with storage concerns to empty the cache periodically. That will also enable the browser to access updated web pages without the older cache item interfering. You can also limit how much cache is stored.</p>
<p>To disable caching in wordpress insert the following code in the <strong>&lt;head&gt;</strong> section of your theme:</p>
<pre class="brush: php; title: ; notranslate">&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('stylesheet_url'); echo '?'.filemtime( get_stylesheet_directory().'/style.css'); ?&gt;&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;</pre>
<p>The above line will insert append a number (<a title="Posix / Unix time" href="http://en.wikipedia.org/wiki/Unix_time" target="_blank">Posix time</a>) to the query string of the URL containing the time when file was last modified. This way your stylesheet file will always be up-to-date according to the file system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atomicon.nl/disabling-cache-for-stylesheets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AtomiconGallery for Joomla 1.5.x</title>
		<link>http://www.atomicon.nl/atomicongallery</link>
		<comments>http://www.atomicon.nl/atomicongallery#comments</comments>
		<pubDate>Thu, 03 Mar 2011 19:22:17 +0000</pubDate>
		<dc:creator>Yvo</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://atomicon.nl/?p=32</guid>
		<description><![CDATA[AtomiconGallery is a lightweight database-less gallery. The gallery is developed with the ease of use and designers in mind. Easy to implement and use for both you and/or your clients. The whole gallery setup is so transparent you can easily customize the gallery without being a Joomla! guru. It has a thumbnail generator/images resizer, you can add descriptions to your images. It also makes use of the fabulous slimbox. But that can also be easily [...]]]></description>
			<content:encoded><![CDATA[<p>AtomiconGallery is a lightweight database-less gallery.</p>
<p>The gallery is developed with the ease of use and designers in mind.</p>
<p>Easy to implement and use for both you and/or your clients.</p>
<p>The whole gallery setup is so transparent you can easily customize the gallery without being a Joomla! guru.<span id="more-32"></span></p>
<p>It has a thumbnail generator/images resizer, you can add descriptions to your images.</p>
<p>It also makes use of the fabulous slimbox.<br />
But that can also be easily overridden with your own lightbox implementation.</p>
<h2>Features</h2>
<ul>
<li><strong>Thumbnail and Image generation</strong><br />
Creating thumbnails and resizing images</li>
<li><strong>Easy implementation</strong><br />
Installation is easy and the parameters are easy to follow</li>
<li><strong>Transparent and clear CSS</strong><br />
The CSS setup is very transparent making it easy to customize for designers</li>
<li><strong>Runs out of the box</strong><br />
It runs straight out of the box</li>
<li><strong>Easy navigation</strong><br />
Users can easily navigate through the gallery</li>
<li><strong>Languages</strong><br />
Easily translate the gallery (support for three languages initially: English, Dutch, German and Swedish)</li>
</ul>
<p><a name="changelog"></a></p>
<h2>Changelog</h2>
<ul>
<li>Security fix: As of 16 september changed the chmod 0777 to 0755</li>
<li>Fixed the &#8216;exotic filenames&#8217; bug (e.g. names like &#8216;ab(20).jpg&#8217; work from now on.</li>
<li>Added the swedish language (huge thanks to: Ola Heed, from <a href="http://www.gadgit.se" target="_blank">www.gadgit.se</a>)</li>
<li>Fixed a few common CSS problems with templates.</li>
</ul>
<h2>Demo&#8217;s</h2>
<ul>
<li><a href="http://www.bebold.org.uk/dir/index.php?option=com_atomicongallery&amp;view=atomicongallery&amp;Itemid=76">Bebold</a></li>
<li><a href="http://www.theselnetwork.sg/index.php?/component/option,com_atomicongallery/folder,new/">The SEL Network</a></li>
<li><a href="http://www.flarefilms.co.uk/joomla/index.php?option=com_atomicongallery&amp;view=atomicongallery&amp;Itemid=60">Flare Films</a></li>
<li><a href="http://www.kalanexpo.com/index.php?option=com_atomicongallery&amp;view=atomicongallery&amp;Itemid=8&amp;lang=en">Kalanexpo</a></li>
<li><a href="http://www.kungfu.net.au/image-gallery.html">Kung Fu Academy</a></li>
<li><a href="http://www.discoverhenna.com/photo-gallery?folder=Henna+Miscellaneous+Designs">Henna</a></li>
<li><a href="http://www.janetdingen.nl/albums?folder=Triathlon+Holten">Janet Dingen Photography</a></li>
<li><a href="http://www.hrisouthasian.org/index.php?option=com_atomicongallery&amp;folder=Gandharva&amp;Itemid=18">Institute for southasian research</a></li>
<li><a href="http://www.steampunknz.co.nz/index.php?option=com_atomicongallery&amp;folder=Steampunk+Exhibition+2010%2FSteampunk+Artworks+outside+the+Forrester&amp;Itemid=66">Steampunk new zealand</a></li>
<li><a href="http://www.smithfield-nc.com/index.php?option=com_atomicongallery&amp;folder=Public+Works%2FLitter+Sweep+Fall+2010&amp;Itemid=274">Smithfield North Carolina</a></li>
<li><a href="http://www.smithfield-nc.com/index.php?option=com_atomicongallery&amp;folder=Public+Works%2FLitter+Sweep+Fall+2010&amp;Itemid=274">Casa Bandidos</a></li>
<li><a href="http://www.vanbastenmakelaars.nl/index.php?option=com_atomicongallery&amp;folder=Referenties&amp;Itemid=7">Van Basten makelaars</a></li>
<li><a href="http://shotsofjoyphotography.com/index.php?option=com_atomicongallery&amp;folder=Miscellaneous/thumbs">Shots of Joy photography</a></li>
</ul>
<p><small>And these are just a few&#8230; if you want your one listed here please <a title="Contact" href="http://www.atomicon.nl/contact">contact</a> me and I&#8217;ll be happy to add your site!<br />
</small></p>
<div class="aligncenter atomicongallery-download" style="width: 300px;">
<p>&nbsp;</p>
<div id="bsap_1262429" class="bsarocks bsap_9836c8c2ae7f635e330f0fd17215ae03"></div>
<p>&nbsp;</p>
<div class="download"><a href="http://www.atomicon.nl/wp-content/plugins/download-monitor/download.php?id=1" title="AtomiconGallery">Download</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.atomicon.nl/atomicongallery/feed</wfw:commentRss>
		<slash:comments>119</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.atomicon.nl/feed ) in 1.09811 seconds, on Feb 21st, 2012 at 9:34 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 28th, 2012 at 9:34 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  www.atomicon.nl/feed ) in 0.87735 seconds, on Feb 23rd, 2012 at 1:35 am UTC. -->
