<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CodingCereal</title>
	<atom:link href="http://www.codingcereal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codingcereal.com</link>
	<description>Your daily web habit</description>
	<lastBuildDate>Tue, 01 May 2012 19:05:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress 3 Template Tags Cheat Sheet</title>
		<link>http://www.codingcereal.com/2012/05/wordpress3-template-tags-cheat-sheet/</link>
		<comments>http://www.codingcereal.com/2012/05/wordpress3-template-tags-cheat-sheet/#comments</comments>
		<pubDate>Tue, 01 May 2012 16:01:44 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Downloadables]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=657</guid>
		<description><![CDATA[Quick list of wordpress template tags grouped according to functionalities]]></description>
			<content:encoded><![CDATA[<p>Quick list of wordpress template tags grouped according to functionalities</p>
<p><img class="aligncenter size-full wp-image-661" title="wordpress3-cheat-sheet-preview" src="http://cdn.codingcereal.com/wp-content/uploads/2012/04/wordpress3-cheat-sheet-preview.jpg" alt="" width="600" height="408" /></p>
<p>Pdf file: <a href="http://cdn.codingcereal.com/wp-content/uploads/2012/04/wodpress3-cheat-sheet.pdf">wodpress3-cheat-sheet.pdf</a></p>
<p>File from <strong>www.hpvorlagen24.de</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/05/wordpress3-template-tags-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Labor Day in CSS3 Animation</title>
		<link>http://www.codingcereal.com/2012/05/happy-labor-day-in-css3-animation/</link>
		<comments>http://www.codingcereal.com/2012/05/happy-labor-day-in-css3-animation/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 18:07:37 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Message Board]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=666</guid>
		<description><![CDATA[A basic CSS3 animated labor day greetings]]></description>
			<content:encoded><![CDATA[<div class="animateme"></div>
<h3>Happy Labor Day Guys!</h3>
<p>A basic CSS3 animated greetings for everyone. Just <em>refresh</em> the page to view the animation again.</p>
<p>*Please take note that this works on latest <em>Firefox</em>, <em>Chrome</em> and <em>Safari</em> <strong>ONLY</strong></p>
<h3>HTML Script</h3>
<pre>&lt;div class='animateme'&gt;&lt;/div&gt;</pre>
<h3>CSS Script</h3>
<pre>&lt;style type="text/css"&gt;
 div.animateme{
 width:120px;
 height:160px;
 background:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet0.jpg) no-repeat center top;
 position:relative;
 animation:greetem 5s;
 -moz-animation:greetem 5s; /* Firefox */
 -webkit-animation:greetem 5s; /* Safari and Chrome */
 }
@keyframes greetem{
 0% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet0.jpg); left:0px;}
 25% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet1.jpg); left:125px;}
 50% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet2.jpg); left:250px;}
 75% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet3.jpg); left:375px;}
 100% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet4.jpg); left:500px;}
 }
@-moz-keyframes greetem /* Firefox */{
 0% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet0.jpg); left:0px;}
 25% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet1.jpg); left:125px;}
 50% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet2.jpg); left:250px;}
 75% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet3.jpg); left:375px;}
 100% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet4.jpg); left:500px;}
 }
