<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description></description><title>Andrew Ckor</title><generator>Tumblr (3.0; @andrewckor)</generator><link>http://blog.andrewckor.com/</link><item><title>What facebook taught me</title><description>&lt;p&gt;A few days ago I was working on a sticky header for &lt;a href="http://www.thetudu.com"&gt;thetudu&lt;/a&gt;, all I wanted was just a fixed position header that overlap the content on scrolling. So far sounds good and really easy, you don&amp;#8217;t even want Javascript, some pure classic CSS code is the deal.&lt;br/&gt;So let&amp;#8217;s see how the code should look like:&lt;/p&gt;

&lt;h4&gt;&lt;strong&gt;HTML&lt;/strong&gt;&lt;/h4&gt;

&lt;pre&gt;
&amp;lt;div class="header-container"/&amp;gt;
   &amp;lt;header class="header"&amp;gt;
      &amp;lt;!-- content here --&amp;gt;
   &amp;lt;/header&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;

&lt;h4&gt;&lt;b&gt;And the CSS is pretty simple too&lt;/b&gt;&lt;br/&gt;&lt;/h4&gt;
&lt;pre&gt;
&lt;b&gt;.header-container&lt;/b&gt; {
   min-width: 980px;
   height: 40px;
   position: fixed;
   left: 0;
   top: 0; 
   right: 0;
}

&lt;b&gt;.header&lt;/b&gt; {
   width: 980px;
   margin: 0 auto;
}
&lt;/pre&gt;

&lt;p&gt;Everything seems we are ready and if you test it, it works really good. The header is sticked at the top and the content scrolls beneath. I was thinking the same, when I got a big WOW, BOOM, WTF moment of my life, you know that time when you realize that everything you know is nothing and you just discover that your code all these years didn&amp;#8217;t work&amp;#8230; Is the same moment when I discovered the use of clearfix (where all my sites were invisible broken), or the time I learnt that evertyhing is an object in JS.&lt;/p&gt;

&lt;h3&gt;Wait a minute what are you talking about?&lt;/h3&gt;
&lt;p&gt;You will see right away. Now open the following pages and try to resize the window horizontally, in other words make it as thin as you can. Simulate a case that your users have a small screen, smaller than your site&amp;#8217;s width, or maybe a mobile phone.&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;A cool task management app &lt;a href="http://www.getflow.com/"&gt;flow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Or &lt;a href="http://demo2.woothemes.com/"&gt;woothemes&lt;/a&gt; which is a famous marketplace with best selling themes&lt;/li&gt;
&lt;li&gt;Also one more best selling author &lt;a href="http://demo.themezilla.com/"&gt;Orman Clark&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;&lt;b&gt;BOOM!&lt;/b&gt;&lt;br/&gt;
The content is hiding at the end of the window and there is no way to make it come back to the surface again, lost! This moment is when you realize that all your sticky headers/footers don&amp;#8217;t work! And this is very important problem because in all cases above something crucial is missing, signup or purchase.&lt;/p&gt;

&lt;p&gt;Personally I think that you should care for your visitors and examine all the possible aspects, this is what facebook does and the others don&amp;#8217;t, this is what &lt;a href="http://simplebits.com/"&gt;Dan Cederholm&lt;/a&gt; call &lt;a href="http://handcraftedcss.com/"&gt;handcrafted&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;But man, I have seen it work on facebook&lt;/h3&gt;

&lt;p&gt;I said the same words and I jumped straight forward on facebook to check their code.&lt;br/&gt;&lt;b&gt;And voila!&lt;/b&gt; Facebook&amp;#8217;s header works really well.&lt;br/&gt;&lt;b&gt;Why?&lt;/b&gt; Because they check when you resize the window and if your window is smaller than their min-width the sticky header becomes a regular header and goes back at the top of the page, not the browser. &lt;a href="http://ckor.me/GMnL"&gt;Check this video to understand what I&amp;#8217;m saying.&lt;/a&gt;
&lt;/p&gt;

&lt;h3&gt;And how it works?&lt;/h3&gt;

&lt;p&gt;The idea is pretty simple and smart but more complex than the first case. So let&amp;#8217;s see the differences in the markup and the CSS.&lt;/p&gt;

&lt;h4&gt;HTML&lt;/h4&gt;

&lt;pre&gt;
&lt;b&gt;&amp;lt;div class="header-placeholder"&amp;gt;&lt;/b&gt;
   &amp;lt;div class="header-container"&amp;gt;
      &amp;lt;header&amp;gt;
         &amp;lt;!-- content here --&amp;gt;
      &amp;lt;/header&amp;gt;
   &amp;lt;/div&amp;gt;
