<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Aytemir.com</title>
	
	<link>http://aytemir.com</link>
	<description>Design, Develop...Blog!</description>
	<lastBuildDate>Sun, 14 Jun 2009 15:12:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/aytemir" type="application/rss+xml" /><feedburner:emailServiceId>aytemir</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>TDO Mini Forms: upload path/URL mini hack</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/dAL8hXqIs8Q/</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 [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/05/hack2.jpg" alt="hack2 TDO Mini Forms: upload path/URL mini hack"  title="TDO Mini Forms: upload path/URL mini hack" /></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 usefull.</p>
<p>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>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$postdir</span> = <span class="re0">$options</span><span class="br0">&#91;</span><span class="st0">&#8216;path&#8217;</span><span class="br0">&#93;</span>.DIRECTORY_SEPARATOR.<span class="re0">$post_ID</span>; </div>
</li>
</ol>
</div>
</div>
<p>to this</p>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$yearID</span>=<a href="http://www.php.net/date"><span class="kw3">date</span></a><span class="br0">&#40;</span><span class="st0">&#8220;Y&#8221;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$monthID</span>=<a href="http://www.php.net/date"><span class="kw3">date</span></a><span class="br0">&#40;</span><span class="st0">&#8220;m&#8221;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$postdir</span> = <span class="re0">$options</span><span class="br0">&#91;</span><span class="st0">&#8216;path&#8217;</span><span class="br0">&#93;</span>.<span class="re0">$yearID</span>.DIRECTORY_SEPARATOR.<span class="re0">$monthID</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$postdir2</span> = <span class="re0">$options</span><span class="br0">&#91;</span><span class="st0">&#8216;url&#8217;</span><span class="br0">&#93;</span>.<span class="re0">$yearID</span>.<span class="st0">&#8220;/&#8221;</span>.<span class="re0">$monthID</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">tdomf_recursive_mkdir<span class="br0">&#40;</span><span class="re0">$postdir</span>,TDOMF_UPLOAD_PERMS<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">tdomf_recursive_mkdir<span class="br0">&#40;</span><span class="re0">$postdir2</span>,TDOMF_UPLOAD_PERMS<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$newpath</span> = <span class="re0">$postdir</span>.DIRECTORY_SEPARATOR.<span class="re0">$theirfiles</span><span class="br0">&#91;</span><span class="re0">$i</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">&#8216;name&#8217;</span><span class="br0">&#93;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$newpath2</span> = <span class="re0">$postdir2</span>.DIRECTORY_SEPARATOR.<span class="re0">$theirfiles</span><span class="br0">&#91;</span><span class="re0">$i</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">&#8216;name&#8217;</span><span class="br0">&#93;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span><a href="http://www.php.net/rename"><span class="kw3">rename</span></a><span class="br0">&#40;</span><span class="re0">$theirfiles</span><span class="br0">&#91;</span><span class="re0">$i</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">&#8216;path&#8217;</span><span class="br0">&#93;</span>, <span class="re0">$newpath</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$newpath</span> = <a href="http://www.php.net/realpath"><span class="kw3">realpath</span></a><span class="br0">&#40;</span><span class="re0">$newpath</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$newpath2</span> = <a href="http://www.php.net/realpath"><span class="kw3">realpath</span></a><span class="br0">&#40;</span><span class="re0">$newpath2</span><span class="br0">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
<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>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1">add_post_meta<span class="br0">&#40;</span><span class="re0">$post_ID</span>,TDOMF_KEY_DOWNLOAD_PATH.<span class="re0">$i</span>, <span class="re0">$wpdb</span>-&gt;<span class="me1">escape</span><span class="br0">&#40;</span><span class="re0">$newpath</span><span class="br0">&#41;</span>,<span class="kw2">true</span><span class="br0">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
<p>the following</p>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1">add_post_meta<span class="br0">&#40;</span><span class="re0">$post_ID</span>,ftt_path,<span class="re0">$postdir2</span>,<span class="kw2">true</span><span class="br0">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
<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>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1">get_post_meta<span class="br0">&#40;</span><span class="re0">$post</span>-&gt;<span class="me1">ID</span>, <span class="st0">&#8220;ftt_path&#8221;</span>,<span class="kw2">true</span><span class="br0">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
<p>instead of this, which will give you only the absolute path</p>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1">get_post_meta<span class="br0">&#40;</span><span class="re0">$post</span>-&gt;<span class="me1">ID</span>, <span class="st0">&#8220;_tdomf_download_name_0&#8243;</span>,<span class="kw2">true</span><span class="br0">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
<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>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/</feedburner:origLink></item>
		<item>
		<title>Ditch Windows, Get Ubuntu: the Experiment!</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/6tohuvIsVkg/</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 [...]


Related posts:<ol><li><a href='http://aytemir.com/vista-update-crashes-localhost/' rel='bookmark' title='Permanent Link: Vista update crashes localhost'>Vista update crashes localhost</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/05/ubuntu2.png" alt="ubuntu2 Ditch Windows, Get Ubuntu: the Experiment!"  title="Ditch Windows, Get Ubuntu: the Experiment!" /></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>.</p>
<p>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>


