<?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>Dino Latoga</title>
	
	<link>http://dinolatoga.com</link>
	<description>Web Designer and Blogger</description>
	<lastBuildDate>Sun, 24 May 2009 07:26:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</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/DinoLatoga" type="application/rss+xml" /><feedburner:emailServiceId>DinoLatoga</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Most Commonly Used WordPress Code Snippets</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/S1gkyfxYktw/</link>
		<comments>http://dinolatoga.com/2009/05/24/most-commonly-used-wordpress-code-snippets/#comments</comments>
		<pubDate>Sun, 24 May 2009 07:26:05 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=134</guid>
		<description><![CDATA[I've been developing WordPress themes for more than 2 years and based from my own experience and personal preferences, here are the most common WordPress code snippets that I use. Please do check it out and if you learn a thing or two, let me know in the comments.]]></description>
			<content:encoded><![CDATA[<h3>Display Recent Posts</h3>
<p>There are different methods I use for this kind of function and it depends on the need and how the template is laid out. You can check out the 3 methods that I use below. I hope you find it useful in your projects.</p>
<p><strong>Method 1</strong>: This code displays the 10 latest posts. You can place this code anywhere on your template. For more info on <code>wp_get_archives()</code> you may want to check out the <a title="wp_get_archives reference post" href="http://codex.wordpress.org/Template_Tags/wp_get_archives">codex</a></p>
<pre>&lt;ul&gt;
&lt;?php wp_get_archives('type=postbypost&amp;limit=10'); ?&gt;
&lt;/ul&gt;</pre>
<p><strong>Method 2: </strong>This is just basically the loop except that we defined a number of posts to be shown using the <code>query_posts()</code> function. You may want to read more on <code><a href="http://codex.wordpress.org/Template_Tags/query_posts">query_posts()</a></code></p>
<pre>&lt;?php query_posts('showposts=5'); ?&gt;
&lt;ul&gt;
&lt;?php while (have_posts()) : the_post(); ?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink() ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile;?&gt;
&lt;/ul&gt;</pre>
<p><strong>Method 3:</strong> This is I think the best way to display the recent posts since it&#8217;s very simple and you can customize the way the posts are displayed. You can use this code anywhere on your template. Read more about the <code><a href="http://codex.wordpress.org/Template_Tags/get_posts">get_posts()</a></code> function.</p>
<pre>&lt;?php
$recentposts = get_posts('numberposts=12&amp;category=4');
	foreach ($recentposts as $post) :
	setup_postdata($post);
?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink() ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endforeach; ?&gt;</pre>
<h3>Display Recent Comments</h3>
<p>I found this piece of code somewhere around the web but I don&#8217;t know who the original source is. So the credit goes to him or her. This piece of code will display the 7 most recent comments.</p>
<pre>&lt;?php
global $wpdb;
$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,
comment_post_ID, comment_author, comment_date_gmt, comment_approved,
comment_type,comment_author_url,
SUBSTRING(comment_content,1,30) AS com_excerpt
FROM $wpdb-&gt;comments
LEFT OUTER JOIN $wpdb-&gt;posts ON ($wpdb-&gt;comments.comment_post_ID =
$wpdb-&gt;posts.ID)
WHERE comment_approved = '1' AND comment_type = '' AND
post_password = ''
ORDER BY comment_date_gmt DESC
LIMIT 7";
$comments = $wpdb-&gt;get_results($sql);
$output = $pre_HTML;
$output .= "\n&lt;ul&gt;";
foreach ($comments as $comment) {
$output .= "\n&lt;li&gt;".strip_tags($comment-&gt;comment_author)
.": " . "&lt;a href=\"" . get_permalink($comment-&gt;ID) .
"#comment-" . $comment-&gt;comment_ID . "\" title=\"on " .
$comment-&gt;post_title . "\"&gt;" . strip_tags($comment-&gt;com_excerpt)
."&amp;hellip;&lt;/a&gt;&lt;/li&gt;";
}
$output .= "\n&lt;/ul&gt;";
$output .= $post_HTML;
echo $output;?&gt;</pre>
<h3>Display Categories</h3>
<p>There are different ways in displaying categories and most of the time I like the categories to be displayed in a simple list.</p>
<p><span style="font-family: 'Courier New'; line-height: 18px; font-size: 12px; white-space: pre;">&lt;h4&gt;Categories&lt;/h4&gt;</span></p>
<pre>&lt;ul&gt;
&lt;?php wp_list_categories('use_desc_for_title=0&amp;title_li=&amp;show_count=0'); ?&gt;
&lt;/ul&gt;</pre>
<h3>Display Archives as Simple List</h3>
<p><strong>Method 1: </strong>This will display the archives in a month list. I usually place this on the sidebar. Learn more about <a href="http://codex.wordpress.org/Template_Tags/wp_get_archives">wp_get_archives</a>.</p>
<pre>&lt;h4&gt;Archives&lt;/h4&gt;
&lt;ul&gt;
	&lt;?php wp_get_archives('type=monthly'); ?&gt;
&lt;/ul&gt;</pre>
<p><strong>Method 2: </strong>This will display all the posts in a simple list. I usually use this on an archives page template.</p>
<pre>&lt;ul class="archives"&gt;
&lt;?php
$myposts = get_posts('numberposts=-1&amp;offset=0');
foreach($myposts as $post) :
?&gt;
&lt;li&gt;&lt;small&gt;&lt;?php the_time('d.m.y') ?&gt;&lt;/small&gt; &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;

&lt;?php endforeach; ?&gt;
&lt;/ul&gt;</pre>
<h3>Display Tagclouds</h3>
<p>This will display the tags in a tagcloud. This is the simplest on how to use it. For more details you may check out <code><a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud">wp_tag_cloud()</a></code> from the WordPress codex.</p>
<pre>&lt;?php wp_tag_cloud('smallest=8&amp;largest=22'); ?&gt;</pre>
<h3>Display Blogroll</h3>
<p>This will display the links in a simple plain list. More on <a href="http://codex.wordpress.org/Template_Tags/wp_list_bookmarks">wp_list_bookmarks</a>.</p>
<pre>&lt;ul&gt;
&lt;?php wp_list_bookmarks('title_li=&amp;categorize=0'); ?&gt;
&lt;/ul&gt;</pre>
<p>While I know that these are not all of the most commonly used WordPress snippets, I hope this post will still help out people who want to learn WordPress. I have written this post so it can serve as a reference for me and by all means you can make it your reference too. But if you want to learn more on WordPress functions you can always go to the <a href="http://codex.wordpress.org">Codex </a>or you can get a copy of <a href="http://justagirlintheworld.com/wordpressfordummies/">WordPress for Dummies</a>.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/S1gkyfxYktw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2009/05/24/most-commonly-used-wordpress-code-snippets/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2009/05/24/most-commonly-used-wordpress-code-snippets/</feedburner:origLink></item>
		<item>
		<title>How to Create a Visual Image Preloader using jQuery</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/FHT4Kj-HHIQ/</link>
		<comments>http://dinolatoga.com/2009/04/26/how-to-create-a-visual-image-preloader-using-jquery/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 07:28:37 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Image Preloader]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Preloaders]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=103</guid>
		<description><![CDATA[I have been searching the web for methods on how to visually preload the images on your site. I have found a few good ones but they require a defined source or path and that just doesn't work for me. I needed something to preload any image from any source or URL. So I gave up the search and created a simple solution for myself. Read on to find out how I did it.]]></description>
			<content:encoded><![CDATA[<p>If you have been here in my site before, you may have noticed the images on this site have a visual preloading effect. It&#8217;s really a cool effect but it&#8217;s actually just a fake preloader. It doesn&#8217;t preload the images individually but it considers all the images on the page before it starts showing each one. This method I&#8217;m about to share and explain works best on a page with not too many images. The script is purely based on jQuery with a little bit of CSS.</p>
<h3>How it works</h3>
<p>When the page is initialized, a script will hide all of the images. While all of the images on the page are loading, an animated preloader will take it&#8217;s place creating the &#8220;image loading&#8221; effect. After all the images on the page is loaded, a script will kick in and start fading in the images from the first instance to the last one. This method works with any image from any source or path. To achieve the whole preloader effect the image must be wrapped inside a div with a class. We need the extra markup for a placeholder for our animated preloader image.</p>
<ul>
<li><a title="Demo - How to create a Visual Image Preloader using jQuery" href="http://demo.dinolatoga.com/imagepreloader/">View the Demo</a></li>
<li><a title="How to create a Visual Image Preloader using jQuery Source Files" href="http://demo.dinolatoga.com/imagepreloader/sourcefiles.zip">Download the Source Files</a></li>
</ul>
<h3>Getting started</h3>
<p>You need the <a title="jQuery - Write less, do more" href="http://jquery.com">jQuery</a> library by <a title="John Resig" href="http://ejohn.org/">John Resig</a>. The older versions work but I suggest you always use the current release.</p>
<p>First, let&#8217;s create the HTML page. We need to include the jQuery library in the header of the page. And let&#8217;s wrap each image with a div.</p>
<pre>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt;
	&lt;title&gt;Visual Image Preloader using jQuery&lt;/title&gt;
	&lt;script src="js/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div class="image-holder"&gt;
		&lt;img src="http://farm4.static.flickr.com/3563/3381408848_9c746f35f6.jpg?v=0" alt="Image 1"/&gt;
	&lt;/div&gt;
	&lt;div class="image-holder"&gt;
		&lt;img src="http://farm4.static.flickr.com/3657/3381403740_19457662b3.jpg?v=0" alt="Image 2"/&gt;
	&lt;/div&gt;
	&lt;div class="image-holder"&gt;
		&lt;img src="http://farm4.static.flickr.com/3454/3381399248_82bf005381.jpg?v=0" alt="Image 3"/&gt;
	&lt;/div&gt;
	&lt;div class="image-holder"&gt;
		&lt;img src="http://farm4.static.flickr.com/3586/3381393310_8f4b015827.jpg?v=0" alt="Image 4"/&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<h3>Adding the script</h3>
<p>Let&#8217;s create the fake preloader script and insert it on the header.</p>
<pre>&lt;script type="text/javascript"&gt;
	$(function () {
		$('img').hide();//hide all the images on the page
	});

	var i = 0;//initialize
	var int=0;//Internet Explorer Fix
	$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded
		var int = setInterval("doThis(i)",500);//500 is the fade in speed in milliseconds
	});

	function doThis() {
		var images = $('img').length;//count the number of images on the page
		if (i &gt;= images) {// Loop the images
			clearInterval(int);//When it reaches the last image the loop ends
		}
		$('img:hidden').eq(0).fadeIn(500);//fades in the hidden images one by one
		i++;//add 1 to the count
	}
&lt;/script&gt;</pre>
<p>Let&#8217;s <a title="How to create a Visual Image Preloader using jQuery" href="http://demo.dinolatoga.com/imagepreloader/index-raw.html">test </a>what we have so far. The images will only start to fade in once the entire document is loaded. That is how the event handler window.bind() works.</p>
<h3>Adding the animated preloader</h3>
<p>Now let&#8217;s add the animated preloader. You may generate your own loader image <a title="Image Loader Generator" href="http://www.ajaxload.info">here</a>. Let&#8217;s create a new CSS file in our favorite code editor.</p>
<pre>.image-holder{
	float:left;
	width:500px;
	height:313px;
	padding:10px;
	margin:10px;
	border:1px solid #ddd;
	background:#eee url(loading.gif) 50% 50% no-repeat;
	display:inline;
}</pre>
<p>Don&#8217;t forget to include the CSS file on your header.</p>
<pre>&lt;link rel="stylesheet" href="preloader.css" type="text/css" /&gt;</pre>
<h3>Summary and Conclusion</h3>
<p>While I know that this is not a real solution for preloading images, it would still add a very cool effect to your website. This method will preload any image from any source or path. The only setback is you will not see the animated preloader on images not wrapped in a special div. But the good thing is it would still have that fade-in effect.</p>
<p>That&#8217;s it! I hope you enjoy the simple <a title="How to create a Visual Image Preloader using jQuery" href="http://demo.dinolatoga.com/imagepreloader/">demo</a> and tutorial. If you have any questions or suggestions, you may leave your comments below.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/FHT4Kj-HHIQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2009/04/26/how-to-create-a-visual-image-preloader-using-jquery/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2009/04/26/how-to-create-a-visual-image-preloader-using-jquery/</feedburner:origLink></item>
		<item>
		<title>The 7 Stages of This Website’s Redesign</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/PsKrM84rU5E/</link>
		<comments>http://dinolatoga.com/2009/04/24/7-stages-of-this-redesign/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 18:16:22 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[guidelines]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=70</guid>
		<description><![CDATA[Finally, the rocketship to Mars that I've been building for months has taken off. By rocketship I mean this website redesign. It wasn't easy but it was fun. I started working on this design since February this year and I 'm really glad that it's over. Well at least for now. If you want to find out how I came up with the design, read on.]]></description>
			<content:encoded><![CDATA[<p>At long last, I have finally updated my website with the new design. I&#8217;m calling this new design &#8220;<strong>Stage 7</strong>&#8221; because there were 7 stages and it was the 7th stage that I finally stopped and finalized the design. If you are a new visitor to this site, you probably won&#8217;t even notice it at all. But to give you a brief history, this site used to wear the <a href="http://dinolatoga.com/2008/07/04/una-wordpress-theme/">Una WordPress theme</a>, my first free WordPress theme and it has served me well.</p>
<p>So what took me so long to build and launch this new design? It&#8217;s not really because of the lack of time or inspiration. In fact I do have a lot of free time for this project. But everytime I finish the design, I take a good look at it today and decide that it&#8217;s cool but the next day when I take a look at it again, I have changed my mind about it . I&#8217;ve learned the hard way that as a web designer, the hardest client to please is yourself. To prove it to you, I&#8217;ve gone through many design revisions before I finally came up with this and to be honest, I&#8217;m still not fully pleased with what I came up with. But I decided to stop tweaking the design and finally convert it to code, because if I continue on revising the design, I will not be able to finish anything at all.</p>
<p>Below you will see the evolution of the design in 7 stages:</p>
<div id="attachment_74" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-74" title="Stage 1" src="http://dinolatoga.com/wp-content/uploads/2009/04/study1.jpg" alt="Stage 1" width="450" height="450" /><p class="wp-caption-text">Stage 1</p></div>
<p><strong>Stage 1</strong>: It started out as a light colored theme. I kinda like this layout. In fact, I&#8217;m converting this to a WP theme sometime soon.<br/><br/></p>
<div id="attachment_75" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-75" title="Stage 2" src="http://dinolatoga.com/wp-content/uploads/2009/04/study2.jpg" alt="Stage 2" width="450" height="518" /><p class="wp-caption-text">Stage 2</p></div>
<p><strong>Stage 2</strong>: This one looks similar to the first one, except images are added on the blog section of the page. Another great WordPress theme idea, I guess.<br/><br/></p>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-76" title="Stage 3" src="http://dinolatoga.com/wp-content/uploads/2009/04/study3.jpg" alt="Stage 3" width="450" height="394" /><p class="wp-caption-text">Stage 3</p></div>
<p><strong>Stage 3</strong>: I woke up one day and I told myself, I wanted that kind of look. Looks good to me but I got tired of looking at it.<br/><br/></p>
<div id="attachment_77" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-77" title="Stage 4" src="http://dinolatoga.com/wp-content/uploads/2009/04/study4.jpg" alt="Stage 4" width="450" height="563" /><p class="wp-caption-text">Stage 4</p></div>
<p><strong>Stage 4</strong>: This one looks grungy, the kind of look that I&#8217;m going for but I hated the colors.<br/><br/></p>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-78" title="Stage 5" src="http://dinolatoga.com/wp-content/uploads/2009/04/study6.jpg" alt="Stage 5" width="450" height="487" /><p class="wp-caption-text">Stage 5</p></div>
<p><strong>Stage 5</strong>: I love this design. But before I can convert it to code, I kinda changed my mind again. I&#8217;m gonna inherit this look on some of my future projects so it won&#8217;t be wasted.<br/><br/></p>
<div id="attachment_79" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-79" title="Stage 6" src="http://dinolatoga.com/wp-content/uploads/2009/04/study7.jpg" alt="Stage 6" width="450" height="469" /><p class="wp-caption-text">Stage 6</p></div>
<p><strong>Stage 6</strong>: I&#8217;m almost there. I thought I was aiming for grunge but at this stage, I knew what I wanted. I wanted something that looks neat and textured so I got rid of the grunge parts and came up with this.<br/><br/></p>
<div id="attachment_80" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-80" title="Stage 7" src="http://dinolatoga.com/wp-content/uploads/2009/04/studyfinal.jpg" alt="Stage 7" width="450" height="591" /><p class="wp-caption-text">Stage 7</p></div>
<p><strong>Stage 7</strong>: This is the final design and I think I&#8217;m really happy about it. I love how it eveolved from Stage 1 to this. I didn&#8217;t see that coming. At least this was a great learning experience for me.<br/><br/></p>
<p>Because I don&#8217;t want to go through piles of stages on my future projects again, I created guidelines for myself. If you find these guidelines useful, you may use it at your own risk. :)</p>
<h4>Always ask other people&#8217;s opinion about the stuff you are working on</h4>
<p>I guess this one is a very important thing to remember. If you can&#8217;t please yourself, the best way to move on with your design is ask other people&#8217;s opinion. Remember that you are not only pleasing yourself but other people too who will be viewing your design.</p>
<h4>Do not overdo it</h4>
<p>Sometimes when you are working on something interesting, like a personal blog or website, you tend to get addicted to it that you don&#8217;t want to stop working on it. You want to put everything into it but most of the times, that&#8217;s not really cool. Like for example, you are working a website and you have finished laying it out. You see an empty space on one of the columns and you decide to fill that up with some design or something to fill up the space. Sometimes, spaces are good. It gives the eye some area to rest. Sometimes, you need to pause for a while and take a walk to clear your mind.</p>
<h4>Stay Organized</h4>
<p>This one is very important for me because most of the times I get really disorganized. I start the project with a list of to-dos and I end up losing and not following what I wrote.</p>
<h4>Keep it Simple</h4>
<p>Simplicity is beauty. So don&#8217;t make it too complicated.<br />
<br/><br/><br />
Well that&#8217;s it. This post has to end somewhere. Everytime I&#8217;ll be working on a new project I&#8217;ll be going back to these guidelines. This design has been tested to work great on all modern browsers except IE6. For all those folks who are still using Internet Explorer 6, please update your browser or just use a <a href="http://getfirefox.com">better browser</a>.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/PsKrM84rU5E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2009/04/24/7-stages-of-this-redesign/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2009/04/24/7-stages-of-this-redesign/</feedburner:origLink></item>
		<item>
		<title>Google Chrome Beta PNG Opacity bug</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/5rf88xE_d9o/</link>
		<comments>http://dinolatoga.com/2008/09/04/google-chrome-beta-png-opacity-bug/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 04:19:23 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[browser bugs]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[PNG bug]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=39</guid>
		<description><![CDATA[I have just discovered a bug in Google Chrome. I don't know if I'm the first one to discover it or write about it but who cares. I think the Google Chrome developers should know about this, if they still haven't heard of it. Since Google Chrome is still in beta, this bug is just the first of many -- or few.]]></description>
			<content:encoded><![CDATA[<p>So what&#8217;s the Chrome bug? It&#8217;s actually a <abbr title="Portable Network Graphics">PNG</abbr> opacity issue. I discovered this bug when I came across <a title="Taptaptap" href="http://www.taptaptap.com" target="_blank">taptaptap</a>, a website for iPhone apps, using the Google Chrome browser. Below are screenshots of the taptaptap website on Google Chrome and Firefox, respectively.</p>
<div id="attachment_40" class="wp-caption aligncenter" style="width: 370px"><img class="size-full wp-image-40" title="Google Chrome PNG bug demonstration" src="http://dinolatoga.com/wp-content/uploads/2008/09/chrome-png-bug.jpg" alt="Google Chrome PNG bug demonstration" width="360" height="439" /><p class="wp-caption-text">Google Chrome PNG bug demonstration. Notice the white borders on the soft-rounded square icons.</p></div>
<div id="attachment_41" class="wp-caption aligncenter" style="width: 368px"><img class="size-full wp-image-41" title="Firefox Taptaptap Screenshot" src="http://dinolatoga.com/wp-content/uploads/2008/09/ff-screenshot.jpg" alt="Firefox Taptaptap Screenshot" width="358" height="440" /><p class="wp-caption-text">Same website as seen on Firefox 2 browser. See the difference?</p></div>
<p>To see the actual bug, simply open taptaptap.com in Google Chrome and click one of those soft rounded square icons. You should be able to see white borders appear on inactive square icons.</p>
<p>Like I said, Google Chrome is still in beta, so it&#8217;s just normal to encounter a few bugs. Another demonstration of a CSS bug on Google Chrome is seen when you visit <a title="Google Chrome Bug" href="http://avalonstar.com/blog/2008/sep/2/gotta-catch-em-all/" target="_blank">Avalonstar</a>.</p>
<blockquote><p>It appears that they’ve exchanged text-shadow for text-shitify.</p></blockquote>
<p>But I must admit, I fell in love with Chrome the first time I saw it. It never fails to give me fast, reliable and organized browsing experience. Google Chrome is fast, just check out the <a title="Google Chrome Benchmarks" href="http://ejohn.org/blog/javascript-performance-rundown/" target="_blank">benchmarks</a> <a title="Google Chrome Benchmarks" href="http://scriptnode.com/article/google-chrome-benchmarks/" target="_blank">here</a>, <a title="Google Chrome Benchmarks" href="http://kourge.net/node/122" target="_blank">there</a> and <a title="Google Chrome Benchmark test" href="http://news.cnet.com/8301-1001_3-10030888-92.html" target="_blank">everywhere</a>.</p>
<p><strong>Update:</strong> Google Chrome 2 has been released and it fixes the PNG Opacity bug. Thanks to the Google Chrome developers for looking into this one major problem.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/5rf88xE_d9o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2008/09/04/google-chrome-beta-png-opacity-bug/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2008/09/04/google-chrome-beta-png-opacity-bug/</feedburner:origLink></item>
		<item>
		<title>The Pen and Pencil Tool Combo</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/4hKssfUudFE/</link>
		<comments>http://dinolatoga.com/2008/07/24/the-pen-and-pencil-tool-combo/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 14:40:06 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[illustrations]]></category>
		<category><![CDATA[Una]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=13</guid>
		<description><![CDATA[My son's birthday is coming up and I need to come up with a design for his birthday give-aways. So I got on my thinking cap, opened up Illustrator and started drawing beautiful and colorful illustrations.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been very busy with a lot of custom WordPress theme projects that I haven&#8217;t posted here for more than a week. Also, my son&#8217;s very first birthday party is coming up this Sunday and I&#8217;m very excited already. I have created 3 different illustrations and designs for button pins that we would give away on his birthday. I created the designs on Adobe Illustrator using the Pen and pencil tool combo. That&#8217;s right, With the pen and pencil tool together you can create an amazing stunning design. See what I&#8217;ve done with the Pen and Pencil tool below.</p>
<div id="attachment_14" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-14" title="Button Pin Design 1" src="http://dinolatoga.com/wp-content/uploads/2008/07/cd1.jpg" alt="" width="300" height="300" /><p class="wp-caption-text">A Portrait of my 1 year old son</p></div>
<div id="attachment_15" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-15" title="Button Pin Design 2" src="http://dinolatoga.com/wp-content/uploads/2008/07/cd2.jpg" alt="The Pacifier, a tool to make a baby sleep and stop crying." width="300" height="300" /><p class="wp-caption-text">The Pacifier, a tool to make a baby sleep and stop crying.</p></div>
<div id="attachment_16" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-16" title="Criss David Day" src="http://dinolatoga.com/wp-content/uploads/2008/07/cd3.jpg" alt="Criss David Day" width="300" height="300" /><p class="wp-caption-text">Criss David Day</p></div>
<p>Yes, I do love vectors. Lately, I&#8217;ve been creating different illustrations that I will be using for a personal project. Below is an example. It&#8217;s an illustration of the Philippine Jeepney, the most common form of public transportation, in the Philippines of course.</p>
<div id="attachment_18" class="wp-caption aligncenter" style="width: 503px"><img class="size-full wp-image-18" title="Jeepney Joyride Vector" src="http://dinolatoga.com/wp-content/uploads/2008/07/myvectorjeep.jpg" alt="Vector illustration of the Philippine Jeepney." width="493" height="370" /><p class="wp-caption-text">Web Standards Compliant Jeepney.</p></div>
<p>If you&#8217;ve noticed on this post, the image has styled captions. A feature the new WordPress 2.6 has. I&#8217;m also integrating it on <a title="Una WordPress Theme" href="http://dinolatoga.com/2008/07/04/una-wordpress-theme/" target="_blank">Una</a>, the free WordPress theme that I&#8217;ve released lately. And speaking about Una, I&#8217;ll be releasing the latest, widgetized updated Una tomorrow, so be ready to download it once it comes out. You may <a title="Subscribe to DinoLatoga.com" href="http://feeds.feedburner.com/DinoLatoga" target="_blank">subscribe to my feed</a> so you&#8217;ll get updated whenever I make a new post.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/4hKssfUudFE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2008/07/24/the-pen-and-pencil-tool-combo/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2008/07/24/the-pen-and-pencil-tool-combo/</feedburner:origLink></item>
		<item>
		<title>SyntaxHighlighter Invalid HTML Problem Fast Hack</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/cPSLKlLrzDg/</link>
		<comments>http://dinolatoga.com/2008/07/05/syntaxhighlighter-invalid-html-problem-fast-hack/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 04:12:56 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[quickfix]]></category>
		<category><![CDATA[syntaxhighlighter]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=10</guid>
		<description><![CDATA[SyntaxHighlighter is a nice tool that makes the code snippets on your blog look pretty. It's based on Javascript so it's unobtrusive and degrades gracefully. It's client side based so it works on every server. It supports C++, Javascript, PHP, XML, CSS and the most common languages out there. It's easy to deploy and it supports most browsers. With all those nice things said, it still does something that ruins your day. SyntaxHighlighter makes your XHTML invalid.]]></description>
			<content:encoded><![CDATA[<p>Why is that a problem? See this, you&#8217;ve been coding this cool design for hours, making pretty damn sure that you are using valid <abbr title="EXtensible HyperText Markup Language">XHTML</abbr>. And then you install a script and suddenly all the valid mark up that you&#8217;ve coded for hours becomes invalid because of a tiny tag.</p>
<p>To use SyntaxHighlighter, you must enclose your code snippet with a <code>&lt;pre&gt;</code> tag and set a <code>name="code"</code> attribute. But <code>name</code> isn&#8217;t allowed for this tag anymore. You can also use the <code>&lt;textarea&gt;</code> tag but shouldn&#8217;t that be inside a <code>&lt;form&gt;</code>?</p>
<h4>The Quick Solution</h4>
<p>So here&#8217;s a fast, simple and mean solution that I did to make my XHTML code valid again. I know I&#8217;m not the first one who discovered this but I&#8217;m just here to share.</p>
<p>First, open <code>shCore.js</code> with your favorite code editor program. Find this line:</p>
<pre class="javascript:nocontrols:nogutter" title="code">if(tags[i].getAttribute('name')==name)</pre>
<p>and then replace it with the following code snippet.</p>
<pre class="javascript:nocontrols:nogutter" title="code">if(tags[i].getAttribute('title')==name)</pre>
<p>Save your file.</p>
<p>So instead of setting the <code>name</code> attribute, you can now use the <code>title</code> attribute which is 100% valid for the <code>&lt;pre&gt;</code> tag. I&#8217;ll be using this simple hack for quite sometime until the SyntaxHighlighter developer comes up with something more pretty.</p>
<p>I would love to hear your comments and suggestions about this hack.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/cPSLKlLrzDg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2008/07/05/syntaxhighlighter-invalid-html-problem-fast-hack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2008/07/05/syntaxhighlighter-invalid-html-problem-fast-hack/</feedburner:origLink></item>
		<item>
		<title>Una WordPress Theme</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/Ig-5ke0rQFs/</link>
		<comments>http://dinolatoga.com/2008/07/04/una-wordpress-theme/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 15:27:47 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Una]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2 Column themes]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=5</guid>
		<description><![CDATA[With great spacing, balanced columns and good font choice, Una gives your blog a neat, organized and readable look. So what are you waiting for? Stop the theme hunt and download Una and make your blogging rise again.]]></description>
			<content:encoded><![CDATA[<p>Una is my very first free public release WordPress theme. It has 2 columns divided with the guide of the divine proportion. The front page shows the latest post with it&#8217;s accompanying large graphic image which helps attract readers more than the usual large text titles. Below the latest post is a list of the 3 other recent posts with each post accompanied by a nice thumbnail image. Each section title is supported by a nice subtitle. The comments and trackbacks are divided to produce a clean and organized look. This theme was inspired by a lot of great blogs out there like <a title="Web Designer Wall" href="http://www.webdesignerwall.com" target="_blank">Web Designer Wall</a>, <a title="Matt Brett" href="http://mattbrett.com" target="_blank">Matt Brett</a>, <a title="Avalonstar" href="http://avalonstar.com" target="_blank">Avalonstar</a> and <a title="5 Thirty One" href="http://5thirtyone.com" target="_blank">5 Thirty One</a> to mention a few.</p>
<p>This theme is a little advanced for beginner bloggers but it doesn&#8217;t mean they can&#8217;t use it. Before you download and install this theme, you might wanna get into the details below to see and know what you&#8217;re getting.</p>
<h4>Updates</h4>
<p><em>January 14, 2009.</em> You can now download <a title="Una WordPress Theme" href="http://una-wordpress-theme.googlecode.com/files/una_latest.zip" target="_blank">Una</a> on <a title="Una on Google Code" href="http://code.google.com/p/una-wordpress-theme/" target="_blank">Google Code Project Hosting</a>. You may also report issues thru <a title="Report Una Issues on Google Code" href="http://code.google.com/p/una-wordpress-theme/issues/list" target="_blank">Google Code Issue tracker</a>.</p>
<p><em>October 06, 2008.</em> The theme has just won the best free custom theme on the <a title="Philippine Blog Awards" href="http://www.philippineblogawards.com.ph/2008/09/21/the-winners-of-the-2008-philippine-blog-awards/" target="_blank">2008 Philippine Blog Awards</a>. Thanks to the judges who voted for it. I&#8217;m really super busy right now but once I&#8217;m done with the projects that I have on hand I&#8217;ll be updating this theme and fix some bugs and add more features like admin options menu. Thanks to all you folks who have downloaded it!</p>
<p><em>September 09, 2008.</em> The theme is now Widget ready! For those of you who have downloaded and installed the first release, you may download the latest version and just overwrite the files.</p>
<p><em>July 07, 2008. </em>The first public release of Una.</p>
<h4>Demo and Download</h4>
<p>The live demo for this theme is used in this blog. What you see here is powered by Una.</p>
<p>The theme is tested on WordPress 2.5 and WordPress 2.5.1. I haven&#8217;t tested it yet on lower versions of WordPress and I&#8217;m not planning to. If you want this theme then you better use the latest and safest WordPress package.</p>
<p>The theme uses valid XHTML and CSS so please use valid mark-up in your content.</p>
<p><a class="download" href="http://una-wordpress-theme.googlecode.com/files/una_latest.zip">Download Una on Google Code Repository</a></p>
<p>You may report any issues you may find on the <a href="http://code.google.com/p/una-wordpress-theme/issues/list" target="_blank">Google Code issue tracker</a>.</p>
<div id="attachment_6" class="wp-caption aligncenter" style="width: 416px"><img class="size-full wp-image-6" title="Una WordPress Theme screenshot" src="http://dinolatoga.com/wp-content/uploads/2008/07/una-screenshot.jpg" alt="The first Una WordPress theme screenshot ever taken" width="406" height="659" /><p class="wp-caption-text">Una WordPress Theme screenshot</p></div>
<h4>Installation</h4>
<p>Before you activate this theme, there are a few things you must prepare for.</p>
<h5>Mother Set-up</h5>
<ul>
<li>Go to <strong>Settings</strong> &gt; <strong>Miscellaneous</strong> and enter these values for the Thumbnail size. width=<strong>195</strong>, height=<strong>155</strong>. And make sure the &#8220;Crop thumbnail&#8230;&#8221; is checked</li>
</ul>
<h5>Required WordPress plugins</h5>
<ul>
<li>Download the <a title="Twitter Tools" href="http://wordpress.org/extend/plugins/twitter-tools/" target="_blank">Twitter Tools</a> Plugin. Install and activate. Configure your settings like the image below.
<p><div id="attachment_7" class="wp-caption aligncenter" style="width: 380px"><img class="size-full wp-image-7" title="Twitter Tools Settings" src="http://dinolatoga.com/wp-content/uploads/2008/07/twitter-tools-setup.jpg" alt="Configuring the twitter tools settings the Una way" width="370" height="616" /><p class="wp-caption-text">Twitter Tools Settings</p></div></li>
<li>Download the <a title="Advanced Excerpt WordPress Plugin" href="http://wordpress.org/extend/plugins/advanced-excerpt/" target="_blank">Advanced Excerpt</a> Plugin. Install and activate. Go to the settings and set the <strong>Excerpt length</strong> to <strong>25</strong> and uncheck the <code>img</code></li>
</ul>
<p>The above plugins are not really required to make the theme work, however, if you want to optimize the output or the look of this theme, you must install these plugins.</p>
<h5>Setting up your avatar</h5>
<ul>
<li><del datetime="2008-07-07T14:11:27+00:00">Create a 36px by 36px avatar image, save it as <code>avatar.jpg</code> and upload it to <code>wp-content/themes/una/images/</code></del></li>
</ul>
<p>You can now skip this part. Una will automatically fetch your avatar image from <a title="Gravatar" href="http://gravatar.com" target="_blank">Gravatar</a>. If you don&#8217;t have a gravatar, the default gravatar will show up.</p>
<h5>Setting up twitter on your sidebar</h5>
<ul>
<li><del datetime="2008-07-07T14:33:38+00:00">Open <code>sidebar.php</code> and modify <strong>line 5</strong>. Change the value of the <strong>username</strong> to your twitter username</del></li>
</ul>
<p>Thanks to <a title="Emac Online" href="http://weboutsourceit.com" target="_blank">Efren</a> for the tip. This one will work automatically now. It will fetch your username from the Twitter Tools settings.</p>
<h5>Setting up the footer about info</h5>
<ul>
<li>Open <code>footer.php</code> and change <strong>line 8</strong> to your own self introduction text</li>
</ul>
<h5>Setting up the accompanying image for eash post</h5>
<p>This step is optional. The theme will work with or without this one. That&#8217;s how flexible and user friendly it is. If you have no image for the post, that&#8217;s ok. The theme will run smoothly.</p>
<ul>
<li>Create a 580px by 215px image. This will serve as the main image on the main page. While on the <strong>Write Post</strong> page upload the image using the Add Image button.</li>
<li>After the image has been uploaded, right click on the thumbnail (in Firefox Browser) and choose <em>Copy Image Location</em>.</li>
<li>Close the media window and expand the <strong>Custom Fields</strong> panel. Enter a new key titled <strong>post-thumb</strong> and paste the image location under the corresponding value.</li>
<li>Get the <strong>direct URL</strong> for the original image. Enter a new <strong>key</strong> titled <strong>post-image</strong> and enter the <strong>direct URL</strong> of the image under the corresponding value.</li>
</ul>
<h4>About &amp; Licensing</h4>
<p>This theme is absolutely free for the taking. All I&#8217;m asking is the footer credits to remain in tact. I request that any distribution of the Una theme out of this website be notified to the author.</p>
<h4>Bugs and Known Issues</h4>
<ul>
<li><span style="text-decoration: line-through;">Sidebar Widgets is not supported</span></li>
<li>Non-transparent comment icons</li>
<li>Footer not sticking at the bottom</li>
</ul>
<h4>To Do</h4>
<ul>
<li>Add the caption style for WordPress 2.6</li>
<li>Add a reply button to the comments</li>
</ul>
<h4>Theme Updates</h4>
<h5>July 26, 2008</h5>
<ul>
<li>The theme is now widget ready.</li>
</ul>
<h5>July 07, 2008</h5>
<ul>
<li>Updated <code>sidebar.php</code> and <code>footer.php</code> so that you don&#8217;t have to manually upload your avatar for it to show up.</li>
<li>Updated <code>sidebar.php</code> so that you don&#8217;t have to open the sidebar.pohp file and get your hands dirty. The twitter username will be automatically fetched from the Twitter Tools settings.</li>
<li>Fixed a few bugs</li>
</ul>
<p>If you have downloaded the theme and you find any bugs please report it by using the comments section below. I would also love to hear your suggestions! Thanks!</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/Ig-5ke0rQFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2008/07/04/una-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>148</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2008/07/04/una-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>Goodbye Splash Page</title>
		<link>http://feedproxy.google.com/~r/DinoLatoga/~3/7akQ_ZbhVc0/</link>
		<comments>http://dinolatoga.com/2008/07/01/goodbye-splash-page/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 01:57:17 +0000</pubDate>
		<dc:creator>dino</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Introductions]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dinolatoga.com/?p=1</guid>
		<description><![CDATA[Finally, after more than 5 months of waiting, visualizing, conceptualizing, tinkering with the PSP and planning, this website is finally up. I say it’s time to say goodbye to the old splash image that I created 5 months ago. So what the hell took me so long to create such a simple design? Read the on to find out.]]></description>
			<content:encoded><![CDATA[<h4>WTF, 5 Months?</h4>
<p>So why did this very simple design took me more than 5 months to build? The answer is really plain and simple. Revisions, revisions and more revisions. I know this sounds crazy but the hardest client in the world to please is yourself. Of course that&#8217;s not all. I have been very busy with my work and family.</p>
<h4>So, what is this shit all about?</h4>
<p>Well, this website will be a place for my ideas, thoughts and a stage to showcase my past and ongoing projects. I will be writing stuff that will be of interest to you like design, web development and Wordpress stuff. In other words, this will be a playground where I will share my random thoughts and things that I discover everyday.</p>
<h4>Who are you?</h4>
<p>Oh yeah, I forgot to introduce myself. My name is Dino Latoga. I have been weaving web designs for almost 6 years now. I create my designs and layout using mostly Fireworks, Illustrator and Photoshop. I convert my designs into XHTML and CSS using the latest <a title="Notepad ++ Editor" href="http://notepad-plus.sourceforge.net/" target="_blank">Notepad ++</a>. Before, I used to take the bus when I go to work but right now I only need to make a few steps from my bed to my workstation. I am currently a fulltime freelance web designer and <a title="Wordpress" href="http://wordpress.org" target="_blank">Wordpress</a> theme developer for <a title="E.Webscapes - Blog Design Studio" href="http://ewebscapes.com" target="_blank">E.Webscapes</a>, a professional blog design studio owned by the great <a title="Lisa Sabin-Wilson" href="http://www.justagirlintheworld.com/" target="_blank">Lisa Sabin-Wilson</a>. You can check out some of the <a title="Dino Latoga's project under E.Webscapes" href="http://ewebscapes.com/browse/blog-design/dino-latoga/" target="_blank">projects</a> I&#8217;ve done under E.Webscapes on their website.</p>
<h4>This is a neat design. Are you thinking of giving away this WordPress theme?</h4>
<p>Thanks. Yes, I will be giving away for <strong>free</strong> the very design and WordPress theme that you see here. Right now, it&#8217;s not yet available for download but in a few days, maybe tomorrow, the theme will be all yours for the taking.</p>
<img src="http://feeds.feedburner.com/~r/DinoLatoga/~4/7akQ_ZbhVc0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dinolatoga.com/2008/07/01/goodbye-splash-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dinolatoga.com/2008/07/01/goodbye-splash-page/</feedburner:origLink></item>
	</channel>
</rss>
