<?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>Cozmoslabs &#187; General</title>
	<atom:link href="http://www.cozmoslabs.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cozmoslabs.com</link>
	<description>Web design and development experiment.</description>
	<lastBuildDate>Thu, 01 Jul 2010 09:26:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>wp_nav_menu shortcode</title>
		<link>http://www.cozmoslabs.com/2010/06/28/wp_nav_menu-shortcode/</link>
		<comments>http://www.cozmoslabs.com/2010/06/28/wp_nav_menu-shortcode/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 14:42:18 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1170</guid>
		<description><![CDATA[Along with WordPress 3.0 we now have access to the really useful wp_nav_menu functionality. We can now create our own menus without resulting to several plugins or tricks. Another cool thing we can do with this new menu is build the sitemap. I was in need the other day of a plugin that would generate [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Along with WordPress 3.0 we now have access to the really useful <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu</a> functionality. We can now create our own menus without resulting to several plugins or tricks. </p>
<p>Another cool thing we can do with this new menu is build the sitemap. I was in need the other day of a plugin that would generate a sitemap page (something like an archive page). Not an xml sitemap, just a standard page from where the visitors of the site could navigate more easily. The best solution appeared to be an <strong>WordPress menu shortcode</strong>.</p>
<p>Since I couldn&#8217;t find something like this I realized that I could use the <strong>wp_nav_menu</strong> function and built a shortcode to insert it into my page. </p>
<p><span id="more-1170"></span></p>
<h3>wp_nav_menu shortcode</h3>
<p>To install the shortcode just place this code inside functions.php file of your theme.</p>

<div class="wp_codebox"><table><tr id="p11702"><td class="code" id="p1170code2"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Function that will return our Wordpress menu</span>
<span style="color: #000000; font-weight: bold;">function</span> list_menu<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<a href="http://www.php.net/extract"><span style="color: #990000;">extract</span></a><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span>  
		<span style="color: #0000ff;">'menu'</span>            <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'div'</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container_class'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container_id'</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'menu_class'</span>      <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'menu'</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'menu_id'</span>         <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'echo'</span>            <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'fallback_cb'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'wp_page_menu'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'before'</span>          <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'after'</span>           <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'link_before'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'link_after'</span>      <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'depth'</span>           <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'walker'</span>          <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'theme_location'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> 
		<span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
	<span style="color: #b1b100;">return</span> wp_nav_menu<span style="color: #009900;">&#40;</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span> 
		<span style="color: #0000ff;">'menu'</span>            <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$menu</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$container</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container_class'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$container_class</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'container_id'</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$container_id</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'menu_class'</span>      <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$menu_class</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'menu_id'</span>         <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$menu_id</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'echo'</span>            <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'fallback_cb'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$fallback_cb</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'before'</span>          <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$before</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'after'</span>           <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$after</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'link_before'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$link_before</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'link_after'</span>      <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$link_after</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'depth'</span>           <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$depth</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'walker'</span>          <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$walker</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'theme_location'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$theme_location</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">//Create the shortcode</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;listmenu&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;list_menu&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>To use the shortcode just place <code>[listmenu menu=Sitemap]</code> into your post and that&#8217;s it (replace Sitemap with the id, slug or name of the menu you want to list.)</p>
<p>You can also use all the variables that come with the new wp_nav_menu function, like menu_class, or container so you can customize your menu really easy. Just separate the attributes by space like so: <br/> <code>[listmenu menu=Sitemap menu_class=sitemap_menu]</code></p>
<h3>Conclusions</h3>
<p>This is really useful for client sites, where you want to make it easy edit and modify the site without braking the html. We could have just manually created the sitemap, but this is a lot nicer. Another way you could use this shortcode would be to create sub-menus on certain pages only. </p>
<p><strong>If you find use for this shortcode in an interesting way don&#8217;t hesitate to share it in the comments.</strong></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2010/06/28/wp_nav_menu-shortcode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The new Smarter and WordPress 3.0</title>
		<link>http://www.cozmoslabs.com/2010/06/24/the-new-smarter-and-wordpress-3-0/</link>
		<comments>http://www.cozmoslabs.com/2010/06/24/the-new-smarter-and-wordpress-3-0/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 13:12:52 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[color child theme]]></category>
		<category><![CDATA[custom navigation]]></category>
		<category><![CDATA[multilingual wordpress]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[smarter theme]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[WPML]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1130</guid>
		<description><![CDATA[As you all know, WordPress has made the 3.0 transition, which brings the long-awaited merge of MU and WordPress and a lot of new features to the table. Trying to keep up with the goodies we developed a new version of Smarter, which runs smooth on 3.0 and takes advantage of the new feature list. [...]


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2010/01/11/smarter-wordpress-theme/' rel='bookmark' title='Permanent Link: Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/2009/12/18/smarter-theme-teaser/' rel='bookmark' title='Permanent Link: Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/2009/04/07/green-anyone-try-commune-thematic-child-theme/' rel='bookmark' title='Permanent Link: <span style="color:#7fae52">Green anyone?</span> Try Commune &#8211; Thematic Child Theme!'><span style="color:#7fae52">Green anyone?</span> Try Commune &#8211; Thematic Child Theme!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>As you all know,  WordPress has made the 3.0 transition, which brings the long-awaited  merge of MU and WordPress and a lot of new features to the table.<br />
Trying  to keep up with the goodies we developed a new version of Smarter,  which runs smooth on 3.0 and takes advantage of the new  feature list.</p>
<div id="attachment_1146" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-1146" title="smarter2" src="http://www.cozmoslabs.com/wp-content/uploads/2010/06/smarter2.jpg" alt="" width="600" height="370" /><p class="wp-caption-text">A Smart WordPress 3.0 Theme</p></div>
<p>As mentioned before Smarter theme was designed as a  powerful CMS for company websites. It&#8217;s a business wordpress theme,  with a SEO friendly structure.</p>
<p>This being said, here are some of the new things  that <strong>Smarter 2.0</strong> has to offer.</p>
<p>The <strong>News Items</strong> was implemented using the custom post type feature from WP 3.0. Now,  adding and editing news is simple and straight forward, leaving no room  for confusion.</p>
<p>The <strong>custom navigation menu</strong> has been set as the theme default menu, so now you will be able to insert and organize things like pages, categories, news or custom links in your theme menu.</p>
<p>Smarter  also comes with a big package of <strong>different color child themes</strong>, giving  you the option to choose the right color range for your business.</p>
<p>In case you&#8217;re aiming for a <strong>multilingual website</strong>, Smarter 2.0 has been tested and works great with WPML plugin.</p>
<p><strong>Smarter Theme Options</strong>, which let you  customize your site looks, comes with a lighter interface which includes  all the options from the previous version. So you have options like: selecting between multiple theme layouts, uploading a header image, editing the featured slider page etc.</p>
<p>To find out more about Smarter 2.0  and it&#8217;s new features check out the screencast below:</p>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' /><param name='flashvars' value='i=81717' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=81717' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object></p>
<h3>Pricing</h3>
<p>For 25$ you can purchase Smarter 2.0, which includes all the functionality of the old version, plus the new features mentioned before. The zip also includes the psd files and the color child themes. Being released under a GPL license, Smarter can be used on an unlimited number of websites.</p>
<div class="preview_download"><a href="http://www.cozmoslabs.com/project/smarter/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/preview.gif" alt="preview" /></a><a class="ec_ejc_thkbx" onclick="javascript:return EJEJC_lc(this);" href="https://www.e-junkie.com/ecom/gb.php?c=cart&amp;i=591710&amp;cl=94691&amp;ejc=2" target="ej_ejc"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/buy_now.gif" border="0" alt="Add to Cart" /></a></div>
<h3> Support </h3>
<p>If you have any suggestions or questions regarding the new version of this theme, please visit our forums  (http://cozmoslabs.com/forums/).</p>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2010/01/11/smarter-wordpress-theme/' rel='bookmark' title='Permanent Link: Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/2009/12/18/smarter-theme-teaser/' rel='bookmark' title='Permanent Link: Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/2009/04/07/green-anyone-try-commune-thematic-child-theme/' rel='bookmark' title='Permanent Link: <span style="color:#7fae52">Green anyone?</span> Try Commune &#8211; Thematic Child Theme!'><span style="color:#7fae52">Green anyone?</span> Try Commune &#8211; Thematic Child Theme!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2010/06/24/the-new-smarter-and-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Google Buzz from Gmail</title>
		<link>http://www.cozmoslabs.com/2010/02/11/remove-google-buzz-from-gmail/</link>
		<comments>http://www.cozmoslabs.com/2010/02/11/remove-google-buzz-from-gmail/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 09:22:55 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google buzz]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=983</guid>
		<description><![CDATA[I don&#8217;t like google buzz. Here is how to remove Google Buzz from Gmail in three easy steps. Hide Google Buzz from the Gmail interface Turn off Google Buzz completely Related posts:Themes in Gmail


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/11/21/themes-in-gmail/' rel='bookmark' title='Permanent Link: Themes in Gmail'>Themes in Gmail</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t like google buzz.</p>
<p>Here is how to <strong>remove Google Buzz from Gmail</strong> in three easy steps.</p>
<h3>Hide Google Buzz from the Gmail interface</h3>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' ></param><param name='flashvars' value='i=46327' ></param><param name='allowFullScreen' value='true' ></param><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=46327' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer' ></embed></object></p>
<h3>Turn off Google Buzz completely</h3>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' ></param><param name='flashvars' value='i=46329' ></param><param name='allowFullScreen' value='true' ></param><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=46329' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer' ></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/11/21/themes-in-gmail/' rel='bookmark' title='Permanent Link: Themes in Gmail'>Themes in Gmail</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2010/02/11/remove-google-buzz-from-gmail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cozmoslabs forums</title>
		<link>http://www.cozmoslabs.com/2009/12/14/cozmoslabs-forums/</link>
		<comments>http://www.cozmoslabs.com/2009/12/14/cozmoslabs-forums/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 09:52:48 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[forums]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=788</guid>
		<description><![CDATA[It&#8217;s been really difficult to keep track of bugs and requests for the free Themelets I&#8217;ve released. There are over 380 comments related to the free themes and since I have plans in the future to release more a forum sounded as a good idea. Besides support for the themes I hope to discuss any [...]


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2010/06/04/charisma-free-genesis-child-theme/' rel='bookmark' title='Permanent Link: Charisma, Free Genesis Child Theme'>Charisma, Free Genesis Child Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been really difficult to keep track of bugs and requests for the free Themelets I&#8217;ve released. There are over 380 comments related to the free themes and since I have plans in the future to release more a forum sounded as a good idea.</p>
<p>Besides support for the themes I hope to discuss any issues you might have with the code snippets found on the site.</p>
<p>So without further ado I here by present you the <a href="http://cozmoslabs.com/forums/">Cozmoslabs Forums</a>.</p>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2010/06/04/charisma-free-genesis-child-theme/' rel='bookmark' title='Permanent Link: Charisma, Free Genesis Child Theme'>Charisma, Free Genesis Child Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/12/14/cozmoslabs-forums/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jEdit &#8211; Programmer&#8217;s Text Editor</title>
		<link>http://www.cozmoslabs.com/2009/11/21/jedit-programmers-text-editor/</link>
		<comments>http://www.cozmoslabs.com/2009/11/21/jedit-programmers-text-editor/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 13:13:28 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[code editor]]></category>
		<category><![CDATA[jedit]]></category>
		<category><![CDATA[text editor]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=760</guid>
		<description><![CDATA[Since version 2.0 Aptana stopped supporting their own fork of the Eclipse PDT I&#8217;ve been searching for another editor. I got feed up with how slow it is, all the bloatware, installing the PDT was made me loose an entire day and I honestly believed there had to exist a better editor for Windows. I [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/11/jedit.jpg" alt="jedit" title="jedit" width="300" height="200" class="alignright size-full wp-image-763" /></p>
<p>Since version 2.0 Aptana stopped supporting their own fork of the <a href="http://www.eclipse.org/pdt/">Eclipse PDT</a> I&#8217;ve been searching for another editor. I got feed up with how slow it is, all the bloatware, installing the PDT was made me loose an entire day and I honestly believed there had to exist a better editor for Windows.</p>
<p>I must have lost several days searching and testing different editors! </p>
<p><span id="more-760"></span></p>
<h3>What I want from a Code Editor:</h3>
<ul>
<li>Really good and easy to use FTP manager</li>
<li>Code completion for css (it saves me a ton of time). It has to be automatic. When I write it should start showing suggestions.</li>
<li>Good code coloring </li>
<li>Fast and good looking.</li>
</ul>
<p>Sounds simple enough right? Well&#8230; not really. Out of all of the Code Editors out there for Windows (including the ones you have to pay for &#8211; except Dreamweaver that is just to expensive to be taken seriously) there is just a handful of editors that fit the bill: Notepadd++ (however the FTP is full of bugs and sometimes just refuses to work), UltraEdit (it flickers when you&#8217;re using auto-completion &#8211; I think it redraws the screen every time I press a key) and <a href="http://www.jedit.org/index.php">jEdit</a>.</p>
<h3>jEdit to the rescue</h3>
<p>Why didn&#8217;t I try jEdit before? I always thought it was a Java only editor. But boy I was wrong. It appears it just requires <a href="http://www.java.com/en/download/manual.jsp">Java JRE</a>. </p>
<p>So why use jEdit? Because everything works (at least for what I need it for), good FTP, good code completion, fast and it looks good. Oh! Did I mention that is FREE, GPL and supports <a href="http://plugins.jedit.org/list.php">plugins</a>? </p>
<p>I honestly hope my search for a Code Editor stops here, if not I&#8217;m going to start writing my own <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/11/21/jedit-programmers-text-editor/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Create a WordPress Theme &#8211; a tutorial series by Ian Stewart</title>
		<link>http://www.cozmoslabs.com/2009/07/07/how-to-create-a-wordpress-theme/</link>
		<comments>http://www.cozmoslabs.com/2009/07/07/how-to-create-a-wordpress-theme/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 12:41:48 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=610</guid>
		<description><![CDATA[Have you ever wanted to create your own WordPress theme? If yes then you must know of all the tutorials out there. The problem is that most of them are incomplete. But not any more! Ian Stewart from ThemeShaper released, what I consider, the best step-by-step tutorial series for those who want to learn how [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to create your own WordPress theme? If yes then you must know of all the tutorials out there. The problem is that most of them are incomplete. But not any more!</p>
<p><a href="http://themeshaper.com/about/">Ian Stewart</a> from <a href="http://themeshaper.com">ThemeShaper </a> released, what I consider, <strong>the best step-by-step tutorial series for those who want to learn how to build their own WordPress theme from scratch</strong>.</p>
<blockquote><p>In only 11 individual lessons this WordPress Themes Tutorial is going to show you how to build a powerful, up-to-date, WordPress Theme from scratch. As we go along I’ll explain what’s happening including (for better or worse) my thinking on certain techniques and why I’m choosing one path over another.</p></blockquote>
<p>Here’s the list of features your finished theme will have:</p>
<ul>
<li>All the search-engine optimization you’ll really&nbsp;need</li>
<li>Including google-supported <a href="http://google.com/support/webmasters/bin/answer.py?answer=146897">Microformat</a>&nbsp;markup</li>
<li>Valid and logical semantic markup structure than can be used to create ANY&nbsp;layout</li>
<li>Smart default CSS&nbsp;layouts</li>
<li>Dynamic Body, post and comment&nbsp;classes</li>
<li>Separated trackbacks and threaded&nbsp;comments</li>
<li>2 widget areas coded to disappear when they’re&nbsp;empty</li>
<li>And all the typical WordPress stuff you expect from a&nbsp;theme</li>
</ul>
<p>If you&#8217;re still not convinced&#8230; well&#8230;you should still read them. Here are all the links to the tutorials! </p>
<div class="preview_download" style="text-align:left;">
<ol>
<li><a href="http://themeshaper.com/wordpress-themes-templates-tutorial/">Introduction</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-development-tools-tutorial/">Theme Development&nbsp;Tools</a></li>
<li><a href="http://themeshaper.com/creating-wordpress-theme-html-structure-tutorial/">Creating a Theme HTML&nbsp;Structure</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-template-directory-structure-tutorial/">Template and Directory&nbsp;Structure</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-header-template-tutorial/">The Header&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-index-template-tutorial/">The Index&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-single-post-post-attachment-404-templates-tutorial/">The Single Post, Post Attachment, &#038; 404&nbsp;Templates</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-comments-template-tutorial/">The Comments&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-search-page-template-tutorial/">The Search Template &#038; The Page&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/archive-author-category-tags-template/">The Archive, Author, Category &#038; Tags&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/wordpress-theme-sidebar-template/">The Sidebar&nbsp;Template</a></li>
<li><a href="http://themeshaper.com/reset-rebuild-wordpress-theme-css-define-layouts/">Reset-Rebuild Theme CSS &#038; Define Your&nbsp;Layouts</a></li>
</ol>
</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/07/07/how-to-create-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>When in doubt blog about your Author&#8217;s Block!</title>
		<link>http://www.cozmoslabs.com/2009/04/16/when-in-doubt-blog-about-your-authors-block/</link>
		<comments>http://www.cozmoslabs.com/2009/04/16/when-in-doubt-blog-about-your-authors-block/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:24:24 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=374</guid>
		<description><![CDATA[I have Author&#8217;s Block. I doubt it&#8217;s contagious so if you&#8217;re reading this no need to worry. Now to the mater at hand, why blog about it? For some particular reason I don&#8217;t want to write that much stuff anymore. My fear is that I don&#8217;t write enough interesting posts! Why write about something that [...]


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/08/03/new-web-design-and-development-blog/' rel='bookmark' title='Permanent Link: New Web-Design and Development blog'>New Web-Design and Development blog</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="postimage">
<img src="http://www.cozmoslabs.com/wp-content/uploads/2009/04/what_now.jpg" alt="what_now" title="what_now" width="300" height="200" class="alignnone size-full wp-image-378" />
</div>
<p>I have Author&#8217;s Block. I doubt it&#8217;s contagious so if you&#8217;re reading this no need to worry. Now to the mater at hand, why blog about it? </p>
<p>For some particular reason I don&#8217;t want to write that much stuff anymore. My fear is that I don&#8217;t write enough interesting posts! Why write about something that dosen&#8217;t resonate with me? Sure some people might find my articles useful, but will they return for more? </p>
<p>So I&#8217;m writing about web-design and developing. This is far from being a niche. Not in the internet world at least. I tried to focus my attention to WordPress and in particular Thematic since I&#8217;m using both in my business. It helped me differentiate from other blogs out there and some even found my WordPress category interesting. But I feel I need more. I want more variety in my articles. I could write about every WordPress and Thematic trick and post short pieces of code but I wouldn&#8217;t be any happier. </p>
<p>Next on my agenda? Short 4 day Easter Vacation <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hopefully I&#8217;ll have a clearer head when I get back! I already have &#8220;some&#8221; ideas of what to do next (starting with a redesign) so I&#8217;m not completely in the dark. </p>
<p>And you know what? I already feel more confident now that I&#8217;ve shared this with the world (theoretically at least). Suggestions welcomed <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/08/03/new-web-design-and-development-blog/' rel='bookmark' title='Permanent Link: New Web-Design and Development blog'>New Web-Design and Development blog</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/04/16/when-in-doubt-blog-about-your-authors-block/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Drop Down Menu for Thematic</title>
		<link>http://www.cozmoslabs.com/2009/02/12/thematic-drop-down-menu/</link>
		<comments>http://www.cozmoslabs.com/2009/02/12/thematic-drop-down-menu/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 21:43:15 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=284</guid>
		<description><![CDATA[Version 0.9 of Thematic was launched a few days ago. Because of this the PageDrop Theme is no longer useful and will be discontinued since Thematic now offers an out of the box drop-down menu. If you&#8217;ve been working with Thematic and your not really into HTML, CSS, Javascript, PHP and everything related (I guess [...]


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2009/03/20/quickly-add-a-category-dropdown-to-thematic-09/' rel='bookmark' title='Permanent Link: Quickly add a Category DropDown to Thematic 0.9'>Quickly add a Category DropDown to Thematic 0.9</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="showcase_blogs" style="background:#caf8b2;">
Version <a href="http://themeshaper.com/thematic-for-wordpress/">0.9 of Thematic</a> was launched a few days ago. Because of this the PageDrop Theme is no longer useful and will be discontinued since Thematic now offers an out of the box drop-down menu.
</div>
<div style="opacity:0.5;">
If you&#8217;ve been working with Thematic and your not really into HTML, CSS, Javascript, PHP and everything related (I guess the only thing missing from that list was MySQL <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) you probably know that Thematic just doesn&#8217;t support drop-down menus out of the box.</p>
<p>After quite a success with my <a href="http://www.cozmoslabs.com/2008/12/17/replacing-the-thematic-menu-with-a-dropdown-list-of-categories/">CatDrop Childtheme</a> that replaces Thematic&#8217;s the main menu with a drop-down menu of categories, I promised a post and childtheme in the future that will do the same with the pages menu. Although a bit late on my promise here is <strong>PageDrop Childtheme!</strong></p>
<div id="preview_download"><a href="http://www.cozmoslabs.com/projects/wp/?theme=pagedrop" target="_blank"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/02/preview.gif" border="0" alt="preview child theme" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=3" title="Version 1.0 downloaded 546 times" ><img src="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/img/download.gif" alt="Download Drop Down Menu for Thematic Version 1.0" /></a></div>
<div id="showcase_blogs" style="background:#caf8b2;">In order to install it you have to download the <a onclick="javascript:pageTracker._trackPageview ('/outbound/themeshaper.com');" href="http://themeshaper.com/thematic-for-wordpress/">Thematic Theme</a> (from which this child theme inherits all of the functionality), upload both themes (PageDrop and Thematic) to your server in the themes folder AND THEN ACTIVATE the PageDrop theme.</div>
<p>I hope that this will help you with your Thematic installation!
</p></div>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2009/03/20/quickly-add-a-category-dropdown-to-thematic-09/' rel='bookmark' title='Permanent Link: Quickly add a Category DropDown to Thematic 0.9'>Quickly add a Category DropDown to Thematic 0.9</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/02/12/thematic-drop-down-menu/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Thematic 0.8</title>
		<link>http://www.cozmoslabs.com/2009/01/20/thematic-08/</link>
		<comments>http://www.cozmoslabs.com/2009/01/20/thematic-08/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 12:07:52 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=230</guid>
		<description><![CDATA[A new version of the Thematic Theme Framework just launched, now at increment 0.8 and the main feature is the threaded and paginated comments. If you have child themes developed with ver. 0.7 chances are the 0.8 will brake it. Changes had to be made to the sidebars (they are now future-proofed for further enhancements [...]


Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/12/11/reflection-media-finally-here/' rel='bookmark' title='Permanent Link: Reflection Media. Finally here.'>Reflection Media. Finally here.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A new version of the <a href="http://themeshaper.com/thematic-for-wordpress/">Thematic Theme Framework</a> just launched, now at increment 0.8 and the main feature is the threaded and paginated comments.</p>
<p>If you have child themes developed with ver. 0.7 chances are the 0.8 will brake it.</p>
<p><span id="more-230"></span></p>
<p>Changes had to be made to the sidebars (they are now future-proofed for further enhancements &#8211; like extra widget-ready areas in Child Themes) and the menu (if your Child Theme uses <em>#menu</em> in it’s CSS to target the navigation menu you’ll want to replace it with <em>.menu</em>, plus the <em>globalnav</em> filter was replaced with <em>wp_page_menu</em>). For more detailed explanations go over to <a href="http://themeshaper.com/blog/thematic-08-live/">Themeshaper</a>, Ian has made a more detailed post about the changes.</p>
<p>I&#8217;m happy to say that I&#8217;m now part of <a href="http://code.google.com/p/thematic/">the team</a> that maintains Thematic. Although my contribution for this launch was rather small, it&#8217;s good to know I could help. If you think you can contribute to the project go right ahead and <a href="http://themeshaper.com/blog/join-thematic-project/">ask Ian to let you in</a>!</p>
<p>To coincide with the 0.8 Thematic launch I&#8217;ve created a new Child Theme. You can preview it and download it over at <a href="http://www.reflectionmedia.ro/2009/01/crystalline-a-crystal-sharp-child-theme-for-thematic/">www.reflectionmedia.ro</a>. I decided to launch this theme there and not on Cozmoslabs so I could bring a bit of attention and traffic over to my business.</p>
<p>Sufficient to say Thematic looks like it has a great future ahead of it. There are new options planed for the 0.9 version that will take it even further from a customization point of view.</p>
<p>I already have started work on another child theme that is due to be done somewhere in February, this time a magazine style one so I have for you a sneak peek of the new theme. Let me know what you think!</p>
<p><a href="http://www.cozmoslabs.com/wp-content/uploads/2009/01/layout021.jpg"><img class="aligncenter size-medium wp-image-232" title="layout021" src="http://www.cozmoslabs.com/wp-content/uploads/2009/01/layout021-215x300.jpg" alt="layout021" width="215" height="300" /></a></p>


<p>Related posts:<ol><li><a href='http://www.cozmoslabs.com/2008/12/11/reflection-media-finally-here/' rel='bookmark' title='Permanent Link: Reflection Media. Finally here.'>Reflection Media. Finally here.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2009/01/20/thematic-08/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reflection Media. Finally here.</title>
		<link>http://www.cozmoslabs.com/2008/12/11/reflection-media-finally-here/</link>
		<comments>http://www.cozmoslabs.com/2008/12/11/reflection-media-finally-here/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 21:35:13 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Theme Design]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=195</guid>
		<description><![CDATA[I haven&#8217;t wrote for some time now. I&#8217;ve been quite busy. A lot of time spent on client work but most of the time went to paperwork. So I now present to you Reflection Media . It&#8217;s my child business. Basically it&#8217;s a web-design and developing firm with big plans for the future. It&#8217;s a [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="postimage"><a href="http://www.cozmoslabs.com/wp-content/uploads/2008/12/reflectionmedia.jpg"><img src="http://www.cozmoslabs.com/wp-content/uploads/2008/12/reflectionmedia.jpg" alt="" title="reflectionmedia" width="240" height="90" class="alignnone size-full wp-image-196" /></a></div>
<p>I haven&#8217;t wrote for some time now. I&#8217;ve been quite busy. A lot of time spent on client work but most of the time went to paperwork. </p>
<p>So I now present to you <a href="http://www.reflectionmedia.ro"> Reflection Media </a>. It&#8217;s my child business. Basically it&#8217;s a web-design and developing firm with big plans for the future. </p>
<p>It&#8217;s a big step for me moving from freelancing to my own business even if it&#8217;s a small one.</p>
<p>It was thought up by me and my friend Adrian. I&#8217;m also happy to have onboard my friend Gabriel who will do all the programing we need for the web (and give me more time to design). Neither the web-site or the business plan are quite finished, but we wanted to go forward with it. One could consider this a beta version of the business <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>The website it&#8217;s built on the 2.7 version of WordPress. The theme for the web-site is also a child theme of <a href="http://themeshaper.com/thematic-for-wordpress/">thematic theme</a>. I&#8217;ve changed a lot from the default thematic theme, added a single column template for my pages, and made changes to header. I have to give Ian Stewart my thanks for a great Theme Framework.</p>
<p>Also Gabriel made his first plugin for WordPress, <a href="http://www.reflectionmedia.ro/2008/12/wp-post-sorting-plugin/">WP Post Sorting</a>. This plugin allows sorting of posts by Post Title (ascending or descending) or Post Date (ascending or descending), customizable for each category.</p>
<p>It&#8217;s been a slow but good start for us. We&#8217;ll have an English version of the web-site as soon as possible. Until then you can keep an eye on the <a href="http://www.reflectionmedia.ro/blog/">Reflection Media Blog</a> (which is in English).</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2008/12/11/reflection-media-finally-here/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 59/204 queries in 0.117 seconds using disk

Served from: www.cozmoslabs.com @ 2010-07-31 02:12:12 -->