<p>Related posts:<ol><li><a href='http://aytemir.com/vista-update-crashes-localhost/' rel='bookmark' title='Permanent Link: Vista update crashes localhost'>Vista update crashes localhost</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/ditch-windows-get-ubuntu-the-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://aytemir.com/ditch-windows-get-ubuntu-the-experiment/</feedburner:origLink></item>
		<item>
		<title>Need a short URL service? Try Wordpress!</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/xFESg8qVpAs/</link>
		<comments>http://aytemir.com/need-a-short-url-service-try-wordpress/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:12:00 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[short url]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=939</guid>
		<description><![CDATA[
Although I&#8217;m still not &#8216;tweetin&#8217; I do see it&#8217;s potential for promoting the fan-tas-tic project, once it&#8217;s finished.
And in my search to do this I stumbled across this article: 10 Exceptional WordPress Hacks. And I noticed a remark in the comments section (#12) about using the built-in default WordPress URL-structure instead of TinyUrl or any [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/04/ShortUrl2.png" alt="Twitter logo courtesy of http://www.hongkiat.com" title="Need a short URL service? Try Wordpress!" /><br />
Although I&#8217;m still not &#8216;tweetin&#8217; I do see it&#8217;s potential for promoting the fan-tas-tic project, once it&#8217;s finished.<br />
And in my search to do this I stumbled across this article: <a href="http://www.smashingmagazine.com/2009/04/15/10-exceptional-wordpress-hacks/">10 Exceptional WordPress Hacks</a>. And I noticed a remark in the comments section (#12) about using the built-in default WordPress URL-structure instead of TinyUrl or any other third party service.<br />
I was triggered immediately (comment #25) because I am considering to implement a &#8216;(re)tweet this&#8217; feature and my options until now were <a href="http://www.wprecipes.com/how-to-automatically-provide-tinyurls-for-your-wordpress-blog-posts">automated TinyUrl&#8217;s</a> or a <a href="http://wordpress.org/extend/plugins/short-url-plugin/">ShortUrl plugin</a>.</p>
<p>As stated above why not try the default URL of WordPress itself? As long as your own domain is not too long, why not give it a try? After having looked around in codex, the solution seemed very simple: </p>
<div class="codesnip-container" >
<div class="codesnip">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span> <a href="http://www.php.net/echo"><span class="kw3">echo</span></a> get_bloginfo<span class="br0">&#40;</span><span class="st0">&#8216;url&#8217;</span><span class="br0">&#41;</span>.<span class="st0">&#8220;/?p=&#8221;</span>.<span class="re0">$post</span>-&gt;<span class="me1">ID</span>; <span class="kw2">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
<p>For example http://www.fan-tas-tic.com/?p=200 is short enough without the disadvantages of a third party services and your own domain is indexed/searched in twitter and other tools. And you still keep your fancy permalinks. Win, win, win! </p>
<p>So looking for a short Url service for your Wordpress blog; why not use Wordpress itself?<br />
Now isn&#8217;t this something to tweet about!?</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/need-a-short-url-service-try-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://aytemir.com/need-a-short-url-service-try-wordpress/</feedburner:origLink></item>
		<item>
		<title>Vista update crashes localhost</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/CCzluQAISCg/</link>
		<comments>http://aytemir.com/vista-update-crashes-localhost/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 21:01:28 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[wamp]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xammp]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=926</guid>
		<description><![CDATA[
For the development of any website I’m using Wampserver as my local server and it has always been working just great. Until today: it stopped working, just like that!
I should have known better than giving Windows the benefit of the doubt! I thought WAMP/WampServer screwed things up: suddenly I couldn&#8217;t connect to http://localhost anymore. Nor [...]


Related posts:<ol><li><a href='http://aytemir.com/fan-tas-tic-progress-and-issues/' rel='bookmark' title='Permanent Link: Fan-tas-tic progress and issues'>Fan-tas-tic progress and issues</a></li><li><a href='http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/' rel='bookmark' title='Permanent Link: TDO Mini Forms: upload path/URL mini hack'>TDO Mini Forms: upload path/URL mini hack</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/03/localhost2.jpg" alt="Vista crashes localhost" title="Vista update crashes localhost" /><br />
For the development of any website I’m using <a href="http://www.wampserver.com/">Wampserver</a> as my local server and it has always been working just great. Until today: it stopped working, just like that!</p>
<p>I should have known better than giving Windows the benefit of the doubt! I thought WAMP/WampServer screwed things up: suddenly I couldn&#8217;t connect to http://localhost anymore. Nor to phpMyAdmin, nor to MySQL.<br />
And because I could connect to the internet, I figured it was my local server&#8230;and not a Windows Vista related issue.</p>
<p>However it seems Windows Update, Vista 32-bit, screwed the host-file and the localhost was only reachable via http://127.0.0.1.</p>
<p>Following the instructions from the <a href="http://www.wampserver.com/phorum/read.php?2,49424">Wampserver forum</a> solved the issue:<br />
Entering the line <strong>127.0.0.1 localhost</strong>, just above the already existing line <strong>::1 localhost</strong>.</p>
<p>To actually edit the <strong>hosts</strong> file in <strong>C:\Windows\System32\drivers\etc</strong> you have the give your self the proper rights first:<br />
You can do this by right-clicking on the hosts file, selecting <strong>properties</strong> and the tab <strong>Security</strong> and selecting <strong>Users</strong> and pressing the <strong>Edit</strong> button.<br />
You might give yourself writing rights or full controll: Edit the file and <strong>put the original settings back</strong>, since you don&#8217;t know what Windows might crash next if you don&#8217;t!</p>
<p>Hope this helps others out of misery also&#8230;and I&#8217;m soo close switching OS, when I finish these projects and make enough money to buy me enough time!</p>
<p>PS: I&#8217;ve understood the same issue and solution is also applicable for <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>.</p>


<p>Related posts:<ol><li><a href='http://aytemir.com/fan-tas-tic-progress-and-issues/' rel='bookmark' title='Permanent Link: Fan-tas-tic progress and issues'>Fan-tas-tic progress and issues</a></li><li><a href='http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/' rel='bookmark' title='Permanent Link: TDO Mini Forms: upload path/URL mini hack'>TDO Mini Forms: upload path/URL mini hack</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/vista-update-crashes-localhost/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://aytemir.com/vista-update-crashes-localhost/</feedburner:origLink></item>
		<item>
		<title>Fan-tas-tic progress and issues</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/_RJsMFPZ-rs/</link>
		<comments>http://aytemir.com/fan-tas-tic-progress-and-issues/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:26:13 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[fan-tast-tic]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=918</guid>
		<description><![CDATA[
Although the fan-tas-tic project is making good progress, I’m running to some issues which slows down the overall progress: This post is a short status update.
Issue 1: Internet Explorer still sucks.
Even version 7. And I have no high expectations for IE8, no matter how many tests it’ll pass.
I had to tweak a lot of CSS [...]


Related posts:<ol><li><a href='http://aytemir.com/replacing-your-comments-with-intense-debate/' rel='bookmark' title='Permanent Link: Replacing your comments with Intense Debate'>Replacing your comments with Intense Debate</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/02/progress2.jpg" alt="progress2 Fan tas tic progress and issues"  title="Fan tas tic progress and issues" /></p>
<p>Although the fan-tas-tic project is making good progress, I’m running to some issues which slows down the overall progress: This post is a short status update.</p>
<h3>Issue 1: Internet Explorer still sucks.</h3>
<p>Even version 7. And I have no high expectations for IE8, no matter how many tests it’ll pass.<br />
I had to tweak a lot of CSS code just to make sure IE7 doesn’t screw up my layout, although it was fine enough in FF and Chrome.</p>
<p>A relief is that a bigger part (65%) of my visitors do use FF. An explanation for this is that the audience mostly consist of bloggers, designers and developers. They already know IE sucks.<br />
However on my soccerforum IE is used by 53% of the visitors. This just confirms the theory about the audience of the sites. And because I’m expecting a mixed audience for Fan-tas-tic!, I dare not to neglect IE fully.</p>
<h3>Issue 2: Local vs online</h3>
<p>The ‘look and feel’ of my localhost <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is not 100% the same with the Apache server of my host. So I have to now and then test it online.<br />
Just recently I’ve found this lill’ usefull plugin: <a href="http://www.prelovac.com/vladimir/wordpress-plugins/theme-test-drive">Theme Test Drive</a>. Activating this plugin it will give you, logged in as a admin, the ability to activate another theme and see what the site actually will look like.<br />
In the mean time the regular visitors will see the clever ‘under construction’ theme <a href="http://themeshaper.com/wordpress-domain-parking-theme/">Launchpad</a>.</p>
<h3>Issue 3: Intense Debate is still giving me headaches</h3>
<p>I just might have to dish it in the end after all. I&#8217;ve complained <a href="http://aytemir.com/replacing-your-comments-with-intense-debate/">here</a> why I chose for Intense Debate. The problem is that when ID is enabled it takes too long to count the number of comments: it has to retrieve data from the ID-server for every post.</p>
<p>Gotta go&#8230;and make some more fan-tas-tic progress.</p>


<p>Related posts:<ol><li><a href='http://aytemir.com/replacing-your-comments-with-intense-debate/' rel='bookmark' title='Permanent Link: Replacing your comments with Intense Debate'>Replacing your comments with Intense Debate</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/fan-tas-tic-progress-and-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://aytemir.com/fan-tas-tic-progress-and-issues/</feedburner:origLink></item>
		<item>
		<title>Replacing your comments with Intense Debate</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/yaq5MMs6Iic/</link>
		<comments>http://aytemir.com/replacing-your-comments-with-intense-debate/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 21:28:32 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=898</guid>
		<description><![CDATA[
There are some very great and creative ways to design the comment section of your blog: check out these examples for some inspiration (37 Ways to Design the Comments Form, 30 and 30 More Must See Comment Designs for Web Designers).
And while I was thinking about how to design my own comment parts of my [...]


Related posts:<ol><li><a href='http://aytemir.com/fan-tas-tic-progress-and-issues/' rel='bookmark' title='Permanent Link: Fan-tas-tic progress and issues'>Fan-tas-tic progress and issues</a></li><li><a href='http://aytemir.com/wordpress-stats-twice-as-good-as-google-analytics/' rel='bookmark' title='Permanent Link: Wordpress Stats twice as good as Google Analytics?'>Wordpress Stats twice as good as Google Analytics?</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/01/intense-debate-example.jpg" alt="Intense Debate Example" title="Replacing your comments with Intense Debate " /><br />
There are some very great and creative ways to design the comment section of your blog: check out these examples for some inspiration (<a href="http://www.blogdesignblog.com/blog-design/37-ways-to-design-the-comments-form/">37 Ways to Design the Comments Form</a>, <a href="http://www.blogdesignblog.com/blog-design/30-comment-designs-for-webdesigners/">30</a> and <a href="http://www.blogdesignblog.com/blog-design/30-more-must-see-comment-designs-for-blog-designers/">30 More Must See Comment Designs for Web Designers</a>).<br />
And while I was thinking about how to design my own comment parts of my upcoming WP powered sites, I decided I should go for the easier way&#8230;which by the way kinda is the philosophy of this blog.</p>
<p>So just recently I’ve installed the <a href="http://intensedebate.com/">Intense Debate</a> commenting system on this blog. As you may notice however, the older posts with no comments are still using the built in commenting system. The reason for this is that somehow I’ve not been able to synchronize my WP account with my ID account.<br />
The new plugin crashed and I was forced to use the older version of the plugin. Also with this version however I’m still not able to import my older comments. In general, <em>you</em> should not have any trouble, so don&#8217;t be alarmed.</p>
<p>So why did I bother then? Well I’ve got three reasons for that:</p>
<p>1.  I want for all my Wordpress powered projects one common commenting system. Although not many of my visitors may register, some of them will be automatically registered when they’ve got an Intense Debate account already. This should encourage them to participate more interactively.</p>
<p>2. I’m expecting Automatticto fully integrate Intense Debate into Wordpress in the near future. It is a logical next step and I would not be surprised if they do this well before version 2.8. The <a href="http://ma.tt/2008/09/intense-debate-goes-automattic/">acquisition by Automattic</a> is also the reason that for example Disqus is no more an option for me.</p>
<p>3. It saves me a lot of development and design time when I decide to use a free WP template, which does not support gravatars and threaded comment. The <a href="http://aytemir.com/the-unstandard-2-widgetized-and-gravatarized/">Unstandard theme</a> is a good example of this. Although you can’t design it fully to your own taste, it still is flexible enough.</p>
<p>So if you should also run into troubles with the newest version of Intense Debate and the support team is not able to help you out, like in my case, you should consider using the old plugin/version. And take the lack of some features for granted, I’m afraid.</p>
<h3>UPDATE</h3>
<p>Ironically on 23th January 2009 the Intense Debate site is down. And another con for using a third party commenting system is beeing illustrated very typical with this: it slows down my site significantly and when a post has been loaded, you can not comment!<br />
I&#8217;ll give them yet another chance&#8230;for now.</p>


<p>Related posts:<ol><li><a href='http://aytemir.com/fan-tas-tic-progress-and-issues/' rel='bookmark' title='Permanent Link: Fan-tas-tic progress and issues'>Fan-tas-tic progress and issues</a></li><li><a href='http://aytemir.com/wordpress-stats-twice-as-good-as-google-analytics/' rel='bookmark' title='Permanent Link: Wordpress Stats twice as good as Google Analytics?'>Wordpress Stats twice as good as Google Analytics?</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/replacing-your-comments-with-intense-debate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://aytemir.com/replacing-your-comments-with-intense-debate/</feedburner:origLink></item>
		<item>
		<title>A fan-tas-tic start of 2009!</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/tuzi86XotwA/</link>
		<comments>http://aytemir.com/a-fan-tas-tic-start-of-2009/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 19:50:28 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=880</guid>
		<description><![CDATA[ 
As stated in my post Setting goals for 2009 I’ll try to post only about the projects I’m working on…from now on. And I have to admit it’s hard not to blog, rant or rave about anything else.
Because there is actually a lot to blog, rant and rave about. For example this blog now [...]


Related posts:<ol><li><a href='http://aytemir.com/setting-goals-for-2009/' rel='bookmark' title='Permanent Link: Setting goals for 2009'>Setting goals for 2009</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/01/2009-293x150.jpg" alt="A fan-tas-tic start of 2009!" title="photo credit: http://designwithathought.com/?p=339"  class="alignleft" /> </p>
<p>As stated in my post <a href="http://aytemir.com/setting-goals-for-2009">Setting goals for 2009</a> I’ll try to post only about the projects I’m working on…from now on. And I have to admit it’s hard not to blog, rant or rave about anything else.<br />
Because there is actually a lot to blog, rant and rave about. For example this blog now has reached a Pagerank of 2 in 3 months, but so did my sleeping site Uppedd.com, which never had any content at all…and this is a big mystery to me.</p>
<p>The first post of 2009 year is a &#8216;fan-tas-tic&#8217; one. Well, actually it&#8217;s about one of my projects called ‘Fan-tas-tic’ and a although the name may suggest otherwise it’s actually a quite humble project: a ‘fan-tas-tic gallery’ powered by Wordpress.</p>
<p>Yes, I am aware that there are already hundreds of (CSS) galleries (like these lists of examples: <a href="http://www.smashingmagazine.com/2006/12/21/creme-de-la-creme-of-css-list-of-css-galleries/">36</a> + <a href="http://www.nuff-respec.com/technology/css-gallery-roundup">74</a> + <a href="http://www.edwinsdesignlab.be/blog/webdesign-galleries/">115</a>) and <a href="http://www.cssleak.com/news/7-Wordpress-Themes-To-Create-Your-Own-CSS-Gallery.html">a lot of free Wordpress themes to make your own</a>. However they all lack some essential features for the visitors and for the administrator.<br />
I’ll come back to these features in another post, when I’ve got the full feature list of my own gallery complete.</p>
<p>In the mean time you should also check out some of the galleries above for inspiration and figure out which features you think they lack and leave a comment. If I can, I might just implement it in my &#8216;Fan-tas-tic Gallery&#8217; theme. </p>


<p>Related posts:<ol><li><a href='http://aytemir.com/setting-goals-for-2009/' rel='bookmark' title='Permanent Link: Setting goals for 2009'>Setting goals for 2009</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/a-fan-tas-tic-start-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://aytemir.com/a-fan-tas-tic-start-of-2009/</feedburner:origLink></item>
		<item>
		<title>Unstandard theme now Wordpress 2.7 compatible</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/TD1VxAvSKe8/</link>
		<comments>http://aytemir.com/unstandard-theme-now-wordpress-27-compatible/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 12:43:12 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[unstandard]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=871</guid>
		<description><![CDATA[Like many great themes the Unstandard theme did initially lack some basic features like widgets and gravatars. I made a widgetized and gravatar-ized version and this version has been donwloaded almost 600 times from October 2008 till now. Which proves that it&#8217;s still a popular theme and a decent upgrade was necessary.


Unfortunately I am thinking [...]


Related posts:<ol><li><a href='http://aytemir.com/the-coolest-blogwith-the-unstandard-theme/' rel='bookmark' title='Permanent Link: The Coolest blog&#8230;with the Unstandard theme'>The Coolest blog&#8230;with the Unstandard theme</a></li><li><a href='http://aytemir.com/the-unstandard-2-widgetized-and-gravatarized/' rel='bookmark' title='Permanent Link: The Unstandard theme: widgetized and gravatar-ized'>The Unstandard theme: widgetized and gravatar-ized</a></li><li><a href='http://aytemir.com/a-fan-tas-tic-start-of-2009/' rel='bookmark' title='Permanent Link: A fan-tas-tic start of 2009!'>A fan-tas-tic start of 2009!</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Like many great themes the Unstandard theme did initially lack some basic features like widgets and gravatars. I made a <a href="http://aytemir.com/the-unstandard-2-widgetized-and-gravatarized/">widgetized and gravatar-ized version</a> and this version has been donwloaded almost 600 times from October 2008 till now. Which proves that it&#8217;s still a popular theme and a decent upgrade was necessary.</p>
<p><a href="http://5thirtyone.com/archives/1588"><br />
<img src="http://5thirtyone.com/wp-content/uploads/2008/12/unstandard-small.png" alt="The Unstandard Theme Wordpress 2.7 compatible" title="Unstandard theme now Wordpress 2.7 compatible" /></a></p>
<p>Unfortunately I am thinking of changing my blog theme, while the current one will probably no longer serve my <a href="http://aytemir.com/setting-goals-for-2009/">goals set for 2009</a>.<br />
The good news however is that the original author of the Unstandard theme has made his theme now Wordpress 2.7 compatible: I suggest you <a href="http://theunstandard.5thirtyone.com/2008/12/the-unstandard-wordpress-theme-demo-site/">check out the demo</a> and get <a href="http://5thirtyone.com/archives/1588">this new and approved version</a> instead!</p>
<p>Should you not want to upgrade Wordpress, than my &#8221;pimped&#8217; version will still be available for reference and download.</p>
<p>Have fun with this great theme.</p>
<p><em>Related post(s):</em></p>
<ul>
<li><a href="http://aytemir.com/the-unstandard-2-widgetized-and-gravatarized/">The Unstandard theme: widgetized and gravatar-ized</a>
</li>
</ul>


<p>Related posts:<ol><li><a href='http://aytemir.com/the-coolest-blogwith-the-unstandard-theme/' rel='bookmark' title='Permanent Link: The Coolest blog&#8230;with the Unstandard theme'>The Coolest blog&#8230;with the Unstandard theme</a></li><li><a href='http://aytemir.com/the-unstandard-2-widgetized-and-gravatarized/' rel='bookmark' title='Permanent Link: The Unstandard theme: widgetized and gravatar-ized'>The Unstandard theme: widgetized and gravatar-ized</a></li><li><a href='http://aytemir.com/a-fan-tas-tic-start-of-2009/' rel='bookmark' title='Permanent Link: A fan-tas-tic start of 2009!'>A fan-tas-tic start of 2009!</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/unstandard-theme-now-wordpress-27-compatible/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://aytemir.com/unstandard-theme-now-wordpress-27-compatible/</feedburner:origLink></item>
		<item>
		<title>Setting goals for 2009</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/Z9vbl0Gd6ks/</link>
		<comments>http://aytemir.com/setting-goals-for-2009/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 14:08:52 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[uppedd]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=841</guid>
		<description><![CDATA[
Looking back at 2008
Playtime is over! I&#8217;ve used the past period to experiment with some forms of promoting my posts and trying to get more traffic. Although the results were satisfying as you can see in the graph above, it felt more like &#8216;work&#8217; than &#8216;hobby&#8217; for me. Because doing this is rather time and [...]


Related posts:<ol><li><a href='http://aytemir.com/a-fan-tas-tic-start-of-2009/' rel='bookmark' title='Permanent Link: A fan-tas-tic start of 2009!'>A fan-tas-tic start of 2009!</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2008/12/2009%20stats.png" alt="What goes up, must come down" title="Setting goals for 2009" /></p>
<h3>Looking back at 2008</h3>
<p>Playtime is over! I&#8217;ve used the past period to experiment with some forms of promoting my posts and trying to get more traffic. Although the results were satisfying as you can see in the graph above, it felt more like &#8216;work&#8217; than &#8216;hobby&#8217; for me. Because doing this is rather time and energy consuming. And that is not a good thing&#8230;if you&#8217;re not making money from it, that is!<br />
The above graph illustrates the short period from October until end December for this blog. And it&#8217;s no surprise that it&#8217;s possible to get a peak of visitors and views, no matter how humble your blog or post is. But to keep this visitors coming back you need to invest a lot in time and energy&#8230;but I&#8217;m gonna focus on other things instead.</p>
<h3>Setting goals for 2009</h3>
<p>While reading <a href="http://www.dailyblogtips.com/my-internet-goals-for-2009/">My Internet Goals for 2009</a> I found out writing your goals down works very therapeutic and very refreshing. Although very personal it can be interesting and inspiring for others too.</p>
<p>Now that the new year is getting closer it&#8217;s time for me to get my goals clear and focus on them. Maybe you should write down your own goals too?</p>
<h4>Aytemir.com: Design, Develop&#8230;Blog!</h4>
<p>The main goal for this blog has always been a supporting blog for the projects I&#8217;m running or planning. I&#8217;ve used the past months to experiment with some social media and I&#8217;ve learned a lot, which I hope to use in return when I&#8217;m ready to promote these projects once their ready.<br />
I will keep the current categories and write about the progress of the projects listed below. I&#8217;m prepared for a lack of visitor peaks, but the content should be useful (for me) when starting a another/new project.<br />
At a certain moment I think I might have to say goodbye to the Unstandard theme&#8230;</p>
<h4>Uppedd: Ranking and Rating the Stars!</h4>
<p>This will be my &#8216;Pièce de résistance&#8217;. Like the rest of the projects I&#8217;m going for the easy route and use already existing tools and plugins and try to go (private) beta in 2009!<br />
Although the concept is rather basic, it still is a rather ambitious project and it&#8217;s potentials are very promising.<br />
Expect to read more about this projects in the coming posts.</p>
<h4>Fan-Tas-Tic! Science-Fiction &#038; Fantasy Art Gallery</h4>
<p>I was always meaning to do something with my favouriet genre: SF&#038;F. While writing <a href="http://aytemir.com/best-of-2008-for-developers-2008-tips-tricks-scripts-and-sources/">Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!</a> I came across a bunch of Wordpress powered CSS galleries and got this fan-tas-tic idea: Why not do the same for fan-tas-tic SF&#038;F art!</p>
<p><a href="http://www.fan-tas-tic.com">Fan-tas-tic.com</a> was luckily not taken and from now on will it be not only my own personal favourite gallery, but visitors can also submit other SF&#038;F art and vote on the submissions.<br />
I&#8217;m aware there are already other great resources for SF&#038;F art, but they mostly miss some of the basic features of these Web 2.0 galleries, like tags, rating and ranking or they also contain less fantastic work.</p>
<h4>BAOA: Blogging About Oracle Applications</h4>
<p>This <a href="http://www.BloggingAboutOracleApplications.org">niche technical blog</a> is actually for my company and I it&#8217;s about time it got pimped. It needs an upgrade, new look and feel and a lot of more useful plugins.<br />
The content is absolute king and therefore it needs more audience, yet only from the same technical niche, which is a great challenge.</p>
<h4>VoetbalPortaal: Exclusive Soccer Forum</h4>
<p>I&#8217;m considering this <a href="http://www.VoetbalPortaal.nl">soccer forum</a> project actually as finished, since there is not much more I&#8217;m gonna change about it.</p>
<h3>Summary</h3>
<p>Note that I&#8217;ve not set any goals regarding monetizing any of the new projects. And initially the design will be of based on a existing theme in most cases.<br />
The focus will be on getting things finished instead.</p>


<p>Related posts:<ol><li><a href='http://aytemir.com/a-fan-tas-tic-start-of-2009/' rel='bookmark' title='Permanent Link: A fan-tas-tic start of 2009!'>A fan-tas-tic start of 2009!</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/setting-goals-for-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://aytemir.com/setting-goals-for-2009/</feedburner:origLink></item>
		<item>
		<title>Best of 2008 for bloggers: 1600+ tips, tricks, advices and strategies!</title>
		<link>http://feedproxy.google.com/~r/aytemir/~3/EcA7r8WvBEA/</link>
		<comments>http://aytemir.com/best-of-2008-for-bloggers-1600-tips-tricks-advices-and-strategies/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 21:04:15 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[best of]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[sources]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[toplists]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=679</guid>
		<description><![CDATA[
Last in the series of Best post for Designers, Developers and Bloggers. A collection of more than 1600 useful tips, tricks and advices from (pro) bloggers for newbies and pro bloggers posted in 2008. From getting started to getting (more) traffic and from getting (more) subscribers to actually making money with your blog.
A huge reference [...]


Related posts:<ol><li><a href='http://aytemir.com/best-of-2008-for-designers-2008-tips-tricks-resources-and-inspirations/' rel='bookmark' title='Permanent Link: Best of 2008 for designers: 2008+ tips, tricks, resources and inspirations!'>Best of 2008 for designers: 2008+ tips, tricks, resources and inspirations!</a></li><li><a href='http://aytemir.com/best-of-2008-for-developers-2008-tips-tricks-scripts-and-sources/' rel='bookmark' title='Permanent Link: Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!'>Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2008/12/Best-of-2008-for-bloggers-3.jpg" alt="Best of 2008 for bloggers" title="Best of 2008 for bloggers: 1600+ tips, tricks, advices and strategies!" /><br />
Last in the series of Best post for Designers, Developers and Bloggers. A collection of more than 1600 useful tips, tricks and advices from (pro) bloggers for newbies and pro bloggers posted in 2008. From getting started to getting (more) traffic and from getting (more) subscribers to actually making money with your blog.<br />
A huge reference if you need just that little push in the right direction.</p>
<h3>General Blogging Tips (733)</h3>
<p><a href="http://blogsessive.com/blogging-tips/30-blogging-tips-to-screw-up/">30 Blogging Tips to Screw Up</a><br />
<a href="http://blogsessive.com/blogging-tips/10-characteristics-of-a-successful-blogger/">10 Characteristics of a Successful Blogger</a><br />
<a href="http://www.dailyblogtips.com/10-ways-to-brand-your-blog-or-website-efficiently/">10 Ways to Brand Your Blog or Website Efficiently</a><br />
<a href="http://www.setfiremedia.com/blog/18-simple-tweaks-to-get-more-clicks-from-your-organic-rankings">18 Simple Tweaks To Get More Clicks From Your Organic Rankings</a><br />
<a href="http://www.skelliewag.org/9-things-that-drive-a-blogger-crazy-229.htm">9 Things That Drive a Blogger Crazy</a><br />
<a href="http://www.dailyblogtips.com/5-blogging-goals-worth-chasing-after/">5 Blogging Goals Worth Chasing After</a><br />
<a href="http://www.dailyblogtips.com/8-addictive-habits-of-bloggers/">8 Addictive Habits of Bloggers</a><br />
<a href="http://www.problogger.net/archives/2008/09/08/16-worthwhile-but-potentially-distracting-blogging-tasks/">16 Important but Potentially Distracting Blogging Tasks</a><br />
<a href="http://www.problogger.net/archives/2008/03/29/20-types-of-pages-that-every-blogger-should-consider/">20 Types of Pages that Every Blogger Should Consider</a><br />
<a href="http://broadcasting-brain.com/2008/05/21/popular-blog-post-tip/">Social media blog post ideas for desparate people (82)</a><br />
<a href="http://broadcasting-brain.com/2008/12/03/22-ultra-inspiring-blogs-about-creativity-and-idea-generation/">22 Ultra Inspiring Blogs About Creativity and Idea Generation</a><br />
<a href="http://www.chrisbrogan.com/40-ways-to-deliver-killer-blog-content/">40 Ways to Deliver Killer Blog Content</a><br />
<a href="http://www.onmoneymaking.com/stop-planning-50-ways-to-improve-your-finances-today.html">Stop Planning: 50 Ways to Improve Your Finances Today</a><br />
<a href="http://www.lostartofblogging.com/22-essential-habits-towards-blogging-success">22 Essential Habits Towards Blogging Success</a><br />
<a href="http://seo-consultant-specialist.com/wblog/?p=10">Top 100 Blogging Tips for Bloggers &#8211; Bloggers Guide</a><br />
<a href="http://www.1stwebdesigner.com/resources/sensational-list-of-25-the-best-worldwide-forums/">Sensational List Of 25 The Best Design Worldwide Forums</a><br />
<a href="http://speckyboy.com/2008/11/17/100-wordpress-video-tutorials-from-basic-to-advanced/">100+ Wordpress Video Tutorials, from Basic to Advanced</a><br />
<a href="http://www.evancarmichael.com/Tools/Top-50-Marketing-Blogs-To-Watch-In-2008.htm">The Top 50 Marketing Blogs To Watch In 2008</a><br />
<a href="http://www.seoptimise.com/blog/2008/12/30-web-trends-for-2009.html">30 Web Trends for 2009</a><br />
<a href="http://www.seoptimise.com/blog/2008/10/50-must-read-web-design-for-roi-usability-and-seo-articles.html">50+ Must Read Web Design for ROI, Usability and SEO Articles</a><br />
<a href="http://blog-well.com/2008/09/21/42-resources-for-bloggers/">42+ Resources for Bloggers</a><br />
<a href="http://designfeedr.com/twenty-eight-ways-to-be-a-better-designer">Twenty-eight ways to be a better designer</a><br />
<a href="http://www.gomediazine.com/design-tip/10-tips-avoid-designers-block/">10 Tips to avoid designer’s block</a><br />
<a href="http://www.thedesigncubicle.com/2008/11/16-tips-to-improve-as-a-graphic-designer/">16 tips to improve as a graphic designer</a></p>
<h3>Subscribers, Success and Failure (267)</h3>
<p><a href="http://www.safetygoat.co.uk/2008/10/top-10-tips-to-make-your-own-web-app-projects/#top134">Top 10 tips to make your own web app projects</a><br />
<a href="http://www.unstructuredventures.com/uv/2008/09/23/how-to-fail-25-secrets-learned-through-failure/">How to Fail: 25 Secrets Learned through Failure</a></p>
<p><a href="http://www.problogger.net/archives/2008/09/22/10-innovative-blog-business-models/">10 Innovative Blog Business Models</a><br />
<a href="http://www.dailyblogtips.com/10-signs-that-your-blog-is-on-the-right-track/">10 Signs That Your Blog Is On The Right Track</a><br />
<a href="http://www.chrisbrogan.com/50-ways-to-take-your-blog-to-the-next-level/">50 Ways to Take Your Blog to the Next Level</a><br />
<a href="http://seo-consultant-specialist.com/wblog/?p=11">Top 100 Reasons Why Blogs Fail – Blogging Mistakes</a><br />
<a href="http://www.dailyblogtips.com/two-for-one/">12 Tips To Grow the Subscriber Base on Your Second Blog</a><br />
<a href="http://www.dailyblogtips.com/50-simple-ways-to-gain-rss-subscribers/">50 Simple Ways to Gain RSS Subscribers</a></p>
<h3>Money Making Tips (53)</h3>
<p><a href="http://www.dailyblogtips.com/ways-to-make-money-online-with-website/">28 Ways to Make Money with Your Website</a><br />
<a href="http://www.skelliewag.org/25-paths-to-an-insanely-popular-blog-261.htm">25 Paths to an Insanely Popular Blog</a><br />
<a href="http://100kjob.info/2008/10/07/16-sponsored-review-programs-pay-you-for-your-blog-posts/">16 Sponsored Review Programs Pay You For Your Blog Posts</a></p>
<h3>Promotion and Traffic (572)</h3>
<p><a href="http://www.catswhocode.com/blog/promote-your-blog-250-links-to-get-free-backlinks">Promote your blog: 250+ links to get free backlinks</a><br />
<a href="http://www.crazyleafdesign.com/blog/41-websites-to-promote-your-design-articles-and-resources/">41 websites to promote your design articles and resources</a><br />
<a href="http://100kjob.info/2008/11/30/14-tips-to-drive-traffic-to-your-blog/">14 Tips To Drive Traffic To Your Blog</a><br />
<a href="http://100kjob.info/2008/09/27/11-blog-directories-and-communities-to-boost-your-blogs-traffic-and-popularity/">11 Blog Directories and Communities to Boost Your Blog’s Traffic and Popularity</a><br />
SEO Optimizing Tips: <a href="http://www.seoptimise.com/blog/2008/10/30-internet-marketing-blogs-you-must-know-to-succeed-online.html" title="30 Internet Marketing Blogs You Must Know to Succeed Online">30</a> + <a href="http://www.seoptimise.com/blog/2008/10/30-ways-to-get-links-naturally-stop-link-building.html" title="30 Ways to Get Links Naturally &#038; Stop Link Building">30</a> + <a href="http://www.seoptimise.com/blog/2008/09/25-outdated-seo-terms-tactics-vs-their-modern-alternatives.html" title="25 Outdated SEO Terms &#038; Tactics vs Their Modern Alternatives">25</a> + <a href="http://www.seoptimise.com/blog/2008/08/seo-is-dad-the-30-easiest-ways-to-get-links-and-exposure.html" title="SEO is Dad: The 30 Easiest Ways to Get Links and Exposure">30</a> + <a href="http://www.seoptimise.com/blog/2008/08/33-website-success-metrics-instead-of-rankings-google-pagerank-and-traffic.html" title="33 Website Success Metrics Instead of Rankings, Google PageRank and Traffic">33</a> + <a href="http://www.seoptimise.com/blog/2008/08/30-one-minute-ways-of-optimising-your-website-for-more-traffic-and-higher-sales.html" title="30 one minute ways of optimising your website for more traffic and higher sales">30</a> + <a href="http://www.seoptimise.com/blog/2008/07/78-essential-search-engine-marketing-seo-resources.html" title="78 Essential Search Engine Marketing &#038; SEO Resources!">78</a></p>
<p>Related posts:<br />
<a href="http://aytemir.com/best-of-2008-for-designers-2008-tips-tricks-resources-and-inspirations/">Best of 2008 for designers: 2008+ tips, tricks, resources and inspirations!</a><br />
<a href="http://aytemir.com/best-of-2008-for-developers-2008-tips-tricks-scripts-and-sources/">Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!</a></p>


<p>Related posts:<ol><li><a href='http://aytemir.com/best-of-2008-for-designers-2008-tips-tricks-resources-and-inspirations/' rel='bookmark' title='Permanent Link: Best of 2008 for designers: 2008+ tips, tricks, resources and inspirations!'>Best of 2008 for designers: 2008+ tips, tricks, resources and inspirations!</a></li><li><a href='http://aytemir.com/best-of-2008-for-developers-2008-tips-tricks-scripts-and-sources/' rel='bookmark' title='Permanent Link: Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!'>Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/best-of-2008-for-bloggers-1600-tips-tricks-advices-and-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://aytemir.com/best-of-2008-for-bloggers-1600-tips-tricks-advices-and-strategies/</feedburner:origLink></item>
	</channel>
</rss>