@-webkit-keyframes greetem /* Safari and Chrome */{
 0% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet0.jpg); left:0px;}
 25% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet1.jpg); left:125px;}
 50% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet2.jpg); left:250px;}
 75% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet3.jpg); left:375px;}
 100% {background-image:url(http://cdn.codingcereal.com/wp-content/uploads/2012/05/greet4.jpg); left:500px;}
 }
 &lt;/style&gt;</pre>
<p>Reference reading: <a href="http://www.w3schools.com/css3/css3_animations.asp">CSS3 Animations</a></p>
<p>Enjoy!</p>
<p>Happy coding <img src='http://www.codingcereal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/05/happy-labor-day-in-css3-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Anatomy Model</title>
		<link>http://www.codingcereal.com/2012/04/wordpress-theme-anatomy-model/</link>
		<comments>http://www.codingcereal.com/2012/04/wordpress-theme-anatomy-model/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 09:34:41 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=651</guid>
		<description><![CDATA[A visual anatomy of the wp theme files]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn.codingcereal.com/wp-content/uploads/2012/04/wordpress_cheat_sheet_theme_anatomy_preview.jpg"><img class="aligncenter size-full wp-image-653" title="wordpress_cheat_sheet_theme_anatomy_preview" src="http://cdn.codingcereal.com/wp-content/uploads/2012/04/wordpress_cheat_sheet_theme_anatomy_preview.jpg" alt="" width="600" height="776" /></a></p>
<p>The image shows the basic files and native functions needed in order to create a basic wordpress theme.</p>
<p>Reference : wptuts+ <a href="http://wp.tutsplus.com/articles/wordpress-cheat-sheets-theme-anatomy-model/">WordPress Cheat Sheets: Theme Anatomy Model</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/04/wordpress-theme-anatomy-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 and CSS3 Cheat Sheets</title>
		<link>http://www.codingcereal.com/2012/04/html5-and-css3-cheat-sheets/</link>
		<comments>http://www.codingcereal.com/2012/04/html5-and-css3-cheat-sheets/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 09:22:07 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Downloadables]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=642</guid>
		<description><![CDATA[Downloadable cheat sheets for HTML5 and CSS3]]></description>
			<content:encoded><![CDATA[<h3>HTML 5 Cheat Sheet</h3>
<p>The pdf file contains a summary and short description of html tags for HTML5 technology. If the tags is not in the list, they are either deprecated or is not available for HTML5.</p>
<p><img class="alignnone size-full wp-image-644" title="html5-cheat-sheet" src="http://cdn.codingcereal.com/wp-content/uploads/2012/04/html5-cheat-sheet.jpg" alt="" width="300" height="150" /></p>
<p>Pdf file: <a href="http://cdn.codingcereal.com/wp-content/uploads/2012/04/html5-cheat-sheet.pdf">html5-cheat-sheet.pdf</a></p>
<h3>CSS3 Cheat Sheet</h3>
<p>The pdf file contains css attributes and properties available for CSS3.</p>
<p><img class="alignnone size-full wp-image-646" title="css3-cheat-sheet" src="http://cdn.codingcereal.com/wp-content/uploads/2012/04/css3-cheat-sheet.jpg" alt="" width="300" height="150" /></p>
<p>Pdf file: <a href="http://cdn.codingcereal.com/wp-content/uploads/2012/04/css3-cheat-sheet.pdf">css3-cheat-sheet.pdf</a></p>
<p>Files from <strong>www.veign.com</strong></p>
<p>Happy coding! <img src='http://www.codingcereal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/04/html5-and-css3-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips on Using PHP/MySQL for Creating Blog</title>
		<link>http://www.codingcereal.com/2012/04/tips-on-using-phpmysql-for-creating-blog/</link>
		<comments>http://www.codingcereal.com/2012/04/tips-on-using-phpmysql-for-creating-blog/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 10:32:05 +0000</pubDate>
		<dc:creator>Kelly Marsh</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[basic PHP]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=636</guid>
		<description><![CDATA[A blog provides us a platform to express and share our thoughts with the rest of the world. Blogging has become easier and there are hundreds of ways to create a blog. ]]></description>
			<content:encoded><![CDATA[<p>A blog provides us a platform to express and share our thoughts with the rest of the world. Blogging has become easier and there are hundreds of ways to create a blog. But, behind the scenes it is the right blogging platform and technology that makes things look easier and simpler.</p>
<p>Before you start to create a blog, it is highly essential to chart out your expectations and compare them against the capabilities of the technology you choose to create your blog. One of the popular scripting languages that we keep hearing among bloggers is PHP/MySQL. Once you start to develop your blog, you will find the need to go beyond the basic functionalities and customize it as per your needs. Before that, here are some tips to create a PHP/MySQL powered blog.</p>
<h3>1. Create your database:</h3>
<p>Initially, when you start your blog, all you will need is a table that holds unique id to represent each blog post, blog title, content, date, and the IP address of the person who added the entry. As you develop your blog, you might want to change the basic table structure and add additional tables. For instance, if you want to allow people to register in your blog and post comments, then you might want to add few more tables and normalize all your database tables accordingly. For now, to have basic functionality, you just need a simple table that holds details of each of your blog entry.</p>
<p>To create a table, you can refer to the following code.</p>
<pre>CREATE TABLE my_blog_tbl(‘post_id’ INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT, blog_title VARCHAR(500) NOT NULL, blog_content TEXT NOT NULL, datetime DATETIME NOT NULL);</pre>
<h3>2. Write your PHP code:</h3>
<p>In this layer, you will create objects to process data fetched from the database. A typical PHP code will contain as many variables as the fields in the database table and queries to fetch the data.</p>
<p>A basic MySQL query to fetch the data from the database is as follows:</p>
<pre>$blogquery = mysql_query("SELECT f_name, l_name FROM BLOG_POSTS WHERE id = " . $authorId);
$row = mysql_fetch_assoc($blogquery);
$this-&gt;author = $row["f_name"] . " " . $row["l_name"];</pre>
<p>The next step is to get your includes.php file ready. This is the place where you actually setup your database connection and invoke your PHP code to process the data. You can establish a connection to a MySQL database as follows:</p>
<pre>$conn = mysql_connect("hostname", "username", "password") or die("Connection to the database cannot be established.");
$db = "my_blogdb";
mysql_select_db($db, $conn) or die ("Connection to the database cannot be established.");</pre>
<p>Next, you can retrieve data from the database as follows:</p>
<pre>$query = my_query("SELECT * FROM blog_posts WHERE id = " . $postId . " ORDER BY postId DESC");</pre>
<p>So finally, your includes.php will look something similar to this:</p>
<pre>&lt;?php
include 'blogpost.php';
$connection = mysql_connect('localhost', 'username', 'password') …….
// database connection code
function GetBlogPosts($inId=null, $inTagId =null)
{
//database access code
return $postArray;
}
?&gt;</pre>
<h3>3. Display data</h3>
<p>Now, you can move on to displaying the data fetched from the database. The first step is to include your includes.php in your index.php, so that you can invoke the functions to retrieve data from the database. If your function returns an array of rows from the database, you can display them as follows.</p>
<pre>foreach ($blogPosts as $blogpost)
{
echo $blogpost-&gt;title . "
";
}</pre>
<h3>4. Add test data</h3>
<p>Next, insert some test data into your database and open the index.php in your browser to see your blog posts. As the page would just display the data in a simple table format, you can customize it using CSS style sheet.</p>
<p>As your blog gets bigger, you will certainly experience the power of PHP/MySQL to customize your blog with ease. You still need to add styling to make your page look better, but PHP/MySQL allows you to include some of the essential functionalities like adding spam protection, comment notification emails, and display an excerpt of a post, emoticons and many more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/04/tips-on-using-phpmysql-for-creating-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Key ways to use web app with PHP + MySQL</title>
		<link>http://www.codingcereal.com/2012/04/key-ways-to-use-web-app-with-php-mysql/</link>
		<comments>http://www.codingcereal.com/2012/04/key-ways-to-use-web-app-with-php-mysql/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 20:31:47 +0000</pubDate>
		<dc:creator>Kelly Marsh</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=628</guid>
		<description><![CDATA[A few tips on developing web apps using PHP and MySQL by guest writer Kelly Marsh]]></description>
			<content:encoded><![CDATA[<p>Almost 70% of websites are built on PHP and MySQL on the Internet. While creating a web application for PHP and MySQL sites, one needs to be well prepared in advance to accommodate higher traffic and scale their website. For this, scalability codes and effective handling of traffic are the first things to be looked into while developing a website in PHP.</p>
<p>Some of the key ways to use web apps with PHP and MySQL are listed below:</p>
<h3>Take stock of the performance and scalability</h3>
<p>Performance levels on websites are judges by the speed with which the data is served to its end users by a website. Scalability refers to the quality of your web pages which is capable of handling any amount of traffic thrown in its direction. To use your web apps well, you need to look at both these aspects on a PHP and MySQL site.</p>
<h3>Tune up your PHP site</h3>
<p>PHP is a scripting code and recompile the code on each request. To tune up your PHP web page, you can install an opcode cache. This will simplify your work since an opcode cache will circumvent this limitation by pulling the already compiled version, thereby saving time and effort.</p>
<p>The popular opcode caches available are ZendServer and WinCache for the Windows platform and APC cache for the open source. Installing these opcode caches will ease your PHP tuning and increase the performance of your web pages.</p>
<h3>Remove dynamic content from your web pages</h3>
<p>More often than not, web applications come with pages that are generated by PHP but do not undergo any change. For instance, an FAQ page or a press release statement can be cached to reduce the number of CPU cycles for this task. To achieve this, an easy way is to pre-generate HTML pages from your PHP and then allow the HTML pages to be served directly to the end users. Another way is to make use of template forming systems such as Smarty, which can automatically capture the content into a buffer or a database and then served as a cached copy to the end user. Alternatively, you can write the code yourself.</p>
<h3>Look into the load balancing aspect</h3>
<p>Load balancing in PHP is a concept that uses a central point for the arrival of all requests and then distributing these request in a balanced way to various web servers. This is an important aspect to be kept in mind while creating web applications that require multiple servers. The load balancing comes in three different operational categories. These are software balancers, hardware balancers and cloud based solutions. All these have the ability to cache the data and load balance the data by random selection or through perception from health meters. There are many applications available to help you in load balancing of data on the PHP platform.</p>
<h3>Use Master-Slave Replication of MySQL</h3>
<p>Once the Web server set up is adequately scaled, the next thing to expect in most Web applications is the huge database present on MySQL. This creates a traffic jam of data and it is better to be prepared for such a scenario. This bottle neck can be prevented by using a built-in solution on MySQL known as master-slave replication. You can then set up one more MySQL server that obeys all the orders from the master server and simplifies the handling of large amounts of data. All changes should be made on the master server for the changes to be accepted.</p>
<p>These are some of the ways to make use of web applications in a proper way on the PHP and MySQL platforms. There are many more such tips and tricks as every application requires a different treatment in PHP and MySQL. Following these simple rules will definitely ease your working and allow a smooth work flow of your innovative Web apps on the PHP web pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/04/key-ways-to-use-web-app-with-php-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook to Implement Timeline Layout on Pages</title>
		<link>http://www.codingcereal.com/2012/03/facebook-to-implement-timeline-layout-on-pages/</link>
		<comments>http://www.codingcereal.com/2012/03/facebook-to-implement-timeline-layout-on-pages/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 21:56:14 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Timeline]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=619</guid>
		<description><![CDATA[On March 30, 2012, all Facebook Pages will get a new design. Preview your page now to see what it looks like and try out the new features.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn.codingcereal.com/wp-content/uploads/2012/03/fb.jpg"><img class="size-full wp-image-621 aligncenter" title="fb" src="http://cdn.codingcereal.com/wp-content/uploads/2012/03/fb.jpg" alt="" width="600" height="167" /></a></p>
<blockquote><p>On March 30, 2012, all Facebook Pages will get a new design. Preview your page now to see what it looks like and try out the new features.</p></blockquote>
<p>It&#8217;ll be fun. <img src='http://www.codingcereal.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/03/facebook-to-implement-timeline-layout-on-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Update: CDN Setup for CodingCereal &amp; MorningCodes</title>
		<link>http://www.codingcereal.com/2012/03/site-update-cdn-setup-for-codingcereal-morningcodes/</link>
		<comments>http://www.codingcereal.com/2012/03/site-update-cdn-setup-for-codingcereal-morningcodes/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 21:10:04 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Message Board]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=614</guid>
		<description><![CDATA[Just finished setting-up cdn resources for uploaded and theme files for this site and morningcodes.com]]></description>
			<content:encoded><![CDATA[<p>Just finished setting-up cdn resources for uploaded and theme files for this site and morningcodes.com. Will check logs later if there is any improvement in the loading performance of the sites.</p>
<p>Also deactivated syntax highlighter plugin as it loads tons of js and css files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2012/03/site-update-cdn-setup-for-codingcereal-morningcodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012 Merry Christmas</title>
		<link>http://www.codingcereal.com/2011/12/2012-merry-christmas/</link>
		<comments>http://www.codingcereal.com/2011/12/2012-merry-christmas/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 07:58:26 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=595</guid>
		<description><![CDATA[May you have the merriest christmas ever! Happy coding!]]></description>
			<content:encoded><![CDATA[<p>May you have the merriest christmas ever!</p>
<p><a href="http://www.codingcereal.com/wp-content/uploads/2011/12/images.jpg"><img class="alignnone size-full wp-image-598" title="images" src="http://www.codingcereal.com/wp-content/uploads/2011/12/images.jpg" alt="" width="219" height="230" /></a></p>
<p>Happy coding! <img src='http://www.codingcereal.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2011/12/2012-merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>December 2011 Calendar Wallpaper</title>
		<link>http://www.codingcereal.com/2011/12/december-2011-calendar-wallpaper/</link>
		<comments>http://www.codingcereal.com/2011/12/december-2011-calendar-wallpaper/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 16:47:58 +0000</pubDate>
		<dc:creator>Jhoy Imperial</dc:creator>
				<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://www.codingcereal.com/?p=589</guid>
		<description><![CDATA[Great user submitted wallpapers for December 2011]]></description>
			<content:encoded><![CDATA[<p>Great user submitted wallpapers for December 2011</p>
<h3></h3>
<h3>Who Ate All The Christmas Cookies???</h3>
<p><a href="http://www.codingcereal.com/wp-content/uploads/2011/12/christmas_cookies__64.png"><img class="alignnone size-medium wp-image-592" title="christmas_cookies__64" src="http://www.codingcereal.com/wp-content/uploads/2011/12/christmas_cookies__64-300x187.png" alt="" width="300" height="187" /></a></p>
<h3>Tongue Stuck On Lamppost</h3>
<p><a href="http://www.codingcereal.com/wp-content/uploads/2011/12/december-11-tongue_stuck_on_lamppost__20-calendar-1440x900.jpg"><img class="alignnone size-medium wp-image-590" title="Print" src="http://www.codingcereal.com/wp-content/uploads/2011/12/december-11-tongue_stuck_on_lamppost__20-calendar-1440x900-300x187.jpg" alt="" width="300" height="187" /></a></p>
<p>more from <a href="http://www.smashingmagazine.com/2011/11/30/desktop-wallpaper-calendar-december-2011-christmas/" target="_blank">smashingmagazine.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingcereal.com/2011/12/december-2011-calendar-wallpaper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