&lt;b&gt;&amp;lt;/div&amp;gt;&lt;/b&gt;
&lt;/pre&gt;

&lt;p&gt;First, we need one more div as placeholder. The placeholder holds an empty space for the header, so when the header is &amp;#8220;flying over the content&amp;#8221; and it&amp;#8217;s time to landing back to the page as a regular one it needs some space for this. &lt;br/&gt;
The CSS is more complex and we&amp;#8217;ll see it step by step.&lt;/p&gt;

&lt;h4&gt;Placeholder&amp;#8217;s styling&lt;/h4&gt;

&lt;pre&gt;
.header-placeholder {
   height: 40px;
   /* It needs only height just to save the space we want */
}
&lt;/pre&gt;

&lt;h4&gt;Then we keep the old code as it is&lt;/h4&gt;

&lt;pre&gt;
&lt;b&gt;.header-container&lt;/b&gt; {
   min-width: 980px;
   height: 40px;
   position: fixed;
   left: 0;
   top: 0; 
   right: 0;
}

&lt;b&gt;.header&lt;/b&gt; {
   width: 980px;
   margin: 0 auto;
}
&lt;/pre&gt;

&lt;h4&gt;A now the magic, a media query to handle the window size:&lt;/h4&gt;

&lt;pre&gt;
&lt;b&gt;@media only screen and (max-width: 979px)&lt;/b&gt; {
   &lt;b&gt;.header-fixed&lt;/b&gt; {
      position: relative;
   }
}
&lt;/pre&gt;

&lt;p&gt;Now if our window is less than 980px, the header will change back to static. If you want to support older browsers you have to use some Javascript to make it work.&lt;/p&gt;

