<?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>Aytemir.com...Creative Daydreaming</title>
	<atom:link href="http://aytemir.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aytemir.com</link>
	<description></description>
	<lastBuildDate>Sat, 06 Mar 2010 13:26:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Just installed the P2 theme by Wordpress&#8230;</title>
		<link>http://aytemir.com/just-installed-the-p2-theme-by-wordpress/</link>
		<comments>http://aytemir.com/just-installed-the-p2-theme-by-wordpress/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 19:29:24 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/just-installed-the-p2-theme-by-wordpress/</guid>
		<description><![CDATA[Just installed the P2 theme by Wordpress; needed a more clean theme and found out with http://fan-tas-tic.com designing your own is too much time consuming&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just installed the P2 theme by Wordpress; needed a more clean theme and found out with <a href="http://fan-tas-tic.com" rel="nofollow">http://fan-tas-tic.com</a> designing your own is too much time consuming&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/just-installed-the-p2-theme-by-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery Image Sharing with Google Buzz</title>
		<link>http://aytemir.com/gallery-image-sharing-google-buzz/</link>
		<comments>http://aytemir.com/gallery-image-sharing-google-buzz/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 21:14:17 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[google buzz]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1126</guid>
		<description><![CDATA[Google Buzz seems the next hot thing in the tech savy blog world&#8230;and I kinda like it. There are already a lot of tutorials for getting started as a developer/designer with it, but as always the one feature I need for my gallery site is missing: sharing gallery images with Google Buzz.
For some live demo [...]]]></description>
			<content:encoded><![CDATA[<p>Google Buzz seems the next hot thing in the tech savy blog world&#8230;and I kinda like it. There are already a lot of tutorials for getting started as a developer/designer with it, but as always the one feature I need for my gallery site is missing: <strong>sharing gallery images with Google Buzz.</strong></p>
<p>For some live demo and examples check out the <a href="http://fan-tas-tic.com/categories/">sub categories</a>, <a href="http://fan-tas-tic.com/stats/">sub stats</a>, <a href="http://fan-tas-tic.com/tags/">tags</a> or any single posts at the <a href="http://fan-tas-tic.com/">Fan-tas-tic! Inspiration Galleries</a>: click on the Google Buzz button and see what the buzz is about!</p>
<p><span id="more-1126"></span></p>
<p>As you may have noticed from de demo above I&#8217;ve got my social sharing and bookmark stuff also <em>outside the loop</em>, which makes this a bit trickier than it should.</p>
<p>That&#8217;s why my code is centrally in the functions.php of my Wordpress theme. And here&#8217;s how full code behind the Google Buzz button looks like:<br />
<img src="http://aytemir.com/wp-content/uploads/2010/02/buzz-code.png" alt="Buzz Code for Sharing Images" /></p>
<p>Let&#8217;s dissect the code for a quick analysis.</p>
<h3>The URL</h3>
<p>Line 1 contains the URL you want to buzz; the variable <strong>$share_link</strong> is the URL you want to pass through.  You can replace this with <strong>the_permalink()</strong> if you are on a single post page.<br />
I use the Buzz button also on other pages than the single post page. Therefore I need to use the following function in the <em>functions.php</em>:</p>
<pre class="brush: php">
function ftt_get_currenturl(){ return &#039;http://&#039;.$_SERVER[&quot;HTTP_HOST&quot;].$_SERVER[&quot;REQUEST_URI&quot;]; }
</pre>
<h3>The title</h3>
<p>Line 2 contains the title we want to buzz: although you can use <strong>the_title()</strong> when on a single post page, I use <strong>wp_title()</strong>, because I use the Buzz button also on other pages.</p>
<h3>The thumbnail</h3>
<p>Line 3 contains the actual image we want to buzz, along with some optional text.<br />
Already somewhere above this you should have the following statement to get the proper thumbnail for the current post (when on a single page) or the last thumbnail/post on the page, which should be satisfactory too:</p>
<pre class="brush: php">$thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(), &#039;thumbnail&#039;);
</pre>
<h3>The Result</h3>
<p>That should do the trick! Now, when you click on the Google Buzz, you should get something like this:<br />
<a href="http://aytemir.com/wp-content/uploads/2010/02/Image-Sharing-with-Google-Buzz.jpg"><img class="alignleft size-full wp-image-1127" title="Image Sharing with Google Buzz" src="http://aytemir.com/wp-content/uploads/2010/02/Image-Sharing-with-Google-Buzz.jpg" alt="" width="521" height="273" /></a></p>
<p>You can play around and adjust stuff to your liking. Let me know in the comments, whether this works for your (gallery) site.</p>
<h3>UPDATE</h3>
<p>Note that something is messing the code displayed in this post! Maybe because I&#8217;ve just upgraded to WP 2.9.2!?<br />
So I had to resort to screenshots&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/gallery-image-sharing-google-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AZIndex: sort groupheader URL</title>
		<link>http://aytemir.com/azindex-sort-groupheader-url/</link>
		<comments>http://aytemir.com/azindex-sort-groupheader-url/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:28:46 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1112</guid>
		<description><![CDATA[Like the TDO mini form plugin the AZIndex is an incredible powerful plugin&#8230;but also lacks a certain feature, which would make it just perfect: URL&#8217;s for the header, the subheaders are grouped by. 


AZIndex is just great, but the following mini-hack will make it simply perfect. By adding a simple yet necessary feature: generating an [...]]]></description>
			<content:encoded><![CDATA[<p>Like the <a href="http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/">TDO mini form plugin</a> the <a href="http://azindex.englishmike.net/">AZIndex</a> is an incredible powerful plugin&#8230;but also lacks a certain feature, which would make it just perfect: URL&#8217;s for the header, the subheaders are grouped by. </p>
<p><a href="http://aytemir.com/wp-content/uploads/2010/02/AZIndex-groupby-URL.jpg"><img src="http://aytemir.com/wp-content/uploads/2010/02/AZIndex-groupby-URL.jpg" alt="" title="AZIndex BEFORE and AFTER example" width="500" height="150" class="alignleft size-full wp-image-1113" /></a></p>
<p><span id="more-1112"></span></p>
<p>AZIndex is just great, but the following mini-hack will make it simply perfect. By adding a simple yet necessary feature: generating an URL for the groupheaders: see <a href="http://fan-tas-tic.com/artists/">http://fan-tas-tic.com/artists/</a> for a live demo and imagine you can&#8217;t click the author names for an example of the original plugin without this lill&#8217; hack. </p>
<p>The general assumption is that the plugin is abandoned by its original author, since there hasn&#8217;t been any reaction on the <a href="http://azindex.englishmike.net/azindex/feedback/">official AZIndex plugin feedback page</a> by the author. So I had to it myself. Again.</p>
<p>The following instructions makes sure a groupheader (tags, author or categy) has an accompanying link (when a subheader is selected).<br />
The most recent version (0.8.1) has been used for this hack, but you should be able to implement it also in older or newer versions following the next steps:<br />
0. Make your backups or try this on a local installation as always with hacks (although I&#8217;ve got a nasty habit myself of hacking directly on my live sites <img src='http://aytemir.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but do as I say, not as I do)<br />
1. Get the original plugin from <a href="http://wordpress.org/extend/plugins/azindex/">the Wordpress plugin repository</a>.<br />
2a. Either unzip the plugin and <em>edit az-index-content.php</em><br />
2b. Or upload the unzipped plugin directly and open <em>az-index-content.php</em> via the plugin-editor<br />
3. Apply the following changes:<br />
a. Find around rownumber 172 the following statement:</p>
<pre class="brush: php">
$link = get_permalink($item[&#039;id&#039;]);
</pre>
<p>b. Add the next statements <strong>beneath</strong> this line:</p>
<pre class="brush: php">
//aytemir.com: start mini-hack
$groupheader=&#039;&#039;;
$groupheader=$index-&gt;head;
if ($groupheader==&#039;author&#039;) {
  $groupheader_id=get_userdatabylogin($item[&#039;head&#039;]);
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?author=&#039;.$groupheader_id-&gt;ID;
} elseif ($groupheader==&#039;cats&#039;) {
  $groupheader_id=get_cat_id($item[&#039;head&#039;]);
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?cat=&#039;.$groupheader_id;
} elseif ($groupheader==&#039;tags&#039;) {
  $groupheader_id=$item[&#039;head&#039;];
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?tag=&#039;.$groupheader_id;
}
//aytemir.com: end mini-hack
</pre>
<p>c. The code is self-explanatory, I think: just get the header you want to sort/order by, retieve the accompanying ID and generate an URL and apply URL in case of tag, category or author.<br />
d. Find (around rownumber 203) the following statement:</p>
<pre class="brush: php">
$output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/span&gt;&#039;.$cr;
</pre>
<p>e. And <strong>replace</strong> it with the following statement:</p>
<pre class="brush: php">
//aytemir.com: start mini-hack
if ($groupheader==&#039;author&#039; || $groupheader==&#039;cats&#039; || $groupheader==&#039;tags&#039;) {
  $output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&lt;a href=&quot;&#039;.$groupheader_url.&#039;&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/a&gt;&lt;/span&gt;&#039;.$cr;
} else {
  $output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/span&gt;&#039;.$cr;
}
//aytemir.com: end mini-hack
</pre>
<p>5. Save and test it (locally) and let me know if it works for you.</p>
<p>Don’t want to bother &#8216;hacking&#8217; yourself? You could also download the fully zipped version with the hack already implemented:<br />
1. <a href="http://aytemir.com/wp-content/files/azindex.zip">Download this hacked version, which I doped 0.8.2</a><br />
2. Upload, activate and test the plugin.</p>
<p>For usage and configuration instructions please refer to the original plugin site. </p>
<p>If you should run into issues regarding this specific hack, please let me know in the comments.</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/azindex-sort-groupheader-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTT!:10 fan-tas-tic images of 2009!</title>
		<link>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/</link>
		<comments>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 18:14:58 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[best of]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[top list]]></category>
		<category><![CDATA[toplists]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1095</guid>
		<description><![CDATA[Simply a selection of 10 of the most fan-tas-tic images from fan-tas-tic.com. The site is still in alpha and there has been only a soft launch, but it working out quit well.
Once in beta the site should be full of images which can only rated as as &#8216;FTT!&#8217;&#8230;fan-tas-tic!
Eos Divine Protection


Red Sonja


Flight of the Dragon



Angel and [...]]]></description>
			<content:encoded><![CDATA[<p>Simply a selection of 10 of the most fan-tas-tic images from <a href="http://fan-tas-tic.com">fan-tas-tic.com</a>. The site is <a href="http://aytemir.com/fan-tas-tic-user-generated-galleries/">still in <strong>alpha</strong></a> and there has been only a soft launch, but it working out quit well.<br />
Once in <strong>beta</strong> the site should be full of images which can only rated as as &#8216;FTT!&#8217;&#8230;fan-tas-tic!</p>
<h3>Eos Divine Protection<br />
<h3>
<a href="http://fan-tas-tic.com/eos-divine-protection/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Eos-Divine_Protection.jpg" alt="Eos Devine Protection" /></a></p>
<h3>Red Sonja<br />
<h3>
<a href="http://fan-tas-tic.com/red-sonja/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Red-Sonja.jpg" alt="Red Sonja" /></a></p>
<h3>Flight of the Dragon<br />
<h3>
<a href="http://fan-tas-tic.com/flight-dragon/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Flight-of-the-Dragon.jpg" alt="Flight of the Dragon" /></a></p>
<p><span id="more-1095"></span></p>
<h3>Angel and Demons<br />
<h3>
<a href="http://fan-tas-tic.com/angel-demons/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Angel-and-Demons.jpg" alt="Angel and Demons" /></a></p>
<h3>Dungeons &#038; Dragons: Legendary Boon<br />
<h3>
<a href="http://fan-tas-tic.com/legendary-boon-kerem-beyit/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Legendary-Boon-Kerem-Beyit.jpg" alt="Dungeons &#038; Dragons: Legendary Boon" /></a></p>
<h3>Budapest – Fantasy landscape<br />
<h3>
<a href="http://fan-tas-tic.com/budapest-fantasy-landscape-kornel-ravadits/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Budapest-Fantasy-landscape1.jpg" alt="Budapest – Fantasy landscape" /></a></p>
<h3>The God of Hellfire<br />
<h3>
<a href="http://fan-tas-tic.com/god-hellfire/"><img src="http://aytemir.com/wp-content/uploads/2009/12/God-of-Hellfire.jpg" alt="The God of Hellfire" /></a></p>
<h3>Fusion<br />
<h3>
<a href="http://fan-tas-tic.com/fusion-luis-royo/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Luis-Royo-Fusion.jpg" alt="Fusion by Luis Royo" /></a></p>
<h3>Purple Mage<br />
<h3>
<a href="http://fan-tas-tic.com/purple-mage/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Purple-Mage-Chan-Yoo-Seok.jpg" alt="Purple Mage" /></a></p>
<h3>Black God&#8217;s Kiss<br />
<h3>
<a href="http://fan-tas-tic.com/black-gods-kiss-arnistotle/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Black_God__s_Kiss_by_arnistotle.jpg" alt="Black God's Kiss" /></a></p>
<p>Once you&#8217;re at <a href="http://fan-tas-tic.com">fan-tas-tic.com</a> don&#8217;t forget the rate the images you think it&#8217;s FTT!</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t believe the hype of Gridservice</title>
		<link>http://aytemir.com/dont-believe-the-hype-of-gridservice/</link>
		<comments>http://aytemir.com/dont-believe-the-hype-of-gridservice/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 21:21:18 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[mediatemple]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1074</guid>
		<description><![CDATA[The MediaTemple Grid-service &#8220;is a cluster-based, modern hosting service powered by hundreds of servers working in tandem to power your websites, applications and email with unrivaled power, burstability and reliability&#8221;.
Sounds great, doesn&#8217;t it? 

Background story
I&#8217;ve just recently moved to MediaTemple and at this moment my following sites are hosted with (mt): aytemir.com (that would be [...]]]></description>
			<content:encoded><![CDATA[<p>The MediaTemple Grid-service &#8220;is a cluster-based, modern hosting service powered by hundreds of servers working in tandem to power your websites, applications and email with unrivaled power, burstability and reliability&#8221;.<br />
Sounds great, doesn&#8217;t it? </p>
<p><img src="http://aytemir.com/wp-content/uploads/2009/11/mediatemple2.jpg" alt="The hype of Grid-Service" /></p>
<h3>Background story</h3>
<p>I&#8217;ve just recently moved to <a href="http://mediatemple.net/">MediaTemple</a> and at this moment my following sites are hosted with (mt): aytemir.com (that would be this blog), <a href="http://fan-tas-tic.com" title="User Generated Galleries!">fan-tas-tic.com</a> and <a href="http://voetbalportaal.com" title="Exclusive Turkish Dutch soccerforum">VoetbalPortaal.com</a>.<br />
All three sites have very humble amount of traffic to handle and are Wordpress or vBulletin powered, with some standard popular plugins or mods.<br />
Nothing fancy. Nothing special.<br />
<span id="more-1074"></span><br />
Because VoetbalPortaal.com grow slowy too big for the shared host I was with, I had to move (all my sites) and I believed the hype and decided to move to the &#8217;state of the art&#8217; and &#8216;digg-proof&#8217; grid-service of MediaTemple. You never know when you&#8217;re gonna need a &#8216;digg-proof&#8217; host, I guess <img src='http://aytemir.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  . And boy did I regret that! And still do regret it!</p>
<p>I had no reason not the believe what they <a href="http://mediatemple.net/webhosting/gs/features/">claim on their site</a>: TechCrunch is hosted with them. And a sub-devision of Sony. Although on a more expensive plan. <a href="http://mediatemple.net/company/clients/#gs_testimonials">But also a lot of (big) blogs are also with the unrivaled Grid-Service of MediaTemple</a>.</p>
<h3>Here comes trouble</h3>
<p>Since I&#8217;ve moved to (mt) and settled everything all seemed fine, excepts the servers where slower than I was used to with the cheap host I used to be. Bad luck, I guess.<br />
But from day one I got &#8216;Lost connection to MySQL server during query&#8217;, &#8216;User *** already has more than &#8216;max_user_connections&#8217; active connections&#8217; and &#8216;Out of memory&#8217; errors via the vBulletin backend. My site had been down for several minutes several times: Although (mt) thought that this may have been caused by &#8216;bad neighbours&#8217;, I never had this kind of issues with other (normal) shared hosts!</p>
<h3>Here comes the $olution</h3>
<p>And different employees from (mt)-support all <strong>suggested me that I should buy an additional service to make up for the initial service, which should be correctly working in the first place:</strong> I should get a MySQL Gridcontainer to make sure I wouldn&#8217;t bother by other customers on the same cluster. </p>
<p>Although I thought that was ridiculous and I expected to have 99,9% uptime and database-connection and I shouldn&#8217;t have to buy an additional service for a simple and humble site&#8230;I had no choice, because (mt) had me &#8216;by the balls&#8217;: <strong>I had already lost 50% of my monthly unique visitors</strong> during the transition* to (mt) and I could not afford to loose more!</p>
<h3>More toruble? More $olution!</h3>
<p>So I decide to purchase an additional MySQL Gridcontainer. Now I don&#8217;t have the &#8216;Lost connection to MySQL server during query&#8217;, &#8216;User *** already has more than &#8216;max_user_connections&#8217; active connections&#8217; warnings anymore.<br />
But I do have &#8216;Out of memory&#8217; warnings and even more frequently than before. And guess what (mt) is suggesting as a possible solution? Yes, you&#8217;re right!<br />
<strong>They suggest I should buy an additional service to make up for the initial service, which should be correctly working in the first place:</strong> I should upgrade the memory of my Gridcontainer!</p>
<p>The irony of al this situation is that I had no issues with any of my humble sites at all when I was at the &#8216;el cheapo&#8217; host for only 30,- euro&#8217;s a year!<br />
Now I&#8217;m having frequently database-connection error, out of memory errors and I&#8217;m not the only one as far as I can tell from the Support Forums. And (most) of us have only simple websites.</p>
<h3>The conclusion</h3>
<p>Long story short: <strong>don&#8217;t believe the hype of the Grid-Service</strong> (maybe this goes only for MediaTemple) and the &#8216;digg-proof&#8217; claims they make; at the moment it&#8217;s very <strong>in-stable</strong> and it has <strong>problems handling a very average sites</strong> like aytemir.com, <a href="http://fan-tas-tic.com" title="User Generated Galleries!">fan-tas-tic.com</a> and <a href="http://voetbalportaal.com" title="Exclusive Turkish Dutch soccerforum">VoetbalPortaal.com</a>.<br />
And when there are no errors, <strong>the sites are very slow</strong> compared to what I&#8217;m used to&#8230;before I&#8217;ve moved them to MediaTemple.</p>
<p>So just make sure you do more research than I did before moving to another host&#8230;or you may end up paying and upgrading to most advanced servers and services, just to host a humble Wordpress blog or a vBulletin powered forum!</p>
<h3>Disclaimers</h3>
<p>PS: the (mt) support is just advising and suggesting and they&#8217;re not really &#8216;forcing&#8217; me buy additional service to make up for their initial service, which does not deliver what they promise.</p>
<p>PS: there are <a href="http://mediatemple.net/company/clients/#gs_testimonials">testimonials of (mt) Gris-Service users which are just happy</a> and claim their service does just what it should!</p>
<p>*This is not <em>all</em> (mt)&#8217;s fault, because I had to switched from .nl to .com for personal reasons, but constant db-connection errors made things worse.</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/dont-believe-the-hype-of-gridservice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fan-tas-tic! User Generated Galleries</title>
		<link>http://aytemir.com/fan-tas-tic-user-generated-galleries/</link>
		<comments>http://aytemir.com/fan-tas-tic-user-generated-galleries/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:23:33 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1043</guid>
		<description><![CDATA[  
It took me longer than foreseen, but after a couple of different approaches there is a final alpha version of my fan-tas-tic project. Although still in a alpha stage, I think a soft launch with this post is a logical move prior to a beta version: behold FAN-TAS-TIC! User Generated Galleries.
WTF is FTT!
FTT! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_2.png" alt="ftt_2" title="ftt_2" width="150" height="387" class="alignleft size-full wp-image-1059" /></a> <a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_1.png" alt="ftt_1" title="ftt_1" width="150" height="214" class="alignleft size-full wp-image-1058" /></a> <a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_3.png" alt="ftt_3" title="ftt_3" width="150" height="391" class="alignleft size-full wp-image-1060" /></a></p>
<p>It took me longer than foreseen, but after a couple of different approaches there is a final <em>alpha</em> version of my fan-tas-tic project. Although still in a alpha stage, I think a <em>soft launch</em> with this post is a logical move prior to a beta version: behold <a href="http://fan-tas-tic.com">FAN-TAS-TIC! User Generated Galleries</a>.</p>
<p><strong>WTF is FTT!</strong><br />
FTT! is actually designed and developed as a pure <em>personal</em> project: a fantastic image gallery, with &#8216;fantastic&#8217; covering the genres science-fiction, (heroic) fantasy/sword &#038; sorcery, gothic, horror, anime <em>and</em> the quality of the art self displayed at the gallery.</p>
<p><strong>So…yet another gallery?</strong><br />
Supervisually yes…it’s nothing more than just another gallery.</p>
<p>However some of the features what should make FTT! really unique compared to other galleries are:<span id="more-1043"></span><br />
<strong>Banner blindness prove</strong>:</p>
<ul>
<li> All sponsor/ad banners are blended in the design, so the users are ‘bothered’ as little as possible</li>
<li> The banner spots are randomly generated to minimize the &#8216;blindness&#8217; effect</li>
<li> Also the single post banner is very visible, yet blended</li>
</ul>
<p><strong>Quality of the content</strong>:</p>
<ul>
<li> Advanced user submission form (to be moderated by admin for ‘quality control’)</li>
<li> Only fan-tas-tic images are approved; no doodles here!</li>
<li> All images are categorized, tagged and archived and are available via the statistics</li>
<li> All uploads have (if available) a link to the original author and gallery and/or the source of the image</li>
</ul>
<p><strong>User friendly UI</strong>:</p>
<ul>
<li> Any image can be rated (and is automatically ranked)</li>
<li> Also the less rated and low rated images are highlighted (randomly or via related posts)</li>
<li> Different kind of archives are present: monthly, yearly, per category or per uploader/submitter</li>
<li> Most and least rated post  are relative to the current tag, category of the single post</li>
<li> Simple navigation (sub)menu’s showing all submenu</li>
<li> Statistics: Overview of the last rated images and the highest, lowest, most and least rated images</li>
</ul>
<p>I&#8217;ve also left some additional features out, which were time consuming to implement…maybe they’ll make it in the next version</p>
<p><strong>Still to do…</strong><br />
Although I need to work some details out and have to do a lot of code cleaning and optimization and the GUI is somewhat Spartan, the site is live and is ready to be (alpha-)tested.</p>
<p><strong>Feedback?</strong><br />
Any constructive feedback for this alpha-version is welcome in the comments below…<a href="http://fan-tas-tic.com"></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/fan-tas-tic-user-generated-galleries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>1 reason why ‘Avatar’ is gonna be the most overrated movie of 2009!</title>
		<link>http://aytemir.com/1-reason-why-%e2%80%98avatar%e2%80%99-is-gonna-be-the-most-overrated-movie-of-2009/</link>
		<comments>http://aytemir.com/1-reason-why-%e2%80%98avatar%e2%80%99-is-gonna-be-the-most-overrated-movie-of-2009/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 17:27:56 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[hollywood]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1016</guid>
		<description><![CDATA[
Visitors on this blog and commentators on Reddit gave me a harsh time on my post 10 reasons why ‘Batman: The Dark Knight’ is the most overrated movie of 2008! back in 2008.
So with this post, which is just based on a teaser, I&#8217;m not gonna be that harsh myself this time: I&#8217;m just stating [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com.s76502.gridserver.com/wp-content/uploads/2009/08/avatar2.jpg" alt="James Cameron's Avatar" /><br />
Visitors on this blog and commentators on <a href="http://www.reddit.com/user/SenerAytemir/">Reddit</a> gave me a harsh time on my post <a href="http://aytemir.com/10-reasons-why-batman-the-dark-knight-is-the-most-overrated-movie-of-2008/">10 reasons why ‘Batman: The Dark Knight’ is the most overrated movie of 2008!</a> back in 2008.<br />
So with this post, which is just based on a teaser, <strong>I&#8217;m</strong> not gonna be that harsh myself this time: I&#8217;m just stating 1 obvious reason why James Cameron&#8217;s Avatar is going to be the most overrated movie of 2009!<br />
<span id="more-1016"></span></p>
<p><strong>It&#8217;s being overhyped. Over-hyped. Uber-hyped.</strong></p>
<p>If you still haven&#8217;t checked out the trailer, do it now:</p>
<p><object width="450" height="242"><param name="movie" value="http://www.traileraddict.com/emd/13413"></param><param name="allowscriptaccess" value="always"><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.traileraddict.com/emd/13413" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" width="450" height="242" allowFullScreen="true"></embed></object></p>
<p>And? Impressed? Underwhelmed? Overwhelmed? Also in HDplus? And would you be impressed on the big screen?<br />
And the characters/aliens? Aren&#8217;t they just&#8230;average? If you&#8217;ve seen some good <a href="http://www.videogametrailers.com">video games cinematics</a> (lately), you possibly can&#8217;t be <strong>over</strong>whelmed.</p>
<p>At the moment I&#8217;m very underwhelmed.<br />
Although the story/plot of the movie, the big (3D) screen and actual dialogues may safe the movie when actually released.<br />
It will probably make good money at the box-office and it may end up as a great movie after all&#8230;but at this time it&#8217;s just like I&#8217;m looking at a less clumsy blue version of Jar Jar Binks.</p>
<p>PS: the Avatar concept is a very cool idea and is &#8216;borrowed&#8217; from a magnificent short story by my all-time favourite author Jack Vance, <a href="http://www.locusmag.com/index/t45.htm#A5519">Phalid’s Fate</a>.</p>
<p><strong>And how about you?</strong> Are you impressed with (the Special Effects of the) teaser of this 200+ million dollars and 10 years in the making movie, which should &#8216;redefine&#8217; the genre and &#8216;make real actors obsolete&#8217;?</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/1-reason-why-%e2%80%98avatar%e2%80%99-is-gonna-be-the-most-overrated-movie-of-2009/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>From splitting headaches to splitting blogs</title>
		<link>http://aytemir.com/from-splitting-headaches-to-splitting-blogs/</link>
		<comments>http://aytemir.com/from-splitting-headaches-to-splitting-blogs/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 17:52:51 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=998</guid>
		<description><![CDATA[
Yes, this is a typical post where the blogger tells that he&#8217;s aware that he hasn’t blogged for a while. And no, I don’t think that blogging is dead nor have been converted (fully) to Twitter or FB (yet), although I do have sleeping account in the meantime at both services.

I&#8217;ve been busy working out [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com.s76502.gridserver.com/wp-content/uploads/2009/07/Splitting-headaches2.jpg" alt="Credits: <a href="http://www.jefframirez.com/" rel="nofollow">http://www.jefframirez.com/</a>" title="Credits: <a href="http://www.jefframirez.com" rel="nofollow">http://www.jefframirez.com</a>"/><br />
Yes, this is a typical post where the blogger tells that he&#8217;s aware that he hasn’t blogged for a while. And no, I don’t think that <a href="http://www.readwriteweb.com/archives/is_blogging_dead.php">blogging is dead</a> nor have been converted (fully) to Twitter or FB (yet), although I do have sleeping account in the meantime at both services.<br />
<span id="more-998"></span><br />
I&#8217;ve been busy working out some new concepts/blogs. Therefore I&#8217;m kinda struggling to get the <a href="http://www.binarymoon.co.uk/2009/07/timthumb-beta-test/">new version of timbthumb</a> to work. Without any success yet.</p>
<p>Another thing what keeps me bugging: after having watched a (good) movie, I feel the urge to rant/rave about it. Although I know the internets full of rants and raves about any movie I can think of.<br />
But I feel a movieblog coming up anyway&#8230;I&#8217;ve gotta get this out of ma system.<br />
And I want to keep this blog purely development/design and blog related. Although the sidebar is a great spot for a lifestream of the other blogposts.</p>
<p>And also other ideas/blogs keep crawling in my head, so I decided to do some research how to manage multple blogs centrally.<br />
I’ve decided to keep them al separate after all. Because for the central admin options they all need to be on the same domain.</p>
<p>Hope to have some real results and a &#8216;real&#8217; blogpost very soon <img src='http://aytemir.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Probably about other blogs!</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/from-splitting-headaches-to-splitting-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDO Mini Forms: upload path/URL mini hack</title>
		<link>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/</link>
		<comments>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:26:34 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=965</guid>
		<description><![CDATA[
The TDO Mini Forms Wordpress Plugin is simply one of these plugins you&#8217;ll end up using, when you&#8217;ll be using WordPress for more than &#8216;just another blog&#8217;.
For my upcoming project I was looking for a fully customizable end user form and after having tried a bunch, TDO mini forms was simply the best.
I still don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/05/hack2.jpg" alt="" /></p>
<p>The <a href="http://thedeadone.net/download/tdo-mini-forms-wordpress-plugin/">TDO Mini Forms Wordpress Plugin</a> is simply one of these plugins you&#8217;ll end up using, when you&#8217;ll be using WordPress for more than &#8216;just another blog&#8217;.</p>
<p>For my upcoming project I was looking for a fully customizable end user form and after having tried a bunch, TDO mini forms was simply the best.<br />
I still don&#8217;t understand why it is called &#8216;mini&#8217; because it has a ton of options and almost all of them very useful.<br />
<span id="more-965"></span><br />
The only issue I got with it was with the file/image upload widget: It was putting the uploaded files in  <strong>wp-content/uploads/subfolder</strong> where I wanted them in <strong>wp-content/uploads/year/month</strong>.</p>
<p>Although there are usefull hints in <a href="http://thedeadone.net/forum/?cat=8">the support forum</a>, they wont get you there exactly. So here is the hack to solve this issue:<br />
In the plugins folder replace line 552 (up until the line &#8220;// store info about files on post&#8221;) in file <strong>tdomf-upload-functions.php</strong> from this</p>
<pre class="brush: php">
$postdir = $options[&#039;path&#039;].DIRECTORY_SEPARATOR.$post_ID;
</pre>
<p>to this</p>
<pre class="brush: php">
$yearID=date(&quot;Y&quot;);
$monthID=date(&quot;m&quot;);

$postdir = $options[&#039;path&#039;].$yearID.DIRECTORY_SEPARATOR.$monthID;
$postdir2 = $options[&#039;url&#039;].$yearID.&quot;/&quot;.$monthID;

tdomf_recursive_mkdir($postdir,TDOMF_UPLOAD_PERMS);
tdomf_recursive_mkdir($postdir2,TDOMF_UPLOAD_PERMS);
$newpath = $postdir.DIRECTORY_SEPARATOR.$theirfiles[$i][&#039;name&#039;];
$newpath2 = $postdir2.DIRECTORY_SEPARATOR.$theirfiles[$i][&#039;name&#039;];

if(rename($theirfiles[$i][&#039;path&#039;], $newpath)) {

        $newpath = realpath($newpath);
        $newpath2 = realpath($newpath2);
</pre>
<p>Note that a variable 2 is added, just after the original.<br />
Also note, that I&#8217;ve replaced the variable DIRECTORY_SEPARATOR in $postdir2 into &#8220;/&#8221;, cause it was giving me headaches.</p>
<p>In line 564 in the same file add just beneath this line</p>
<pre class="brush: php">
add_post_meta($post_ID,TDOMF_KEY_DOWNLOAD_PATH.$i, $wpdb-&gt;escape($newpath),true);
</pre>
<p>the following</p>
<pre class="brush: php">
add_post_meta($post_ID,ftt_path,$postdir2,true);
</pre>
<p>Make sure you do use $postdir2 here again. Will be using <strong>ftt_path</strong> to retrieve the stored URL, so remember what name you give it here.</p>
<p>And now we&#8217;ll be calling the uploaded files via the URL like this</p>
<pre class="brush: php">
get_post_meta($post-&gt;ID, &quot;ftt_path&quot;,true);
</pre>
<p>instead of this, which will give you only the absolute path</p>
<pre class="brush: php">
get_post_meta($post-&gt;ID, &quot;_tdomf_download_name_0&quot;,true);
</pre>
<p>This way it&#8217;s not even necessary to check &#8216;Organize my uploads into month- and year-based folders&#8217; at your Miscellaneous Settings.</p>
<p>Hope this helps others out also. If you have any other issues with TDO Mini forms, please refer to the <a href="http://thedeadone.net/forum/?cat=8">original support form</a>.</p>
<h3>UPGRADE warnings</h3>
<p>Remember that automatically upgrading the plugin to the newest version will overwrite the hacks above&#8230;so make sure to actually backup before you upgrade!</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Ditch Windows, Get Ubuntu: the Experiment!</title>
		<link>http://aytemir.com/ditch-windows-get-ubuntu-the-experiment/</link>
		<comments>http://aytemir.com/ditch-windows-get-ubuntu-the-experiment/#comments</comments>
		<pubDate>Fri, 08 May 2009 17:47:50 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=954</guid>
		<description><![CDATA[
Like many I&#8217;m also fed up with Microsoft software in general and Windows in particular. But like many I too am too lazy to make THE CHANGE to another BETTER OS.
Until now!
Why make the switch?
The last couple of years I&#8217;m preferring Open Source alternatives for almost every software. And it&#8217;s a true eye opener. And [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/05/ubuntu2.png" alt="" /></p>
<p>Like many I&#8217;m also fed up with Microsoft software in general and Windows in particular. But like many I too am too lazy to make THE CHANGE to another BETTER OS.<br />
Until now!</p>
<h3>Why make the switch?</h3>
<p>The last couple of years I&#8217;m preferring Open Source alternatives for almost every software. And it&#8217;s a true eye opener. And today I&#8217;ve made the bold move to do this with my OS also!<br />
Yesterday my 6 year old Windows XP desktop (almost) stopped working: it&#8217;s so slow now, that it takes tens of minutes to start any application.<br />
Thus a great opportunity to try out <a href="http://www.ubuntu.com">Ubuntu 9.04</a>.<br />
<span id="more-954"></span><br />
Also just recently my nephews Windows crashed (again)! And while he and I both have a registered and licensed legal Windows versions installed on the computer, the CD&#8217;s we&#8217;ve got are only recovery versions! And because he already had formatted his drive he could not use his legal CD anymore!<br />
This made me realize how ridiculous this situation is&#8230;not Microsoft, but the computer manufacturers are here to blame&#8230;I know!<br />
And he also made the switch&#8230;although he&#8217;s not that tech savy!</p>
<h3>Will everything work? Out of the box?</h3>
<p>And I&#8217;m very pleased I have made the switch. And I&#8217;m actually writing this post on my Ubuntu desktop now!<br />
I was afraid I had to search, find and install drivers for my video card, sound card and the ethernet/network card&#8230;but it all worked out of the box!<br />
And because Windows made me a coward I&#8217;ve also installed <a href="http://http://www.avast.com/eng/download-avast-for-linux-edition.html">the Linux version of the superior viruskiller Avast</a>. Although <a href="http://ubuntuforums.org/showthread.php?t=229128">I&#8217;ve read I don&#8217;t realy need to</a>&#8230;</p>
<h3>What have I got now?</h3>
<p>A good looking, great performing, FREE OS with some free software already installed like GIMP (alternative for PhotoShop) and  Open Office (alternative for the Microsoft Office)!</p>
<h3>What&#8217;s next?</h3>
<p>Because I have still gigabytes of software to sort out and clean up on my VAIO laptop which I&#8217;m also working on my upcoming projects from I will not switch to Ubuntu on that&#8230;yet.<br />
But I will soon.</p>
<p>And everyone should make the switch also&#8230;now!</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/ditch-windows-get-ubuntu-the-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
