<?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"
	>

<channel>
	<title>Ionut Staicu - Webdeveloper Blog</title>
	<atom:link href="http://dev.iamntz.com/feed" rel="self" type="application/rss+xml" />
	<link>http://dev.iamntz.com</link>
	<description>Stuff about CSS, XHTML, Javascript and jQuery</description>
	<pubDate>Mon, 21 Jul 2008 11:05:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>One nice form trick</title>
		<link>http://dev.iamntz.com/36/one-nice-form-trick</link>
		<comments>http://dev.iamntz.com/36/one-nice-form-trick#comments</comments>
		<pubDate>Wed, 09 Jul 2008 16:48:44 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[jquery]]></category>

		<category><![CDATA[Good to know]]></category>

		<category><![CDATA[How is made?]]></category>

		<category><![CDATA[How to]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=36</guid>
		<description><![CDATA[One of the most useful thing on forms is an &#8220;autoselect&#8221; function. How is this work? Let&#8217;s assume that you have a standard search box:

When textbox is focused you can do three things:

Do nothing. Let the user to delete all text. Not good for lazy people, right?  
Autoclear box. But if user want only [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most useful thing on forms is an &#8220;autoselect&#8221; function. How is this work? Let&#8217;s assume that you have a standard search box:</p>
<p><img src="http://content.screencast.com/media/8cfff461-6694-44c8-a583-8c878c95a3e9_d7f54780-c151-49ea-a042-52aa03b281d6_static_0_0_2008-07-09_1941.png" alt=" " width="300" height="34" /></p>
<p>When textbox is focused you can do three things:</p>
<ol>
<li>Do nothing. Let the user to delete all text. Not good for lazy people, right? <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li>Autoclear box. But if user want only to change a letter (typo) or add another word, then he should re-type all things. Not good for usability.</li>
<li>Autoselect box content. Is just like the user double clicks on the text. How can you do this? Read further to see <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="javascript"><span style="color: #003366; font-weight: bold;">var</span> initValue;
$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">':text'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">each</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #000066;">focus</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		initValue = $<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">attr</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'value'</span><span style="color: #66cc66;">&#41;</span>;
		$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">select</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #000066;">blur</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">val</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> == <span style="color: #3366CC;">''</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
			$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">val</span><span style="color: #66cc66;">&#40;</span>initValue<span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>What is the best thing with this? Well&#8230; If an user just leave the text box blank, that form is auto filled with previous value.</p>
<p>Pretty nice, huh? Well&#8230; I think is pretty useful too <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>
    <div style="width:468px; margin:0 auto">
<script type="text/javascript"><!--
google_ad_client = "pub-4526980465081612";
/* 468x60, created 5/25/08 */
google_ad_slot = "9872793406";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/36/one-nice-form-trick/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordnewz Wordpress theme</title>
		<link>http://dev.iamntz.com/35/wordnewz-wordpress-theme</link>
		<comments>http://dev.iamntz.com/35/wordnewz-wordpress-theme#comments</comments>
		<pubDate>Thu, 03 Jul 2008 13:36:16 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=35</guid>
		<description><![CDATA[Well.. is done  The Wordnewz is finally done.
As i said, there is two version of theme: free and premium. Read below to see the differences.
Preview:
 
Free theme :

You have to edit all files to make some changes. For ads you need to edit files from ads folder. For index settings you need to change [...]]]></description>
			<content:encoded><![CDATA[<p>Well.. is done <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> The Wordnewz is finally done.</p>
<p>As i said, there is two version of theme: free and premium. Read below to see the differences.</p>
<p>Preview:<br />
<a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/YourSite.png"><img src="http://s126.photobucket.com/albums/p95/i0nutzb/Blog/th_YourSite.png" alt="" /></a> <a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/YourSiteUSbattleagainstteensmokings.png"><img src="http://s126.photobucket.com/albums/p95/i0nutzb/Blog/th_YourSiteUSbattleagainstteensmokings.png" alt="" /></a></p>
<p>Free theme :</p>
<ul>
<li>You have to edit all files to make some changes. For ads you need to edit files from ads folder. For index settings you need to change index.php
<ul>
<li>For featured slider: find

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #66cc66;">&amp;</span>lt<span style="color: #66cc66;">;</span> ?php <span style="color: #ff0000">$my_query</span> <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'tag=featured&amp;amp;showposts=3'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span></pre></div></div>

<p><strong>featured</strong> - enter tag slug and how many slides you want</li>
<li>For small excerpts find:

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #ff0000">$my_query</span> <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'category_name=economy&amp;amp;showposts=3'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span></pre></div></div>

<p>Change category_name according to your category slug</li>
</ul>
</li>
<li>Images is added width <a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/customFields.png">custom fields</a> with 130&#215;130px for index and 200&#215;150px for inner slider</li>
<li><strong>Plugin settings</strong></li>
<li><a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/printThis.png">Print This</a></li>
<li><a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/emailThis.png">Email this</a></li>
<li>Excerpt length: 150</li>
</ul>
<p><a href="http://blog.iamntz.com/files/wordnewz-free.zip">Download here</a>.</p>
<p><strong>What about premium version?</strong></p>
<p>When you purchase the premium version you will have:</p>
<ul>
<li>Technical support</li>
<li>Install/configure wordpress theme and plugins</li>
<li>Small changes of theme (colours, sizes, etc)</li>
<li><a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/YourSiteWordnewzOptionsWordPress.png">Admin panel for theme</a></li>
<li>RSS for each category
<ul>
<li> mail: slice [@] iamntz. [] com</li>
<li>y!messenger: i0nutzb</li>
<li>skype: i0nutzb</li>
</ul>
</li>
<p>The price for premium theme is $50 and for more details you can contact me here:</p>
<p>For now i don&#8217;t have an automatic way for purchasing, but i will reply you ASAP.</ul>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/35/wordnewz-wordpress-theme/feed</wfw:commentRss>
		</item>
		<item>
		<title>jQuery AJAX trick (very useful!)</title>
		<link>http://dev.iamntz.com/34/jquery-ajax-trick-very-useful</link>
		<comments>http://dev.iamntz.com/34/jquery-ajax-trick-very-useful#comments</comments>
		<pubDate>Thu, 03 Jul 2008 00:28:22 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Advices]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[How is made?]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=34</guid>
		<description><![CDATA[Did you ever ask yourself how can you display a &#8220;loading&#8221; indicator when you make ajax calls using various libraries?
The simple but efficient answer is this:

1
2
3
4
5
6
$&#40;document&#41;.ready&#40;function&#40;&#41;&#123;
$&#40;'&#60;div id=&#34;busy&#34;&#62;Loading...&#60;/div&#62;'&#41;
        .ajaxStart&#40;function&#40;&#41; &#123;$&#40;this&#41;.show&#40;&#41;;&#125;&#41;
        .ajaxStop&#40;function&#40;&#41; &#123;$&#40;this&#41;.hide&#40;&#41;;&#125;&#41;
        .appendTo&#40;'body'&#41;;
&#125;&#41;;

And that&#8217;s all. [...]]]></description>
			<content:encoded><![CDATA[<p>Did you ever ask yourself how can you display a &#8220;loading&#8221; indicator when you make ajax calls using various libraries?</p>
<p>The simple but efficient answer is this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="javascript">$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'&lt;div id=&quot;busy&quot;&gt;Loading...&lt;/div&gt;'</span><span style="color: #66cc66;">&#41;</span>
        .<span style="color: #006600;">ajaxStart</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">show</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>
        .<span style="color: #006600;">ajaxStop</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">hide</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>
        .<span style="color: #006600;">appendTo</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>And that&#8217;s all. You need to do this only once.</p>
<p>Ofcourse, you can apply some CSS styles to #busy div, using an image generated with <a href="http://ajaxload.info/">ajaxload</a> or something similar.</p>
<p>I didn&#8217;t use any other libraries (actually i used prototype with scriptaculous sometime like AGES ago), but i think all cool libraries (like jQuery) have similar methods.</p>
<p>Another great news: with MORE than 50 fixes (but no new features tough) <a href="http://jquery.com/blog/2008/06/27/jquery-ui-151/">jQuery UI 1.5.1 is out</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/34/jquery-ajax-trick-very-useful/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress get_posts() function</title>
		<link>http://dev.iamntz.com/33/wordpress-get_posts-function</link>
		<comments>http://dev.iamntz.com/33/wordpress-get_posts-function#comments</comments>
		<pubDate>Sun, 29 Jun 2008 22:42:28 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Good to know]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=33</guid>
		<description><![CDATA[Today i spent some time trying to figure how to get existing (and also used) tags from wordpress and using in admin panel as a combo box, for my brand new theme Wordnewz.
The return of get_tags() function was some kind of array but, because of my skills (not) in PHP i spend WAY too much [...]]]></description>
			<content:encoded><![CDATA[<p>Today i spent some time trying to figure how to get existing (and also used) tags from wordpress and using in admin panel as a combo box, for my brand new theme Wordnewz.</p>
<p>The return of get_tags() function was some kind of array but, because of my skills (not) in PHP i spend WAY too much time to go figure what to do. The initial result of get_tags() function is:</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #000066;">Array</span>
<span style="color: #66cc66;">&#40;</span>
    <span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> stdClass Object
        <span style="color: #66cc66;">&#40;</span>
            <span style="color: #66cc66;">&#91;</span>term_id<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> <span style="color: #cc66cc;">28</span>
            <span style="color: #66cc66;">&#91;</span>name<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> Featured
            <span style="color: #66cc66;">&#91;</span>slug<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> featured
            <span style="color: #66cc66;">&#91;</span>term_group<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> <span style="color: #cc66cc;">0</span>
            <span style="color: #66cc66;">&#91;</span>term_taxonomy_id<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> <span style="color: #cc66cc;">29</span>
            <span style="color: #66cc66;">&#91;</span>taxonomy<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> post_tag
            <span style="color: #66cc66;">&#91;</span>description<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span>
            <span style="color: #66cc66;">&#91;</span>parent<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> <span style="color: #cc66cc;">0</span>
            <span style="color: #66cc66;">&#91;</span><span style="color: #000066;">count</span><span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">=&gt;</span> <span style="color: #cc66cc;">6</span>
        <span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>And i only needed [name] and [slug]. Ofcourse, like a smart guy that i am, i pointed my browser on wordpress codex where i found&#8230; NOTHING. Nothing about this function&#8230; Great. Let&#8217;s try various stuff and google it for any ideas. And i found a PHP function <a href="http://php.net/get_object_vars">get_object_vars</a> for easy conversion. After this, all was GREAT. I use it like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php"><span style="color: #ff0000">$allTags</span> <span style="color: #66cc66;">=</span> get_tags<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000">$allTags</span> <span style="color: #b1b100;">as</span> <span style="color: #ff0000">$thisTags</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
		<span style="color: #ff0000">$thisTag</span> <span style="color: #66cc66;">=</span> <span style="color: #000066;">get_object_vars</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000">$thisTags</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
		<span style="color: #000066;">echo</span> <span style="color: #ff0000;">'&lt;option value=&quot;'</span><span style="color: #66cc66;">.</span><span style="color: #ff0000">$thisTag</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'slug'</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">'&quot;&gt;'</span><span style="color: #66cc66;">.</span><span style="color: #ff0000">$thisTag</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'name'</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">'&lt;/option&gt;<span style="color: #000099; font-weight: bold;">\n</span>'</span><span style="color: #66cc66;">;</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>And it WORKS like a charm. I posted this thing because i didn&#8217;t found too much references for <strong>stdClass Object</strong> or <strong>get_tags()</strong> Wordpress function.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/33/wordpress-get_posts-function/feed</wfw:commentRss>
		</item>
		<item>
		<title>And another one!</title>
		<link>http://dev.iamntz.com/32/and-another-one</link>
		<comments>http://dev.iamntz.com/32/and-another-one#comments</comments>
		<pubDate>Fri, 27 Jun 2008 18:43:24 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=32</guid>
		<description><![CDATA[After last two wordpress themes that i released in last weeks was a success (i expected to have less feedback than i had), i was thinking to make another theme. This time will be a free-premium theme. What it mean this? The theme will be launched as a free theme and will have some features [...]]]></description>
			<content:encoded><![CDATA[<p>After last two <strong>wordpress themes</strong> that i released in last weeks was a success (i expected to have less feedback than i had), i was thinking to make another theme. This time will be a free-premium theme. What it mean this? The theme will be launched as a free theme and will have some features available only if you pay (almost anything from site will be customizable from admin panel).</p>
<p>Anyway, it&#8217;s a theme great for using in a news site, fixed width, two sidebars, using custom fields and various plugins.</p>
<p>Here is a preview of current progress:</p>
<p><a href="http://i126.photobucket.com/albums/p95/i0nutzb/Portfolio/wordnewz.png"><img src="http://i126.photobucket.com/albums/p95/i0nutzb/Portfolio/wordnewz.png" alt="" width="449" height="459" /></a></p>
<p>I think will be done by the end of this week, when i will release both free and premium version of the theme.</p>
<p>Stay tuned for more.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/32/and-another-one/feed</wfw:commentRss>
		</item>
		<item>
		<title>Another free Wordpress theme - Rounded.Cube</title>
		<link>http://dev.iamntz.com/30/free-wordpress-theme-2</link>
		<comments>http://dev.iamntz.com/30/free-wordpress-theme-2#comments</comments>
		<pubDate>Mon, 23 Jun 2008 08:50:09 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=30</guid>
		<description><![CDATA[Yesterday i was pretty bored: weekend, alone, and all bad things and i say to make another free wordpress theme. I opened Photoshop and i start to draw. You can see the results on the next screenshot or here.

Some of the main features:

Widgetizable;
Xhtml 1.1 / CSS 2.1 Valid;
2 columns;
trackbacks and pingbacks are separated from comments;
and [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday i was pretty bored: weekend, alone, and all bad things and i say to make another <strong>free wordpress theme</strong>. I opened Photoshop and i start to draw. You can see the results on the next screenshot or <a href="http://www.dordzbor.ro/">here</a>.</p>
<p><a title="Free wordpress theme" href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/f677a1b3-4e8a-46a5-aa80-2857777c22b.png"><img src="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/f677a1b3-4e8a-46a5-aa80-2857777c22b.png" alt="Free wordpress theme" width="600" height="558" /></a></p>
<p>Some of the main features:</p>
<ul>
<li>Widgetizable;</li>
<li>Xhtml 1.1 / CSS 2.1 Valid;</li>
<li>2 columns;</li>
<li>trackbacks and pingbacks are separated from comments;</li>
<li>and more things that you can discover if you try this great and <strong>free wordpress theme</strong> <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
</ul>
<p>You can download the teme <a href="http://blog.iamntz.com/wp-content/plugins/wp-downloadMonitor/download.php?id=2">HERE</a>.</p>
<p>But wait! There is more nice things to come! More free wordpres theme to come and if you want a premium theme, don&#8217;t wait and <a href="http://dev.iamntz.com/about">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/30/free-wordpress-theme-2/feed</wfw:commentRss>
		</item>
		<item>
		<title>MooTools 1.2</title>
		<link>http://dev.iamntz.com/29/mootools-12</link>
		<comments>http://dev.iamntz.com/29/mootools-12#comments</comments>
		<pubDate>Thu, 12 Jun 2008 16:06:17 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=29</guid>
		<description><![CDATA[After jQuery 1.2.6 and jQuery UI 1.5, I expected that some other frameworks release a new version (script.aculo.us, moo, and so on). For now, only Moo launched the final release (1.2) of their cool library. I don&#8217;t know what to say about the library (I didn&#8217;t try it yet), but this version of site is [...]]]></description>
			<content:encoded><![CDATA[<p>After jQuery 1.2.6 and <a href="http://jquery.com/blog/2008/06/09/jquery-ui-v15-released-focus-on-consistent-api-and-effects/">jQuery UI 1.5</a>, I expected that some other frameworks release a new version (script.aculo.us, moo, and so on). For now, only Moo <a href="http://blog.mootools.net/2008/6/12/mootools-1-2-it-s-official">launched the final release</a> (1.2) of their cool library. I don&#8217;t know what to say about the library (I didn&#8217;t try it yet), but this version of site is much, much nicer.</p>
<p>Even if I&#8217;m a jQuery addicted, I saw that MooTools have smoother animation, but their documentaion is weird (or maybe is just me, I don&#8217;t know). Anyway, in the last half year, I told myself to try Moo, but every time I give up. Maybe I will try it sometime.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/29/mootools-12/feed</wfw:commentRss>
		</item>
		<item>
		<title>And the free wordpress theme is here</title>
		<link>http://dev.iamntz.com/28/and-the-free-wordpress-theme-is-here</link>
		<comments>http://dev.iamntz.com/28/and-the-free-wordpress-theme-is-here#comments</comments>
		<pubDate>Sun, 08 Jun 2008 00:11:24 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=28</guid>
		<description><![CDATA[Finally!
I finished my first free wordpress theme. What it make it so special? Well&#8230; The theme is with two and with three column: if you don&#8217;t have widgets on a sidebar, that sidebar is hidden and content is stretched. Nice, huh?
Anyway, you can download the theme with a single CLICK. If you (don&#8217;t) like it [...]]]></description>
			<content:encoded><![CDATA[<p>Finally!</p>
<p>I finished my first <strong>free wordpress theme</strong>. What it make it so special? Well&#8230; The theme is with two and with three column: if you don&#8217;t have widgets on a sidebar, that sidebar is hidden and content is stretched. Nice, huh?<br />
Anyway, you can download the theme with a single <a href="http://blog.iamntz.com/wp-content/plugins/wp-downloadMonitor/download.php?id=1">CLICK</a>. If you (don&#8217;t) like it or if you have a problem, let me know.</p>
<p>Enjoy <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Edit:</p>
<p>For now i can&#8217;t put a functional demo. But you can see the screenshot i put it yesterday <a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/take9.jpg">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/28/and-the-free-wordpress-theme-is-here/feed</wfw:commentRss>
		</item>
		<item>
		<title>Free Wordpress Theme II</title>
		<link>http://dev.iamntz.com/27/free-wordpress-theme-ii</link>
		<comments>http://dev.iamntz.com/27/free-wordpress-theme-ii#comments</comments>
		<pubDate>Sat, 07 Jun 2008 22:55:43 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=27</guid>
		<description><![CDATA[Yesterday i told you that i will provide a free wordpress theme. At least one!
Today i want to tell you something about progress:
Theme name: Weekend. I made a quick search on google, i didn&#8217;t find any theme with this name so&#8230;   
Theme status: 90%. I&#8217;m stuck on dynamic sidebars but is nothing serious; Also, [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday i told you that i will provide a <strong>free wordpress theme</strong>. At least one!</p>
<p>Today i want to tell you something about progress:</p>
<p><strong>Theme name</strong>: Weekend. I made a quick search on google, i didn&#8217;t find any theme with this name so&#8230;  <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Theme status: </strong>90%. I&#8217;m stuck on dynamic sidebars but is nothing serious; Also, the whole theme is CSS 2.1 &amp; XHTML 1.0 strict valid. You know that is for freaks, right?</p>
<p><strong>Launch ETA</strong>: few hours, up to one day. This is mean one thing: tomorrow you can download the <strong>Weekend Theme</strong>!</p>
<p>Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/27/free-wordpress-theme-ii/feed</wfw:commentRss>
		</item>
		<item>
		<title>Free Wordpress Theme</title>
		<link>http://dev.iamntz.com/26/free-wordpress-theme</link>
		<comments>http://dev.iamntz.com/26/free-wordpress-theme#comments</comments>
		<pubDate>Fri, 06 Jun 2008 22:42:18 +0000</pubDate>
		<dc:creator>Ionut Staicu</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dev.iamntz.com/?p=26</guid>
		<description><![CDATA[Well&#8230; Is true, in few days i will release my very first free wordpress theme  Some blue, some gray and some pink (or red, i&#8217;m not too sure). Today i spent few hours for design (i don&#8217;t know if i telling you this before, but even i&#8217;m a good coder - and some people [...]]]></description>
			<content:encoded><![CDATA[<p>Well&#8230; Is true, in few days i will release my very first <strong>free wordpress theme</strong> <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Some blue, some gray and some pink (or red, i&#8217;m not too sure). Today i spent few hours for design (i don&#8217;t know if i telling you this before, but even i&#8217;m a good coder - and some people think i really am - i&#8217;m not the best designer in the world. Actually&#8230; I&#8217;m not designer at all <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) and i hope that i will have some time in next few days for coding.</p>
<p>Anyways, here is a sneak preview of my first theme:</p>
<p><a href="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/take9.jpg"><img src="http://i126.photobucket.com/albums/p95/i0nutzb/Blog/take9.jpg" alt="" width="491" height="596" /></a></p>
<p>What do you think?<br />
ps: some extra nice features will be also available (you can pick how many sidebars you will use and also their positions - top/bottom/right/left ). Just stay close <img src='http://dev.iamntz.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.iamntz.com/26/free-wordpress-theme/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.856 seconds -->
<!-- Cached page served by WP-Cache -->
<!-- Compression = gzip -->