&lt;h4&gt;Javascript (I&amp;#8217;m using jQuery, you can do it with plain javascript too)&lt;/h4&gt;

&lt;pre&gt;
function checkSize(){
   if ( $(window).width() &amp;lt; 980 ){
      $('.header-container').addClass('is-static');
   }else {
      $('.header-container').removeClass('is-static');
   }
}();

/* Then check again on resize */
$(window).resize( checkSize );
&lt;/pre&gt;

&lt;h4&gt;Finally some extra CSS to handle is-static class&lt;/h4&gt;

&lt;pre&gt;
&lt;b&gt;.is-static&lt;/b&gt; {
   position: relative;
}
/* If you use more specific selector on &lt;b&gt;.header-container&lt;/b&gt;&lt;br/&gt;e.g. &lt;b&gt;#top .header-container&lt;/b&gt;, you need to use &lt;b&gt;!important&lt;/b&gt;&lt;br/&gt;e.g. position: relative &lt;b&gt;!important&lt;/b&gt;; */
&lt;/pre&gt;

&lt;p&gt;And that&amp;#8217;s all! From now all your sticky headers/footers will work perfectly with the right way and I&amp;#8217;m waiting to see a lot of websites implement this way. The problem is not exists in the websites that follow the Responsive Web Design technique, but we can&amp;#8217;t make everything responsive, so facebook&amp;#8217;s way will be useful for all of us.&lt;br/&gt;&lt;br/&gt;
Left your comment and write your thoughts and suggestions&amp;#8230;&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/22379192980</link><guid>http://blog.andrewckor.com/post/22379192980</guid><pubDate>Fri, 04 May 2012 15:24:00 +0300</pubDate></item><item><title>Noise texture generator updated to v2.1</title><description>&lt;p&gt;It&amp;#8217;s been a while since my last post in my blog and I have to say I missed it.&lt;br/&gt;&lt;strong&gt;It&amp;#8217;s 9 whole months!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The last months I&amp;#8217;m working hard on a new app called &lt;a href="http://www.thetudu.com" title="thetudu - Calendars done right"&gt;thetudu&lt;/a&gt; a brand new category in the calendars and todo lists market and I&amp;#8217;m sure you will love it! (You can see some screenshots on my &lt;a href="http://www.dribbble.com/andrewckor"&gt;dribbble&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;But enough with thetudu lets go back to the main subject that is the new &lt;a href="http://www.noisetexturegenerator.com"&gt;noise texture generator&lt;/a&gt;. The pas months a lot of people used it and tweeted about this and I&amp;#8217;m happy that this small handy tool helps so many people to do their job faster. This kind of popularity made me think to add new features into the app and that the new version. I&amp;#8217;m listing the features below:&lt;/p&gt;&lt;!-- more --&gt;
&lt;h3&gt;New density slider&lt;/h3&gt;
&lt;p&gt;The new density slider helps you make the noise less dense in case you need it. (Need some improvements and some smarter generating but it&amp;#8217;s really helpful)&lt;/p&gt;
&lt;h3&gt;New transparency switcher&lt;/h3&gt;
&lt;p&gt;On the first version of &lt;abbr title="Noise Texture Generator"&gt;NTG&lt;/abbr&gt; the final image was transparent (without background). After the major update to v2 the final image became colored to be easier to use it. Now there is a checkbox that YOU DECIDE if you want background color or not on the final image.&lt;/p&gt;
&lt;h3&gt;Settings saving&lt;/h3&gt;
&lt;p&gt;When you&amp;#8217;re using the &lt;abbr title="Noise Texture Generator"&gt;NTG&lt;/abbr&gt;, if your browser close accidentally, you come back your settings are still there. Same happens if you visit the page in the future, because of HTML5 localStorage API that let us save the settings locally in your browser.&lt;/p&gt;
&lt;p&gt;These were the new major features on &lt;abbr title="Noise Texture Generator"&gt;NTG&lt;/abbr&gt;, they also made a lot of code improvements in both of JS and CSS sides. &lt;/p&gt;
&lt;h3&gt;What for the future?&lt;/h3&gt;
&lt;p&gt;I&amp;#8217;m thinking a lot of new features to implement which are need time. My first and most important priority on my to-do list, is to create a github repository so anyone can help on &lt;abbr title="Noise Texture Generator"&gt;NTG&lt;/abbr&gt; building and improvement.&lt;/p&gt;
&lt;p&gt;Visit &lt;a href="http://www.noisetexturegenerator.com"&gt;noise texture generator&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/20959693572</link><guid>http://blog.andrewckor.com/post/20959693572</guid><pubDate>Thu, 12 Apr 2012 14:35:00 +0300</pubDate></item><item><title>New Sitepoint Book: Build Mobile Develop Websites and Apps for Smart Devices</title><description>&lt;p&gt;As my close friends know I love &lt;a title="Sitepoint" target="_blank" href="http://www.sitepoint.com"&gt;Sitepoint&amp;#8217;s&lt;/a&gt; books. I love them because they teach to everyone all the web trends and programming languages, with very well structured books and easy to read language for everyone from the very amateur to the most intermediate guy. The last very good example is the latest book that they released &lt;a title="HTML5 &amp;amp; CSS3 for the Real World" target="_blank" href="http://www.sitepoint.com/books/htmlcss1/"&gt;HTML5 &amp;amp; CSS3 for the Real World&lt;/a&gt; (that I suggest you to buy).&lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;So, as I tell to my twitter followers &lt;a target="_blank" href="https://twitter.com/#!/ckor/status/82758368103628800"&gt;few minutes ago &lt;/a&gt;Sitepoint is about to release a new cool book that I was looking for that kind of book for the last month. The book is called &lt;a title="Build Mobile: Develop Websites and Apps for Smart Devices" target="_blank" href="http://www.sitepoint.com/books/mobile1/"&gt;Build Mobile: Develop Websites and Apps for Smart Devices&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sitepoint.com/books/mobile1/"&gt;&lt;img src="http://media.tumblr.com/tumblr_ln350osRSO1qbyphe.png"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The main sections that book focuses are:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Learn the fundamental rules if great mobile UI design&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Responsive layouts are smart layouts&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Get that &amp;#8216;native app&amp;#8217; feel on any device&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Get the most out of every device&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Offer powerful native applications to different OS&amp;#8217;s&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://www.sitepoint.com/books/mobile1/toc.php"&gt;View Table of Contents&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;I think it will be a great book and I suggest you to &lt;a title="Amazon preorder" target="_blank" href="http://www.amazon.com/Build-Mobile-Websites-Smart-Devices/dp/0987090844/ref=sr_1_1?ie=UTF8&amp;amp;qid=1308567588&amp;amp;sr=1-1-spell"&gt;pre-order it&lt;/a&gt; you save &lt;strong&gt;$4.34&lt;/strong&gt; :P. Me, I will definitely buy the the bundle version (eBook + Printed) to have it also in my iPad. :)&lt;/p&gt;
&lt;p&gt;Subscribe to my &lt;a title="Andrew Ckor's Blog RSS" target="_blank" href="http://blog.andrewckor.com/rss"&gt;RSS Feed&lt;/a&gt; to see my review after book&amp;#8217;s release.&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/6719878969</link><guid>http://blog.andrewckor.com/post/6719878969</guid><pubDate>Mon, 20 Jun 2011 14:06:00 +0300</pubDate><category>articles</category></item><item><title>Forrst Invite Giveaway!</title><description>&lt;p&gt;&lt;strong&gt;Hello everyone! &lt;/strong&gt;&lt;br/&gt;Yesterday &lt;a href="http://www.forrst.com"&gt;&lt;strong&gt;forrst&lt;/strong&gt;&lt;/a&gt; team gave me an invite and now I share it with you!&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lkirhjnpFU1qbyphe.png"/&gt;&lt;/p&gt;
&lt;p&gt;So if your are &lt;strong&gt;designer&lt;/strong&gt; leave your comment: &lt;br/&gt;with your valid &lt;strong&gt;email address&lt;/strong&gt;, a link to your &lt;strong&gt;portfolio&lt;/strong&gt; or maybe some links with your &lt;strong&gt;work&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Be sure your not developer!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Have Fun! &lt;/strong&gt;&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/5099686098</link><guid>http://blog.andrewckor.com/post/5099686098</guid><pubDate>Sun, 01 May 2011 16:44:00 +0300</pubDate><category>freebies</category></item><item><title>Make jQuery tipTip plugin cross browser</title><description>&lt;p&gt;&lt;a title="jQuery tipTip plugin" target="_blank" href="http://code.drewwilson.com/entry/tiptip-jquery-plugin"&gt;jQuery tipTip is a Drew Wilson&amp;#8217;s plugin&lt;/a&gt; that I love and I use it in 90% of my projects. But because I use firefox, I found a small design problem in Tooltip. The background color is not the same, look at the differences:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lkgs4hvqLA1qbyphe.png"/&gt;&lt;/p&gt;
&lt;p&gt;You can see that the -webkit- browsers render the tooltip with a light gradient in contrast  with firefox that hasn&amp;#8217;t got gradient background. &lt;br/&gt;&lt;strong&gt;How to solve this problem?&lt;!-- more --&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Just open the tipTip css file and find the &lt;em&gt;#tiptip_content&lt;/em&gt; selector and add this two attributes under &lt;em&gt;-webkit-gradient- property&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));&lt;br/&gt;&lt;strong&gt;background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .2), transparent);&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;background-image: linear-gradient(top, rgba(255, 255, 255, .2), transparent);&lt;/strong&gt;&lt;/blockquote&gt;
&lt;p&gt;That&amp;#8217;s it your tipTip tooltip works correctly and with same color in all major browsers.&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/5067566283</link><guid>http://blog.andrewckor.com/post/5067566283</guid><pubDate>Sat, 30 Apr 2011 15:09:00 +0300</pubDate><category>articles</category></item><item><title>HTML5 and CSS3: Develop with Tommorow's Standards Today (Unboxing &amp; Review)</title><description>&lt;p&gt;I&amp;#8217;ve just come back home from easter holidays and i found in my mailbox a book that i had purchased 2 weeks ago from amazon. Which Book?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;HTML5 &amp;amp; CSS3&amp;#160;: Develop with Tomorrow&amp;#8217;s Standards Today&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.andrewckor.com/uploads/html5_css3_book.jpg"&gt;&lt;img src="http://media.tumblr.com/tumblr_lkdeacnWoA1qbyphe.jpg" alt="HTML5 and CSS3: Develop with Tommorow's Standards Today"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;With a first look the book is totally designer non-friendly!&lt;/strong&gt;&lt;br/&gt;It&amp;#8217;s a classic Pragmatic Programmers book, with black &amp;amp; white content and full of text pages. The content is a lot and i think that nobody read it all, but it&amp;#8217;s a great book for reference as I mentioned in my Amazon review!&lt;/p&gt;
&lt;p&gt;When you have stuck, you can navigate fast and easy through the chapters and find the solution to your problem. I especially like the fact that the book&amp;#8217;s title is totally TRUE, in every single example they give you a fallback code how to implement the example now days with current standards and technology.&lt;/p&gt;
&lt;p&gt;I bought this book with an amazon gift card and i don&amp;#8217;t know if i want to pay to buy it, but it&amp;#8217;s a good choice if you have $20 in your piggy money box.&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/5014226893</link><guid>http://blog.andrewckor.com/post/5014226893</guid><pubDate>Thu, 28 Apr 2011 19:14:00 +0300</pubDate><category>articles</category><category>reviews</category></item><item><title>Happy Easter Everyone!</title><description>&lt;p&gt;Easter is 2 days away, so in my free time after a lot of Angry Birds Seasons (Easter) gaming, I made the following poster!&lt;/p&gt;
&lt;p&gt;You can download it free, the bird is full vector so use it wherever you want!&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lk299dcx5w1qbyphe.png" alt="Angry Bird Poster"/&gt;&lt;/p&gt;
&lt;p&gt;Happy Easter &amp;amp; Holidays to everyone! Have Fun and play Angry Birds&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.andrewckor.com/download/angry_bird_easter.zip"&gt;Download it&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/4837896518</link><guid>http://blog.andrewckor.com/post/4837896518</guid><pubDate>Fri, 22 Apr 2011 18:50:00 +0300</pubDate><category>freebies</category></item><item><title>Using Image Sprites, the right way</title><description>&lt;p&gt;In this article, I will not taught you how to use image Sprites but how to use them correct!&lt;/p&gt;
&lt;p&gt;As you already know the right way to create a lightweight and fast sprite image is to put all small images and graphic parts in one image. A lot of designers (including me) stuff the sprite image a lot and they didn&amp;#8217;t leave whitespace between images, this is good if you see your website from a pc.&lt;/p&gt;
&lt;p&gt;But have you ever see your (extra stuffed sprite image) website from a mobile device like iPad or iPhone? If you don&amp;#8217;t, then in the following images you will realize that the method mentioned above is completely wrong!&lt;!-- more --&gt;&lt;/p&gt;
&lt;h3&gt;Let&amp;#8217;s see some famous websites from my iPad:&lt;/h3&gt;
&lt;h4&gt;&lt;a href="http://www.mediatemple.net"&gt;www.mediatemple.net&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://andrewckor.com/uploads/media_temple.jpg"&gt;&lt;img src="http://media.tumblr.com/tumblr_ljps0hyrPh1qbyphe.jpg"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;&lt;a href="http://www.dmdthebook.com"&gt;www.dmdthebook.com&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://andrewckor.com/uploads/ideabook.jpg"&gt;&lt;img src="http://media.tumblr.com/tumblr_ljps49kFgH1qbyphe.jpg"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;&lt;a href="http://www.fancybox.net"&gt;www.fancybox.net&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://andrewckor.com/uploads/fancybox.jpg"&gt;&lt;img src="http://media.tumblr.com/tumblr_ljps64hlVB1qbyphe.jpg"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So, can you see those &amp;#8220;1 pixel&amp;#8221; lines? That&amp;#8217;s the problem! Mobile devices, because of scaling effect that doing to achieve the best presentation of a web page, they can&amp;#8217;t render the absolute dimensions of an element. If your images inside the sprite image are too close you will have that ugly &amp;#8220;1 pixel&amp;#8221; line.&lt;/p&gt;
&lt;h3&gt;The solution&lt;/h3&gt;
&lt;p&gt;Yes of course there is a really easy solution; place your images in such a way that the minimum distance between them are 1-2 pixels, like the sprite image below:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_ljpsny8l2B1qbyphe.jpg"/&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#8217;s it, hope you guys enjoyed this article!&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/4642747382</link><guid>http://blog.andrewckor.com/post/4642747382</guid><pubDate>Sat, 16 Apr 2011 01:26:00 +0300</pubDate><category>articles</category></item><item><title>20 Free Web 2.0 Gradients</title><description>&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_ljn4d1CKzz1qbyphe.png" alt="20 Free Web2.0 Gradients"/&gt;&lt;/p&gt;

&lt;p&gt;This is my real first post and i would like to share with you this gradient pack! It&amp;#8217;s totally free to download it and use it.&lt;/p&gt;

&lt;p&gt;Its appropriate to speed up your productivity and and you can use it for buttons background or what you want.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.andrewckor.com/download/20-Web-2.0-Gradients.zip" class="download_button"&gt;Download&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/4605077281</link><guid>http://blog.andrewckor.com/post/4605077281</guid><pubDate>Thu, 14 Apr 2011 14:52:00 +0300</pubDate><category>freebies</category></item><item><title>Hello world!</title><description>&lt;p&gt;Hello World from my new blog!&lt;/p&gt;

&lt;p&gt;This is my first post and i let you know that in future I will post a lot of simple and useful tutorials &amp;amp; freebies, to make your life easier and your work faster!&lt;/p&gt;

&lt;p&gt;So keep in touch&amp;#8230;&lt;br/&gt;
Goodbye&lt;/p&gt;</description><link>http://blog.andrewckor.com/post/4558139215</link><guid>http://blog.andrewckor.com/post/4558139215</guid><pubDate>Tue, 12 Apr 2011 22:13:00 +0300</pubDate><category>article</category></item></channel></rss>

