<?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>gunnerpress.com</title>
	
	<link>http://gunnerpress.com</link>
	<description>once in a lifetime</description>
	<lastBuildDate>Wed, 08 Jul 2009 06:31:42 +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/gunnerpress" type="application/rss+xml" /><feedburner:emailServiceId>gunnerpress</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>WordPress: Display Recent, Related or Random Posts in Your Sidebar</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/Klap_rJT2UE/wordpress-display-recent-related-or-random-posts-in-your-sidebar</link>
		<comments>http://gunnerpress.com/wordpress/wordpress-display-recent-related-or-random-posts-in-your-sidebar#comments</comments>
		<pubDate>Sat, 04 Jul 2009 18:24:44 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Related]]></category>
		<category><![CDATA[Sidebar]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=119</guid>
		<description><![CDATA[You may have noticed that I have dynamic sidebar that changes slightly as you browse the different parts of the site. For example, I have random posts in my home sidebar, while this changes to related posts when browsing a specific post.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">Y</span>ou may have noticed that I have dynamic sidebar that changes slightly as you browse the different parts of the site. For example, I have random posts in my home sidebar, while this changes to related posts when browsing a specific post.</p>
<p>One visitor emailed me recently asking me if I could tell her how I managed to display recent, related or random posts in my sidebar.</p>
<p>Well, I don&#8217;t use either a plugin or <abbr title="Structured Query Language">SQL</abbr> statements for this part.</p>
<p>As you may know, I used the <a title="Conditional Tags" href="http://codex.wordpress.org/Conditional_Tags">conditional tags</a> to check the current page and to execute the right part of the code.</p>
<h2>The Code in Pieces</h2>
<p>I divided the code into three pieces, so you can understand it easily.</p>
<h3>Recent Posts</h3>
<pre><code>
&lt;div class="widget"&gt;
&lt;h2&gt;Recent Posts&lt;/h2&gt;
&lt;ul&gt;
&lt;?php $posts = get_posts('numberposts=3'); foreach($posts as $post) { ?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;" title="&lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;br /&gt;
&lt;span&gt;&lt;?php the_excerpt(); ?&gt;&lt;br /&gt;&lt;em&gt;&amp;mdash;Posted on &lt;?php the_time('n/j/Y') ?&gt;&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;?php } ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
</code></pre>
<p>The above code picks the latest three posts. You can change the number of posts displayed by changing number in <code>get_posts('numberposts=3');</code> to whatever you like.</p>
<h3>Related Posts by Category</h3>
<pre><code>
&lt;div class="widget"&gt;
&lt;h2&gt;Related Posts&lt;/h2&gt;
&lt;ul&gt;
&lt;?php $posts = get_posts('numberposts=3&amp;category='.$category-&gt;cat_ID.'&amp;exclude='.$current_post);
foreach($posts as $post) {
?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;" title="&lt;?php the_title() ?&gt;"&gt;&lt;?php the_title() ?&gt;&lt;br /&gt;
&lt;span&gt;&lt;?php the_excerpt(); ?&gt;&lt;br /&gt;&lt;em&gt;&amp;mdash;Posted on &lt;?php the_time('n/j/Y') ?&gt;&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;?php } ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
</code></pre>
<p>We used <code>get_posts('numberposts=3&amp;category='.$category-&gt;cat_ID.'&amp;exclude='.$current_post);</code> to make all the business easier. <code>$category-&gt;cat_ID</code> pulls the current post&#8217;s category, <code>exclude='.$current_post</code> makes sure to exclude the current post from the related ones.</p>
<p><em><a title="How to: Show related posts without a plugin" href="http://www.wprecipes.com/how-to-show-related-posts-without-a-plugin">You may use related posts by tag also</a> — <a title="WordPress Recipes" href="http://wprecipes.com">WP Recipes</a></em></p>
<h3>Random Posts</h3>
<pre><code>
&lt;div class="widget"&gt;
&lt;h2&gt;Random Posts&lt;/h2&gt;
&lt;ul&gt;
&lt;?php $posts = get_posts('orderby=rand&amp;numberposts=3'); foreach($posts as $post) { ?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;" title="&lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;br /&gt;
&lt;span&gt;&lt;?php the_excerpt(); ?&gt;&lt;br /&gt;&lt;em&gt;&amp;mdash;Posted on &lt;?php the_time('n/j/Y') ?&gt;&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;?php } ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
</code></pre>
<p>Our code uses <code>orderby=rand</code>. So WordPress will pick 3 random posts from the database every time our site loads.</p>
<h2>Final Thoughts</h2>
<p>The above codes can be merged together and displayed on the sidebar using the <a title="Conditional Tags" href="http://codex.wordpress.org/Conditional_Tags">conditional tags</a>.</p>
<p>If you have enjoyed this post or have any questions or recommendations, please share your information in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/wordpress/wordpress-display-recent-related-or-random-posts-in-your-sidebar/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/wordpress/wordpress-display-recent-related-or-random-posts-in-your-sidebar</feedburner:origLink></item>
		<item>
		<title>How to Send Email with XAMPP on Windows XP</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/CNfbBeLVrTM/how-to-send-email-with-xampp-on-windows-xp</link>
		<comments>http://gunnerpress.com/web-dev/how-to-send-email-with-xampp-on-windows-xp#comments</comments>
		<pubDate>Mon, 15 Jun 2009 15:38:49 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Localhost]]></category>
		<category><![CDATA[mail()]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[Sendmail]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=112</guid>
		<description><![CDATA[When we are working on a new web application we usually test our projects locally before making them public. But, localhost doesn&#8217;t have all the good stuff available on the real host. Some functions need to be configured properly and some additional programs need to be implemented.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">W</span>hen we are working on a new web application we usually test our projects locally before making them public. But, localhost doesn&#8217;t have all the good stuff available on the real host. Some functions need to be configured properly and some additional programs need to be implemented.</p>
<h2>Problem</h2>
<p>I was working on <abbr title="Hypertext Preprocessor">PHP</abbr>/<abbr title="My Structured Query Language">MySQL</abbr> based small project which is all about students&#8217; registration system, where the students can register themselves then they&#8217;ll be able to receive school transcripts and such stuff by email.</p>
<p>When I finished the project I tested the application to see if it was working properly but I got a problem with <abbr title="Hypertext Preprocessor">PHP</abbr>&#8217;s <code>mail()</code> function, which was not sending any email messages out.</p>
<p>I was feeling frustrated for a while before coming up with the solution below.</p>
<h2>Solution</h2>
<p>To make our locally hosted web applications talk to any <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> server including those on the Internet, we will configure that by using the <abbr title="Hypertext Preprocessor">PHP</abbr>&#8217;s configuration file called <code>php.ini</code> which can be found in the following locations (assuming you are using <a title="XAMPP" href="http://apachefriends.org/">XAMPP</a> installed in <em>drive</em> <code>C:/</code>):</p>
<pre><code>C:\&lt;xampp-installation-path&gt;\php\php.ini
C:\&lt;xampp-installation-path&gt;\php\php5.ini
C:\&lt;xampp-installation-path&gt;\apache\bin\php.ini
</code></pre>
<p>Okay, that was locating the configuration files; let&#8217;s move to the next steps.</p>
<h3 id="m1">Method 1:</h3>
<p>- Open <code>php.ini</code> file and uncomment the <code>php_smtp.dll</code> extension. This is required when sending emails to a remote server.</p>
<p>- Scroll down and find the following lines:</p>
<pre><code>[mail function]
; For Win32 only.
;SMTP = localhost
;smtp_port = 25

; For Win32 only.
;sendmail_from = me@example.com
</code></pre>
<p>- From the lines above, uncomment <code>SMTP</code>, <code>smtp_port</code> and <code>sendmail_from</code><br />
directives, then add  <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> server, <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> port number and your preferred email address to <code>SMTP</code>, <code>smtp_port</code> and <code>sendmail_from</code> directives respectively, your final code should be similar to the one below:</p>
<pre><code>[mail function]
; For Win32 only.
SMTP = mail.server.com
smtp_port = 25

; For Win32 only.
sendmail_from = something@server.com
</code></pre>
<p>- Replace <code>mail.server.com</code> and <code>something@server.com</code> with correct values. The defualt <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> port number is &#8220;25&#8243;, therefore, you have 99% chance of not changing this.</p>
<p>- Restart your server.</p>
<p>Everything should work properly now. If not, double check your changes again. If you think you made everything correct, but there is nothing working, try <a href="#m2">method 2</a> instead.</p>
<p><em><strong>NB:</strong> You should be aware that once you assign an email address to <code>sendmail_from</code> <abbr title="Hypertext Preprocessor">PHP</abbr><abbr title="Hypertext Preprocessor"></abbr> will force all the senders&#8217; emails to that address.</em></p>
<h3 id="m2">Method 2:</h3>
<p>This method is more easier than the steps described in <a href="#m1">method 1</a>. We&#8217;ll use fake Sendmail Program for Windows (<code>sendmail.exe</code>) which is a simple windows console application that emulates <code>sendmail's "-t"</code> option to deliver emails piped via <code>stdin</code>.  <strong><code>sendmail.exe</code></strong> is bundled with <a title="XAMPP" href="http://apachefriends.org/">XAMPP</a> so you don&#8217;t need to install it unless you are using hand made server.</p>
<p>- In <a href="#m1">method 1</a> we have enabled <code>SMTP</code>, <code>smtp_port</code> and <code>sendmail_from</code> directives, please make sure that these directives are commented out since we don&#8217;t need them anymore. Then scroll down and find the following two lines in your <code>php.ini</code> file:</p>
<pre><code>; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = "C:\&lt;xampp-installation-path&gt;\sendmail\sendmail.exe -t"</code></pre>
<p>- Make sure that the <code>sendmail_path</code> directive is not commented out, and the path is correct, then save <code>php.ini</code> and close it.</p>
<h4 id="smcf">Edit Sendmail Configuration File (<code>sendmail.ini</code>):</h4>
<p>The fake Sendmail program is found in the following location:</p>
<pre><code>C:\&lt;xampp-installation-path&gt;\sendmail\sendmail.exe</code></pre>
<p>&#8230;and its configuration file is found here:</p>
<pre><code>C:\&lt;xampp-installation-path&gt;\sendmail\sendmail.ini</code></pre>
<p>Okey. That was that. Let&#8217;s configure it, so it will work the way we wanted.</p>
<p>- Open sendmail.ini file and use the following settings:</p>
<pre><code>
[sendmail]

; you must change mail.mydomain.com to your smtp server,
smtp_server=mail.mydomain.com

; smtp port (normally 25)
smtp_port=25
</code></pre>
<p>- Replace <code>mail.mydomain.com</code> with a valid <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> server and assign port number (usually 25) to <code>smtp_port</code>.</p>
<p>Your <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> server may require an authentication. If this is the case, scroll down the file and find the following lines:</p>
<pre><code>
; if your smtp server requires authentication, modify the following two lines

auth_username=username
auth_password=drowssap
</code></pre>
<p>- Modify the above two directives. Add your <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> server&#8217;s username and password.</p>
<p>Some <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> servers use <abbr title="Post Office Protocol version 3">POP3</abbr>. If yours is one of those servers, then you need further modifications.</p>
<pre><code>
; if your smtp server uses pop3 before smtp authentication, modify the
; following three lines

pop3_server=mail.mydomain.com
pop3_username=username
pop3_password=drowssap
</code></pre>
<p>- Change the values of the above three directives to fit your needs and save your file. Then restart your server and try to send a test message to your email address.</p>
<p>If everything is correct, you can send emails to any server now. The following snippet is a header of message sent from my localhost server:</p>
<pre><code>
Return-path:
Envelope-to: jmehmett@host.com
Delivery-date: Sun, 15 Jun 2009 17:18:55 +0200
Received: from [192.168.3.134] (helo=mehmett)
     by host.server.com with esmtpa (Exim 4.62)
     (envelope-from )
     id 1MFrTy-000CQx-OY
     for jmehmett@host.com; Sun, 15 Jun 2009 17:18:55 +0200
To: jmehmett@host.com
Subject: Taste email from localhost
Date: Sun, 15 Jun 2009 19:18:39 +0400
From: J Mehmett
Message-ID:
X-Priority: 3
X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.4]
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="UTF-8"
</code></pre>
<p>That was easy, huh?</p>
<h3>Final Thoughts</h3>
<p>This is a simple mail configuration. I tested it using the <abbr title="Simple Mail Transfer Protocol">SMTP</abbr> settings of my host and it worked properly.</p>
<p>Gmail users may check <a href="http://brettshaffer.com/how-to/php-sendmail-and-xampp-on-windows/" title="Using Gmail, Xampp and Sendmail to send emails from localhost">Brett Shaffer&#8217;s solution</a>, alternatively, AOL users may see <a href="http://i.justrealized.com/2009/05/15/how-to-use-sendmail-in-xampp-for-windows-using-aol-mail/" title="How to use sendmail in XAMPP for Windows using AOL Mail">KahWee&#8217;s solution</a>. </p>
<p>If you have enjoyed with this post don&#8217;t forget to share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/web-dev/how-to-send-email-with-xampp-on-windows-xp/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/web-dev/how-to-send-email-with-xampp-on-windows-xp</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8: Features and Tips</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/7vs94BWblyo/wordpress-2-8-features-and-tips</link>
		<comments>http://gunnerpress.com/wordpress/wordpress-2-8-features-and-tips#comments</comments>
		<pubDate>Thu, 11 Jun 2009 16:19:02 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2.8]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Taxonomies]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Widget API]]></category>
		<category><![CDATA[WordPress 2.8]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=95</guid>
		<description><![CDATA[With the long waited WordPress 2.8 aka Baker being out, there is a ton of features including 2.8 being a way faster to use, widgets are remixed, some DB tables columns are dropped and JS script loader is improved. Experts and gurus have contributed with new tips to make the business even better.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">W</span>ith the long waited WordPress 2.8 aka <a title="Chet Baker" href="http://en.wikipedia.org/wiki/Chet_Baker">Baker</a> <a title="2.8 Release Jazzes Themes and Widgets" href="http://wordpress.org/development/2009/06/wordpress-28/">being out</a>, there is a ton of features including 2.8 being a way faster to use, widgets are remixed, some DB tables columns are dropped and JS script loader is improved. Experts and gurus have contributed with new tips to make the business even better.</p>
<p>There is an <a title="2.8 Release Jazzes Themes and Widgets" href="http://wordpress.org/development/2009/06/wordpress-28/">announcement post</a> on the official <a title="WordPress Development Blog" href="http://wordpress.org/development/">Development</a> Blog with an eye-catching introduction video.</p>
<h2>Features, Tips and Tricks</h2>
<ol>
<li><a title="WP 2.8 Features and Improvements" href="http://codex.wordpress.org/Version_2.8">A full list of more than 180 new features, improvements, changes and upgrades.</a> —<em><abbr title="WordPress">WP</abbr> Codex</em></li>
<li><a title="Build A WordPress 2.8 Widget With The New Widget API" href="http://wpengineer.com/wordpress-built-a-widget/">Build A WordPress 2.8 Widget With The New Widget <abbr title="Application Programming Interface">API</abbr></a> —<em><abbr title="WordPress">WP</abbr>Engineer</em></li>
<li><a title="The Improved WordPress Widget API" href="http://codex.wordpress.org/WordPress_Widgets_Api">The Improved WordPress Widget <abbr title="Application Programming Interface">API</abbr></a> —<em><abbr title="WordPress">WP</abbr> Codex</em></li>
<li><a title="The complete guide to creating widgets in WordPress 2.8" href="http://justintadlock.com/archives/2009/05/26/the-complete-guide-to-creating-widgets-in-wordpress-28">The complete guide to creating widgets in WordPress 2.8</a> —<em>Justin Tadlock</em></li>
<li><a title="Tutorial: WordPress 2.8 Widget API" href="http://jessealtman.com/2009/06/08/tutorial-wordpress-28-widget-api/">Tutorial: WordPress 2.8 Widget API</a> —<em>Jesse Altman</em></li>
<li><a title="Custom taxonomies in WordPress 2.8" href="http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28">Custom taxonomies in WordPress 2.8</a> —<em>Justin Tadlock</em></li>
<li><a title="Tag Descriptions in Wordpress 2.8" href="http://justintadlock.com/archives/2009/04/30/tag-descriptions-in-wordpress-28">Tag description in WordPress 2.8</a> —<em>Justin Tadlock</em></li>
<li><a title="Loading JavaScript in Footer in WordPress 2.8" href="http://lesterchan.net/wordpress/2009/01/26/loading-javascript-in-footer-in-wordpress-28/">Loading Javascript in Footer in WordPress 2.8</a> —<em>Lester Chan</em></li>
<li><a title="WordPress 2.8 and the body_class() Function" href="http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/">WordPress 2.8 and the <code>body_class()</code> Function</a> —<em>Nathan Rice</em></li>
<li><a title="Authentication in WordPress 2.8" href="http://willnorris.com/2009/03/authentication-in-wordpress-28">Authentication in WordPress 2.8</a> —<em>Will Norris</em></li>
<li><a title="Handling Plugins Options in WordPress 2.8 with register_setting()" href="http://planetozh.com/blog/2009/05/handling-plugins-options-in-wordpress-28-with-register_setting/">Handling Plugins Options in WordPress 2.8 with <code>register_setting()</code></a> —<em>Planet Ozh</em></li>
<li><a title="WordPress 2.8 – XML-RPC and AtomPub Changes" href="http://josephscott.org/archives/2009/06/wordpress-2-8-xml-rpc-and-atompub-changes/">WordPress 2.8 &#8211; XML-RPC and AtomPub Changes</a> —<em>Joseph Scott</em></li>
<li><a title="List of Plugin Compatibility with WordPress 2.8" href="http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.8">List of Plugins Compatible with WordPress 2.8</a> —<em><abbr title="WordPress">WP</abbr> Codex</em></li>
<li><a title="WordPress Proxysupport" href="http://wpengineer.com/wordpress-proxysupport/">WordPress Proxysupport</a> —<em><abbr title="WordPress">WP</abbr>Engineer</em></li>
<li><a title="Escaping API updates for WordPress 2.8" href="http://markjaquith.wordpress.com/2009/06/12/escaping-api-updates-for-wordpress-2-8/">Escaping API updates for WordPress 2.8</a> —<em>Mark Jaquith</em></li>
<li><a title="Displaying Author Meta Information in Wordpress 2.8" href="http://buildinternet.com/2009/06/displaying-author-meta-information-in-wordpress-2-8/">Displaying Author Meta Information in Wordpress 2.8</a> —<em>Zach Dunn</em></li>
<li><a title="the_author_meta() in WordPress Codex" href="http://codex.wordpress.org/Template_Tags/the_author_meta"><code>the_author_meta()</code> in WordPress Codex</a> —<em><abbr title="WordPress">WP</abbr> Codex</em></li>
</ol>
<p>I know there are tons of talks around the new version but these are the only findings I discovered during the development releases of WordPress 2.8.</p>
<p>If you have suggestions and/or some other posts I missed in this collection, please feel free to contribute them in the comments.</p>
<p>I hope you enjoyed with this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/wordpress/wordpress-2-8-features-and-tips/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/wordpress/wordpress-2-8-features-and-tips</feedburner:origLink></item>
		<item>
		<title>WordPress now supports Daylight Saving Time</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/i_CuGwKQ1g8/wordpress-now-supports-daylight-saving-time</link>
		<comments>http://gunnerpress.com/wordpress/wordpress-now-supports-daylight-saving-time#comments</comments>
		<pubDate>Tue, 19 May 2009 09:32:27 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[DST]]></category>
		<category><![CDATA[Timezone]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=83</guid>
		<description><![CDATA[Daylight Saving Time (DST) or Summer Time (as they call it in Britania) was usually something we used to set by hand in WordPress releases beyond the in-development version 2.8. This was not really painful, but being a great software, WordPress guys described it as a &#8220;Lame&#8221;.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">D</span>aylight Saving Time (DST) or Summer Time (as they call it in Britania) was usually something we used to set by hand in WordPress releases beyond the in-development version 2.8. This was not really painful, but being a great software, WordPress guys described it as a <em>&#8220;Lame&#8221;. </em></p>
<h2>What is daylight saving time?</h2>
<blockquote><p>Daylight saving time (Summer Time) is the convention of advancing clocks so that afternoons have more daylight and mornings have less. Typically clocks are adjusted forward one hour near the start of spring and are adjusted backward in autumn. Modern <abbr title="Daylight saving time">DST</abbr> was first proposed in 1895 by George Vernon Hudson, a New Zealand <a title="Entomologist" href="http://en.wikipedia.org/wiki/Entomologist">entomologist</a>. Many countries have used it since then; details vary by location and change occasionally.</p>
<p class="right">—<a title="Daylight saving time - Wikipedia" href="http://en.wikipedia.org/wiki/Daylight_saving_time">Wikipedia</a></p>
</blockquote>
<p>In WordPress 2.8, they added Timezone enhancements for <abbr title="Hypertext Preprocessor">PHP</abbr> 5 so you can choose a <a title="See list of supported Timezones" href="http://www.php.net/manual/en/timezones.php">city in the same timezone</a> as you for Timezone in <code>Administration &gt; Settings &gt; General</code>.</p>
<div class="wp-caption aligncenter" style="width: 440px;"><img class="size-full" title="Old WP time settings" src="http://i42.tinypic.com/1zoj22w.jpg" alt="Old WP time settings" width="430" height="72" /></p>
<p class="wp-caption-text">Old <abbr title="WordPress">WP</abbr> time settings</p>
</div>
<div class="wp-caption aligncenter" style="width: 440px;"><img class="size-full" title="New WP DST settings" src="http://i41.tinypic.com/k1feu.jpg" alt="New WP DST settings" width="430" height="72" /></p>
<p class="wp-caption-text">New <abbr title="WordPress">WP</abbr> <abbr title="Daylight Saving Time">DST</abbr> settings</p>
</div>
<h2>See also</h2>
<ul>
<li><a title="WordPress 2.8 Features" href="http://codex.wordpress.org/Version_2.8">WordPress 2.8 Features</a></li>
<li><a title="See list of supported Timezones" href="http://www.php.net/manual/en/timezones.php">List of <abbr title="Hypertext Preprocessor">PHP</abbr> supported timezones</a></li>
<li><a title="Daylight Saving Time - Why, When, Where? - Cloud view" href="http://www.webexhibits.org/daylightsaving/b.html">Daylight Saving Time &#8211; Why, When, Where? &#8211; Cloud view</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/wordpress/wordpress-now-supports-daylight-saving-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/wordpress/wordpress-now-supports-daylight-saving-time</feedburner:origLink></item>
		<item>
		<title>New theme, new look, new feel</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/XFngzd60Dsg/new-theme-new-look-new-feel</link>
		<comments>http://gunnerpress.com/updates/new-theme-new-look-new-feel#comments</comments>
		<pubDate>Sun, 17 May 2009 15:51:55 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[gunnerpress.com]]></category>
		<category><![CDATA[New theme]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=76</guid>
		<description><![CDATA[Two months ago, I photoshopped a new WordPress theme for my blog, then I forgot about it and the new sketch was sleeping in the dark side for months, but it was only few days ago when I could find a time to convert it to XHTML/CSS/WordPress.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">T</span>wo months ago, I photoshopped a new WordPress theme for my blog, then I forgot about it and the new sketch was sleeping in the dark side for months, but it was only few days ago when I could find a time to convert it to XHTML/CSS/WordPress.</p>
<p>Congratulations to <a title="gunnerpress.com - once in a lifetime" href="http://gunnerpress.com">gunnerpress.com</a>, which soon will turn to 1 year old despite having only 8 posts and 3 comments under his belt.</p>
<div id="attachment_78" class="wp-caption alignright" style="width: 440px"><img class="size-full wp-image-78" title="New gunnerpress.com" src="http://gunnerpress.com/blog/wp-content/uploads/2009/05/new-gp.jpg" alt="New gunnerpress.com" width="430" height="247" /><p class="wp-caption-text">New gunnerpress.com</p></div>
<p>I didn&#8217;t validate the new theme and I think there will not be terrible CSS/XHTML errors. I will see when I reclaim the time again.</p>
<p>Hmm&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/updates/new-theme-new-look-new-feel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/updates/new-theme-new-look-new-feel</feedburner:origLink></item>
		<item>
		<title>10 Free Icons Sets For Your Projects!</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/uOJtU-flEF8/10-free-icons-sets-for-your-projects</link>
		<comments>http://gunnerpress.com/resources/10-free-icons-sets-for-your-projects#comments</comments>
		<pubDate>Sat, 16 May 2009 16:58:10 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=65</guid>
		<description><![CDATA[Since the revolution of GUI, icons were playing a vital role in the visual composition of design industry. People were using icons for both offline and online projects, and, apart from the rest, webmasters were using icons for both accessibility and decoration purposes.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">S</span>ince the revolution of GUI, icons were playing a vital role in the visual composition of design industry. People were using icons for both offline and online projects, and, apart from the rest, webmasters were using icons for both accessibility and decoration purposes. Simply having icons on your blog or website doesn&#8217;t mean that you have a beautiful design.  But in somehow, it&#8217;s mystery that icons did not disappear in the doom of design era.</p>
<p>Below, I listed some of the world&#8217;s most popular icon resources&#8230; wait&#8230; they are free to download&#8230; you don&#8217;t need to spend a penny to have them.</p>
<h2><a href="http://www.famfamfam.com/archive/silk-icons-thats-your-lot/"><span style="color: #ff0b5b;">1. FAM</span><span style="color: #0bceff;">FAM</span><span style="color: #c1ff2d;">FAM</span></a></h2>
<p><img class="aligncenter" title="FAMFAMFAM Silk Icons" src="http://i41.tinypic.com/1zqsg8m.jpg" alt="FAMFAMFAM Silk Icons" width="430" height="86" /></p>
<p>Everybody, yes, even the internet fool, knows or heard about the famous silk icons of Mark James.  There are about one thousand icons, a huge collection indeed.</p>
<p><a title="FAMFAMFAM" href="http://famfamfam.com">FAMFAMFAM</a> icons are the most popular, as I think. Firefox&#8217;s web developer toolbar uses them, a large sum of WP themes uses them, I use them and of course, you may use them, too!</p>
<h2><a href="http://wefunction.com/2008/07/function-free-icon-set/">2. Function Icon Set</a></h2>
<p><img class="aligncenter" title="Function Icon Set" src="http://i41.tinypic.com/muh6ia.jpg" alt="Function Icon Set" width="430" height="107" /></p>
<p><a title="Function" href="http://wefunction.com">Function</a> Icons Set contains  fabulous 128 icons for free. The features of this icons include shiny style, 48&#215;48px, social media icons such as Design Float, Digg, Delicious, Furl, Technorati, Flickr, Stumble Upon, Twitter, etc&#8230; and blogging icons include RSS icons, email icons and so forth&#8230;</p>
<h2><a title="Project Icon Set" href="http://www.dezinerfolio.com/freebie/project-icon-set">3. Project Icon Set</a></h2>
<p><img class="aligncenter" title="Project Icon Set" src="http://i41.tinypic.com/xfaw6w.jpg" alt="Project Icon Set" width="430" height="71" /></p>
<p>Project Icon Set is the work of Navdeep Raj from <a title="Deziner Folio" href="http://dezinerfolio.com">DezinerFolio</a>. This set contains 18 great icons specialized for project management. This set can be used for free and paid projects and is ideal for business related works.</p>
<p>The designer released this icon set for<a title="Smashing Magazine - Project Icon Set" href="http://www.smashingmagazine.com/2009/04/27/project-icon-set-for-free-download/"> Smashing Magazine</a> readers.</p>
<h2><a title="On-Stage Icon Set" href="http://www.dezinerfolio.com/2008/08/28/on-stage-free-vector-psd-icon-set">4. On Stage Icon Set</a></h2>
<p><img class="aligncenter" title="On-Stage: Free Vector PSD Icon Set" src="http://i43.tinypic.com/2w4xvt4.jpg" alt="On-Stage: Free Vector PSD Icon Set" width="430" height="185" /></p>
<p>Yet another <a title="Deziner Folio" href="http://dezinerfolio.com">DezinerFolio</a> icon set. This one contains 49 free vector icons with PSD source.</p>
<p>The reason I love such thing is that the sky is the only restriction for the usage of this set, you can use them for free.</p>
<h2><a title="Stationary Icon Set" href="http://www.dezinerfolio.com/freebie/stationery-free-vector-icon-set">5. Stationary Icon Set</a></h2>
<p><img class="aligncenter" title="Stationary Icon Set" src="http://i39.tinypic.com/2qlfltd.jpg" alt="Stationary Icon Set" width="430" height="92" /></p>
<p>Still on <a title="Deziner Folio" href="http://dezinerfolio.com">DezinerFolio</a>. This icon set contains 22 256 x 256 icons related office and studio elements and includes Fireworks source.</p>
<h2><a title="Simplistica Icons" href="http://dryicons.com/free-icons/preview/simplistica/">6. Simplistica Icons</a></h2>
<p><img class="aligncenter" title="Simplistica" src="http://i39.tinypic.com/103eejs.jpg" alt="Simplistica" width="430" height="91" /></p>
<p>Simplistica Icons set is free icon pack from <a title="DryIcons" href="http://dryicons.com">DryIcons</a>&#8216; creative team. Simplistica icons are glossy and shinny and come with 16&#215;16px, 32&#215;32px, 48&#215;48px and 128&#215;128px and all are 32-bit transparent PNGs.</p>
<h2><a title="Blogging Icons Set" href="http://www.webappers.com/2008/06/09/blogging-icons-set-for-personal-and-commercial-projects/">7. Blogging Icons Set</a></h2>
<p><img class="aligncenter" title="Blogging Icons Set" src="http://i44.tinypic.com/11sjo81.jpg" alt="Blogging Icons Set" width="430" height="151" /></p>
<p>Blogging icons set by <a title="BlogPerfume" href="http://blogperfume.com">BlogPerfume</a> is a set containing 12 high quality shiny icons designed for bloggers. This set comes with 3 sizes 24&#215;24px, 36&#215;36px and 48&#215;48px.</p>
<h2><a title="Free Web Application Icons Set" href="http://www.webappers.com/2008/02/12/webappers-released-free-web-application-icons-set/" target="_blank">8. Web Application Icons Set</a></h2>
<p><img class="aligncenter" title="Web Application Icons Set" src="http://i43.tinypic.com/2gwymb9.jpg" alt="Web Application Icons Set" width="430" height="99" /></p>
<p>Web Application Icons Set is a 3D glossy and shiny icon set from <a title="WebAppers" href="http://webappers.com">WebAppers</a> for free for <strong>both personal and commercial</strong> projects! There are 20 icons designed specially for web applications (e.g. Charts, Profile, Search, Add, Delete, Email, Print, Warning and etc…). Icons come in 3 sizes; 48×48 px, 32×32 px, and 24×24 px. All in PNG format with transparent background.</p>
<h2><a href="http://paradis24434.deviantart.com/art/Antique-icons-65361362">9. Antique Icons Set</a></h2>
<p><img class="aligncenter" title="Antique Icons" src="http://i40.tinypic.com/2i1ks5f.jpg" alt="Antique Icons" width="430" height="120" /></p>
<p>Designed by <a title="Nawfal" href="http://paradis24434.deviantart.com/">Nawfal</a> from <a title="Deviant Art" href="http://deviantart.com">DeviantArt</a>, Antique Icons set contains 33 realistic, beautiful and grungy icons in 28&#215;28px size and comes with both transparent PNG format and ICO format.</p>
<h2><a title="3D Cartoon Icons Pack" href="http://deleket.deviantart.com/art/3D-Cartoon-Icons-Pack-41377144">10. 3D Cartoon Icons Pack</a></h2>
<p><img class="aligncenter" title="3D Cartoon Icons Pack" src="http://i44.tinypic.com/iyfxx3.jpg" alt="3D Cartoon Icons Pack" width="430" height="130" /></p>
<p>This pack contains 111 .PNG, .ICO (Win) and .ICNS (Mac) icons in 3D shape. These icons come in 300&#215;300px size.</p>
<h2>Finally</h2>
<p>I hope this post will help some of you. Icons are not limited in this 10 and there are tens of thousands of free icons sets on the Internet.s</p>
<p>Any suggestions, comments and corrections are welcome. The comment form is open for everyon.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/resources/10-free-icons-sets-for-your-projects/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/resources/10-free-icons-sets-for-your-projects</feedburner:origLink></item>
		<item>
		<title>How to make your Wordpress posts dates clickable</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/L_X-DHFbvzM/how-to-make-your-wordpress-posts-dates-clickable</link>
		<comments>http://gunnerpress.com/wordpress/how-to-make-your-wordpress-posts-dates-clickable#comments</comments>
		<pubDate>Thu, 14 May 2009 17:21:14 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[the_time]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=43</guid>
		<description><![CDATA[Do you know that your blog would prove all the visitors&#8217; nightmares wrong if every date on your blog were clickable! Every bit of every date your site contains, and by every bit I mean the three major parts the average date format contains —month, day and year.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">D</span>o you know that your blog would prove all the visitors&#8217; nightmares wrong if every date on your blog were clickable! Every bit of every date your site contains, and by every bit I mean the three major parts the average date format contains —month, day and year.</p>
<p>I know many of you are already aware about this little trick, but I posted this because many people will need it.</p>
<h2>The idea</h2>
<p>I was recently designing a new theme for my blog and one day I came across an old blog: <a title="1976design.com" href="http://1976design.com">1976design.com</a>. The blog has nothing to do with Wordpress and its run by hand crafted blog application written by the owner of the website, but it still inspired me to implement the idea on my own blog.</p>
<h2>Implementation</h2>
<p>Open your theme&#8217;s <code>index.php</code> and find the template tag <code>&lt;?php the_time(); ?&gt;</code> then replace that with the following code:</p>
<pre><code>
// The month
&lt;a title="&lt;?php the_time('F') ?&gt;" href="&lt;?php bloginfo('url'); ?&gt;/&lt;?php the_time('Y') ?&gt;/&lt;?php the_time('m') ?&gt;"&gt;&lt;?php the_time('F') ?&gt;&lt;/a&gt;
// The date
&lt;a title="&lt;?php the_time('F') ?&gt; &lt;?php the_time('jS') ?&gt;" href="&lt;?php bloginfo('url'); ?&gt;/&lt;?php the_time('Y') ?&gt;/&lt;?php the_time('m') ?&gt;/&lt;?php the_time('j') ?&gt;"&gt;&lt;?php the_time('jS') ?&gt;&lt;/a&gt;,
// The year
&lt;a title="&lt;?php the_time('Y') ?&gt;" href="&lt;?php bloginfo('url'); ?&gt;/&lt;?php the_time('Y') ?&gt;"&gt;&lt;?php the_time('Y') ?&gt;&lt;/a&gt;
</code></pre>
<p><em>The above code will show something like this:</em> <a title="May" href="#">May</a> <a title="May 14th" href="#">14th</a>, <a title="2009" href="#">2009</a>.</p>
<h2>What do you think?</h2>
<p>If you think there is a better way to do this thing or if you have something else to add or to say about this, please share it in the comments part.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/wordpress/how-to-make-your-wordpress-posts-dates-clickable/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/wordpress/how-to-make-your-wordpress-posts-dates-clickable</feedburner:origLink></item>
		<item>
		<title>Windows Live Mail has a bug</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/pw5nsOTsWtQ/windows-live-mail-has-a-bug</link>
		<comments>http://gunnerpress.com/general/windows-live-mail-has-a-bug#comments</comments>
		<pubDate>Sat, 21 Mar 2009 06:30:36 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[windows live]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=35</guid>
		<description><![CDATA[I was unable to read or write a message during the last four days. I tried everything; clearing the cookies, deleting the Internet cache, removing the offline files, disabling Firefox and Internet Explorer add-ons, resetting browser settings and even restarting my PC several times.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">I</span> was unable to read or write a message during the last four days. I tried everything; clearing the cookies, deleting the Internet cache, removing the offline files, disabling Firefox and Internet Explorer add-ons, resetting browser settings and even restarting my PC several times.</p>
<p>All the above seemed a step to the wrong direction.</p>
<p>There were the same JavaScript error which was preventing me reading and writing messages. The error was reading as the following:</p>
<blockquote><p>Problems with this Web page might prevent it from being displayed properly or functioning properly. In the future, you can display this message by double-clicking the warning icon displayed in the status bar [of Internet Explorer].</p>
<p><code><br />
Line: 1<br />
Char: 1<br />
Error: Permission denied<br />
Code:0<br />
URL: http://byXXXw.bayXX.mail.live.com/mail/InboxLight.aspx?n=XXXXX<br />
</code></p></blockquote>
<p>As you can see the URL part shows the old address which the Windows Live guys changed when they moved to the new minimalistic design. The current address reads as:</p>
<p><code><br />
http://mail.live.com/default.aspx?wa=wsignin1.0<br />
</code></p>
<p>So something went wrong, may be.</p>
<h2>How I fixed mine</h2>
<p>There is an option that gives you the ability to disable the &#8216;Today&#8217; page in Windows live Mail, so every time you sign in to your email account you&#8217;ll be redirected automatically to your mail inbox.</p>
<p>Since, I&#8217;m so lazy, I disabled the &#8216;Today&#8217; page long ago —the first time Windows Live Hotmail supported that option, and I was feeling happy to get into my email inbox directly after I sign in to my account.</p>
<p>The problem seems to be compatibility issue. This feature worked fine during the Windows Live Full/Classic days and it fell apart as the guys changed the entire look including the URL.</p>
<p>So resetting the &#8216;Today&#8217; page options were the trick and Hotmail is working as it used to be.</p>
<p><img class="centered" src="http://gunnerpress.com/blog/wp-content/uploads/2009/03/wlm_today.gif" alt="Windows Live Hotmail - Today page settings" width="430" height="193" /></p>
<p>This settings can be found at:</p>
<ul>
<li>Options -&gt; Customize your mail -&gt; Today page settings.</li>
</ul>
<p>Choosing the &#8216;Show me the Today page after I sign in&#8217; will make your email work properly.</p>
<h2>What about you?</h2>
<p>Ok, let&#8217;s share the knowledge. May be you know better way to overcome this annoying thing or may be this article helped you and saved your day, add your comments in the form below.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/general/windows-live-mail-has-a-bug/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/general/windows-live-mail-has-a-bug</feedburner:origLink></item>
		<item>
		<title>Trying to overcome the laziness</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/TbdLSDrv1-w/trying-to-overcome-the-laziness</link>
		<comments>http://gunnerpress.com/thoughts/trying-to-overcome-the-laziness#comments</comments>
		<pubDate>Thu, 12 Mar 2009 18:53:26 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[lazyness]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=31</guid>
		<description><![CDATA[I discovered lately that I was not the real J Mehmett that existed two years ago, at a time I regarded myself as creative and talented, working hard with the believe that I’ll go from strength to strength, convincing my heart that in three years to come, I’ll gain more success.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">I</span> discovered lately that I was not the real J Mehmett that existed two years ago, at a time I regarded myself as creative and talented, working hard with the believe that I’ll go from strength to strength, convincing my heart that in three years to come, I’ll gain more success.</p>
<p>I’m not mournful about lack of success here. I have achieved a lot during the past years, but what I’m talking about here is the tiredness I feel since the end of 2008.</p>
<div id="attachment_32" class="wp-caption alignright" style="width: 285px;"><img class="size-full wp-image-32" title="Lazy Cat" src="http://gunnerpress.com/blog/wp-content/uploads/2009/03/lazy_cat.jpg" alt="Lazy Cat" width="275" height="200" /></p>
<p class="wp-caption-text">As lazy as a cat!! —<em><a title="Dyyanae" href="http://www.flickr.com/photos/dyyanae/">Dyyanae</a></em></p>
</div>
<p>I have planned many things scheduled to finish in this March, including a new layout for this site and some other stuffs and none of them seems to be started yet.</p>
<p>A friend recommended me the famous book, “Think and Grow Rich” which is not only talking about how to gain success in business but also guiding how to stay motivated. I’ll go through it later tonight.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/thoughts/trying-to-overcome-the-laziness/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/thoughts/trying-to-overcome-the-laziness</feedburner:origLink></item>
		<item>
		<title>I have nuked my old GunnerPress</title>
		<link>http://feedproxy.google.com/~r/gunnerpress/~3/5q9fOMPC5-A/i-have-nuked-my-old-gunnerpress</link>
		<comments>http://gunnerpress.com/updates/i-have-nuked-my-old-gunnerpress#comments</comments>
		<pubDate>Sat, 28 Feb 2009 07:20:28 +0000</pubDate>
		<dc:creator>J Mehmett</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[gunnerpress]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://gunnerpress.com/?p=18</guid>
		<description><![CDATA[As promised in my previous post, I have completely nuked my old GunnerPress as of February 28, 2009 9:15 AM (GMT +3).
The site didn&#8217;t get regular updates since August 2008 (five months ago), and as I thought, it was waste of space and bandwidth so I decided to remove it completely.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>s promised in my previous post, I have completely nuked my old GunnerPress as of February 28, 2009 9:15 AM (GMT +3).</p>
<p>The site didn&#8217;t get regular updates since August 2008 (five months ago), and as I thought, it was waste of space and bandwidth so I decided to remove it completely.</p>
<p>A database backup, one theme and some images survived from the havoc. These survivors were compressed in zipped folder and were stored in protected place.</p>
<p>Now, I&#8217;ll weep on the new GunnerPress. All the new things will proceed from here. This site deserves more and in the coming months it will join the bigger blogs on the Internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://gunnerpress.com/updates/i-have-nuked-my-old-gunnerpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://gunnerpress.com/updates/i-have-nuked-my-old-gunnerpress</feedburner:origLink></item>
	</channel>
</rss>
