<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Got stuck; Solved; Sharing...</title>
  <id>http://bugfixer.endel.me</id>
  <updated>2011-04-19T00:00:00Z</updated>
  <author>
    <name>Endel Dreyer</name>
  </author>
  <entry>
    <title>CommandT vs CtrlP</title>
    <link href="http://bugfixer.endel.me/2012/05/14/commandt-vs-ctrlp/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2012/05/14/commandt-vs-ctrlp/</id>
    <published>2012-05-14T00:00:00Z</published>
    <updated>2012-05-14T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;For almost a year, I was been using &lt;a href="https://github.com/wincent/Command-T"&gt;Command-T&lt;/a&gt;
plugin with hapiness. It&amp;rsquo;s a good plugin, but when your project starts to grow, your files&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;For almost a year, I was been using &lt;a href="https://github.com/wincent/Command-T"&gt;Command-T&lt;/a&gt;
plugin with hapiness. It&amp;rsquo;s a good plugin, but when your project starts to grow, your files
will also, naturally. And the problem begins. The first load of
Command-T reached 10 seconds, so I thought that it&amp;rsquo;s time to move.&lt;/p&gt;

&lt;p&gt;So I found &lt;a href="https://github.com/kien/ctrlp.vim"&gt;CtrlP&lt;/a&gt;, which promises
to do the same job. And the speed problems was been solved. Really.
Even VIM boot time becames much faster.&lt;/p&gt;

&lt;p&gt;The main difference between these plugins is that Command-T was written
in C, exposed via Ruby to VIM, by ruby bindings. On the other hand we
have a full vimscript plugin. No extra binding.&lt;/p&gt;

&lt;p&gt;For both plugins I&amp;rsquo;ve wrote a extension for finding and selecting a
filetype to be set using &lt;strong&gt;setfiletype&lt;/strong&gt;. For Command-T,
&lt;a href="https://github.com/wincent/Command-T/pull/38"&gt;I&amp;rsquo;ve sent a pull-request&lt;/a&gt;,
but it seems that the owner isn&amp;rsquo;t much interested in it.&lt;/p&gt;

&lt;p&gt;For CtrlP, &lt;a href="https://github.com/endel/ctrlp-filetype.vim"&gt;I&amp;rsquo;ve wrote a standalone plugin&lt;/a&gt;,
you can just install it using pathogen.&lt;/p&gt;

&lt;p&gt;You can check out &lt;a href="http://github.com/endel/.vim"&gt;my entire VIM configuration here&lt;/a&gt;.
Enjoy!&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Use Ruby on Google Code Jam</title>
    <link href="http://bugfixer.endel.me/2012/04/07/use-ruby-on-google-code-jam/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2012/04/07/use-ruby-on-google-code-jam/</id>
    <published>2012-04-07T00:00:00Z</published>
    <updated>2012-04-07T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;Google Code Jam is an international programming competition that happens every year, since it was released, in 2003.&lt;/p&gt;

&lt;p&gt;Programmers must read the problem, and write the algorithm to solve it, using the given input file&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Google Code Jam is an international programming competition that happens every year, since it was released, in 2003.&lt;/p&gt;

&lt;p&gt;Programmers must read the problem, and write the algorithm to solve it, using the given input file.&lt;/p&gt;

&lt;p&gt;So let&amp;rsquo;s take a look on a problem given on Qualification Round Africa 2010.&lt;/p&gt;

&lt;h2&gt;Problem: Reverse Words&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Problem&lt;/em&gt;:
Given a list of space separated words, reverse the order of the words. Each line of text contains &lt;em&gt;L&lt;/em&gt; letters and &lt;em&gt;W&lt;/em&gt; words. A line will only consist of letters and space characters. There will be exactly one space character between each pair of consecutive words.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Input&lt;/em&gt;:
The first line of input gives the number of cases, &lt;em&gt;N&lt;/em&gt;.
&lt;em&gt;N&lt;/em&gt; test cases follow. For each test case there will a line of letters and space characters indicating a list of space separated words. Spaces will not appear at the start or end of a line.&lt;/p&gt;

&lt;p&gt;Sample input:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;3
this is a test
foobar
all your base
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Sample output:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Case #1: test a is this
Case #2: foobar
Case #3: base your all
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Let&amp;rsquo;s solve it!&lt;/h2&gt;

&lt;p&gt;Every problem you&amp;rsquo;ll have to read the input file, and write the same output file format. So you&amp;rsquo;ll copy and paste! Not!&lt;/p&gt;

&lt;p&gt;The inputs are easy to parse, but &lt;a href="https://github.com/endel/googlecodejam"&gt;googlecodejam&lt;/a&gt; make it even easier. The same for outputs.&lt;/p&gt;

&lt;p&gt;Each input line must be solved with the same algorithm. It&amp;rsquo;s exactly what this gem expects you to do.&lt;/p&gt;

&lt;p&gt;To solve the &amp;ldquo;reverse words&amp;rdquo; problem, you need just to create a class with a method called &amp;lsquo;run&amp;rsquo;, accepting a String as argument.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# reverse_words.rb
class ReverseWords
  def run(line)
    line.split(' ').reverse.join(' ')
  end
end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Having the input file (.in) and the source file (.rb), you can now generate the output, by running:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;googlecodejam -s reverse_words.rb  -i B-small-practice.in
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;So you&amp;rsquo;ll see the following output:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Running...
Output written in: "B-small-practice.out"
Finished in 0.000712ms.
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And that&amp;rsquo;s all! Have a nice hack'in!&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Fancy search box using Bootstrap 2.0</title>
    <link href="http://bugfixer.endel.me/2012/02/16/fancy-search-box-using-bootstrap-20/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2012/02/16/fancy-search-box-using-bootstrap-20/</id>
    <published>2012-02-16T00:00:00Z</published>
    <updated>2012-02-16T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;&lt;a href="http://github.com/twitter/bootstrap"&gt;Bootstrap&lt;/a&gt; is awesome. I really enjoy using it.&lt;/p&gt;

&lt;p&gt;In the links below I demonstrate a live example of the following simple search box with embedded button:&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;&lt;a href="http://github.com/twitter/bootstrap"&gt;Bootstrap&lt;/a&gt; is awesome. I really enjoy using it.&lt;/p&gt;

&lt;p&gt;In the links below I demonstrate a live example of the following simple search box with embedded button:&lt;/p&gt;

&lt;p&gt;&lt;img src="/images/posts/2012-02-16/fancy-searchbox.png" title="Fancy search box with Bootstrap" alt="Fancy search box with Bootstrap" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://jsfiddle.net/endel/5wbuG/2/"&gt;View source&lt;/a&gt; for Bootstrap 2.0.2&lt;/p&gt;

&lt;p&gt;&lt;a href="http://jsfiddle.net/endel/MCLSC/1/"&gt;View source&lt;/a&gt; for Bootstrap 2.0.&lt;/p&gt;

&lt;p&gt;The best part is that Bootstrap is so easy to customize. You can make it larger if you want to.&lt;/p&gt;

&lt;p&gt;Hope you liked it!&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Create your custom social summary in seconds</title>
    <link href="http://bugfixer.endel.me/2011/10/12/create-your-custom-social-summary-in-seconds/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/10/12/create-your-custom-social-summary-in-seconds/</id>
    <published>2011-10-12T00:00:00Z</published>
    <updated>2011-10-12T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;&lt;a href="http://github.com/endel/socialoud"&gt;Socialoud&lt;/a&gt; is a ruby gem created to allow easy setup for your custom social summary, that updates automatically, keeping your custom look and feel, because we are free, isn&amp;rsquo;t it?&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;&lt;a href="http://github.com/endel/socialoud"&gt;Socialoud&lt;/a&gt; is a ruby gem created to allow easy setup for your custom social summary, that updates automatically, keeping your custom look and feel, because we are free, isn&amp;rsquo;t it?&lt;/p&gt;

&lt;h2&gt;Deploy it in seconds&lt;/h2&gt;

&lt;p&gt;Take a look how simple is to setup your custom social summary, &lt;a href="http://endel.me/"&gt;like this live example&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;On your own server&lt;/h3&gt;

&lt;p&gt;You just need to clone the socialoud-default repository at Github.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ git clone git://github.com/endel/socialoud-default.git
$ bundle install
$ thin start
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And it&amp;rsquo;s done. Go to http://localhost:3000 and it will be there.
You should now customize your configuration file, HTML and CSS.&lt;/p&gt;

&lt;p&gt;Configuration file is simple like this:&lt;/p&gt;

&lt;script src="https://gist.github.com/1286082.js"&gt;&lt;/script&gt;


&lt;h3&gt;Deploy on heroku&lt;/h3&gt;

&lt;p&gt;On the same directory that you cloned the default app repository, do the following.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ heroku create my-awesome-social-summary
$ git remote add heroku git@heroku.com:my-awesome-social-summary.git
$ git add .
$ git push heroku master
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The default app already caches the single-page result for a while. It is extremely recommended that you keep caching, or just change the interval, because of heavy requests for social services.&lt;/p&gt;

&lt;p&gt;Hope you enjoy.
Please leave a comment if you have any suggestion or opinion.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Ensure UTF-8 string from any source with Ruby</title>
    <link href="http://bugfixer.endel.me/2011/08/01/ensure-utf-8-string-from-any-source-with-ruby/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/08/01/ensure-utf-8-string-from-any-source-with-ruby/</id>
    <published>2011-08-01T00:00:00Z</published>
    <updated>2011-08-01T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;Sometimes, when you need to download an html web page, it can be interpreted as a wrong encoding, causing errors with accents, and special characters&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Sometimes, when you need to download an html web page, it can be interpreted as a wrong encoding, causing errors with accents, and special characters.&lt;/p&gt;

&lt;p&gt;You can avoid those problems converting to UTF-8. As follows:&lt;/p&gt;

&lt;script src="https://gist.github.com/1119549.js?file=http_ensure_utf8.rb"&gt;&lt;/script&gt;


&lt;p&gt;And just calling ensure_utf8 function:&lt;/p&gt;

&lt;script src="https://gist.github.com/1119549.js?file=ensure_utf8.rb"&gt;&lt;/script&gt;


&lt;p&gt;Hope it helps.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Tip - Omit auto-increment values using mysqldump</title>
    <link href="http://bugfixer.endel.me/2011/06/25/tip---omit-auto-increment-values-using-mysqldump/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/06/25/tip---omit-auto-increment-values-using-mysqldump/</id>
    <published>2011-06-25T00:00:00Z</published>
    <updated>2011-06-25T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;If you want to export &lt;strong&gt;just the records&lt;/strong&gt;, omiting the auto-increment id column, you should do this trick:&lt;/p&gt;

&lt;script src="https://gist.github.com/1047064.js?file=mysqldump-omit-auto-increment.sh"&gt;&lt;/script&gt;

</summary>
    <content type="html">&lt;p&gt;If you want to export &lt;strong&gt;just the records&lt;/strong&gt;, omiting the auto-increment id column, you should do this trick:&lt;/p&gt;

&lt;script src="https://gist.github.com/1047064.js?file=mysqldump-omit-auto-increment.sh"&gt;&lt;/script&gt;


&lt;p&gt;There is NO native way to do that only using mysqldump. So, enjoy.&lt;/p&gt;

&lt;p&gt;Note: For Mac OS X users, use &lt;strong&gt;sed -E&lt;/strong&gt; instead of &lt;strong&gt;sed -r&lt;/strong&gt;.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Auto-linking tweets in Ruby and Javascript</title>
    <link href="http://bugfixer.endel.me/2011/06/09/auto-linking-tweets-in-ruby-and-javascript/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/06/09/auto-linking-tweets-in-ruby-and-javascript/</id>
    <published>2011-06-09T00:00:00Z</published>
    <updated>2011-06-09T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;So, you are retrieving tweet messages, and want to build links for urls, mentions, and hashtags.
Using any programming language it will looks the same to do that. The point here is the regular expression used&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;So, you are retrieving tweet messages, and want to build links for urls, mentions, and hashtags.
Using any programming language it will looks the same to do that. The point here is the regular expression used.&lt;/p&gt;

&lt;p&gt;Ruby version:&lt;/p&gt;

&lt;script src="https://gist.github.com/1015892.js?file=auto_link.rb"&gt;&lt;/script&gt;


&lt;p&gt;JavaScript version:&lt;/p&gt;

&lt;script src="https://gist.github.com/1015918.js?file=auto_link.js"&gt;&lt;/script&gt;


&lt;p&gt;You can port it to the language you want to.
And that&amp;rsquo;s it, hope it helps.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Removing duplicated rows from a MySQL table</title>
    <link href="http://bugfixer.endel.me/2011/05/17/removing-duplicated-rows-from-a-mysql-table/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/05/17/removing-duplicated-rows-from-a-mysql-table/</id>
    <published>2011-05-17T00:00:00Z</published>
    <updated>2011-05-17T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;This tip is a simple query to remove duplicated entries from a MySQL table.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;DELETE FROM table1
USING  table1, 
       table1 as table2
WHERE  table2.id &amp;gt; table1.id
&lt;/code&gt;&lt;/pre&gt;
</summary>
    <content type="html">&lt;p&gt;This tip is a simple query to remove duplicated entries from a MySQL table.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;DELETE FROM table1
USING  table1, 
       table1 as table2
WHERE  table2.id &amp;gt; table1.id
AND    table2.unique_param = table1.unique_param
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here I&amp;rsquo;m using a virtual copy of &lt;em&gt;table1&lt;/em&gt; to check whether it has uniq_param&amp;rsquo;s after the first ocurrence of the &lt;em&gt;id&lt;/em&gt;, and then delete it.&lt;/p&gt;

&lt;p&gt;It will only works if you have a sequencial &amp;lsquo;id&amp;rsquo; column.
You can do a &lt;em&gt;select&lt;/em&gt; before really &lt;em&gt;deleting&lt;/em&gt; to check if it will do the proper thing.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Inspiring Web Navigations: Parallax And Scrolling</title>
    <link href="http://bugfixer.endel.me/2011/05/02/inspiring-web-navigations-parallax-and-scrolling/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/05/02/inspiring-web-navigations-parallax-and-scrolling/</id>
    <published>2011-05-02T00:00:00Z</published>
    <updated>2011-05-02T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;It&amp;rsquo;s just HTML5, Javascript and imagination. Well done.&lt;/p&gt;

&lt;p&gt;Take a look at these examples:&lt;/p&gt;

&lt;h2&gt;Hobo Lobo of Hamelin&lt;/h2&gt;

&lt;p&gt;A infantile storytelling website. Uses parallax and horizontal scrolling&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;It&amp;rsquo;s just HTML5, Javascript and imagination. Well done.&lt;/p&gt;

&lt;p&gt;Take a look at these examples:&lt;/p&gt;

&lt;h2&gt;Hobo Lobo of Hamelin&lt;/h2&gt;

&lt;p&gt;A infantile storytelling website. Uses parallax and horizontal scrolling.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://hobolobo.net" target="_blank"&gt;&lt;img src="/images/posts/2011-05-02/hobolobo.png" title="hobolobo.net" alt="hobolobo.net" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Ben The Body Guard&lt;/h2&gt;

&lt;p&gt;Creative hotsite for a &amp;ldquo;phone data protector&amp;rdquo;. Uses vertical scrolling. It looks even better on the iPhone.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://benthebodyguard.com" target="_blank"&gt;&lt;img src="/images/posts/2011-05-02/benthebodyguard.png" title="benthebodyguard.com" alt="benthebodyguard.com" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;20 Things I Learned About Browsers And The Web&lt;/h2&gt;

&lt;p&gt;Browse and animate pages like a real book, has a nice summary.
It was created by &lt;a href="http://twitter.com/hakimel"&gt;Hakim El Hattab&lt;/a&gt;, who has some nice &lt;a href="http://hakim.se/experiments"&gt;HTML5 and WebGL experiments&lt;/a&gt; on his website.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://20thingsilearned.com" target="_blank"&gt;&lt;img src="/images/posts/2011-05-02/20thingsilearned.png" title="20thingsilearned.com" alt="20thingsilearned.com" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Nike Better World&lt;/h2&gt;

&lt;p&gt;Another creative hotsite, created by Nike. Uses vertical scrolling and parallax effect.
Not so cool on the iPhone, but it still navigable.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://nikebetterworld.com" target="_blank"&gt;&lt;img src="/images/posts/2011-05-02/nike.png" title="nikebetterworld.com" alt="nikebetterworld.com" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Parallax give to the user a much immersive way to scroll the page. But it surely have to be well-designed.&lt;/p&gt;

&lt;p&gt;You can get started &lt;a href="http://inner.geek.nz/javascript/parallax/"&gt;from this example&lt;/a&gt;, made by Brett Jayolr. He uses CSS and pure Javascript to create a simple background parallax effect.&lt;/p&gt;

&lt;p&gt;Have a nice coding!&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Noise is good</title>
    <link href="http://bugfixer.endel.me/2011/04/25/noise-is-good/" rel="alternate"/>
    <id>http://bugfixer.endel.me/2011/04/25/noise-is-good/</id>
    <published>2011-04-25T00:00:00Z</published>
    <updated>2011-04-25T00:00:00Z</updated>
    <author>
      <name>Endel Dreyer</name>
    </author>
    <summary type="html">&lt;p&gt;Recently, I&amp;rsquo;ve noticed something cool when was surfing the web: noise-based backgrounds.&lt;/p&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/noise-pallete.png" title="Noise Pallete" alt="Noise pallete" /&gt;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Recently, I&amp;rsquo;ve noticed something cool when was surfing the web: noise-based backgrounds.&lt;/p&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/noise-pallete.png" title="Noise Pallete" alt="Noise pallete" /&gt;&lt;/p&gt;

&lt;h2&gt;Real examples&lt;/h2&gt;

&lt;p&gt;Surely most of this examples uses shadows and light effects, but the noise avoids a silly solid color.&lt;/p&gt;

&lt;h3&gt;Twitter&lt;/h3&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/twitter.png" title="Twitter" alt="Twitter" /&gt;
&lt;img src="/images/posts/2011-04-25-noise-is-good/twitter-noise.png" title="Twitter noise" alt="Twitter noise" /&gt;&lt;/p&gt;

&lt;h3&gt;Posterous&lt;/h3&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/posterous.png" title="Posterous" alt="Posterous" /&gt;
&lt;img src="/images/posts/2011-04-25-noise-is-good/posterous-noise.png" title="Posterous noise" alt="Posterous noise" /&gt;&lt;/p&gt;

&lt;h3&gt;Tumblr&lt;/h3&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/tumblr.png" title="Tumblr" alt="Tumblr" /&gt;
&lt;img src="/images/posts/2011-04-25-noise-is-good/tumblr-noise.png" title="Tumblr noise" alt="Tumblr noise" /&gt;&lt;/p&gt;

&lt;h3&gt;Instagram&lt;/h3&gt;

&lt;p&gt;&lt;img src="/images/posts/2011-04-25-noise-is-good/instagram.png" title="Instagram" alt="Instagram" /&gt;
&lt;img src="/images/posts/2011-04-25-noise-is-good/instagram-noise.png" title="Instagram noise" alt="Instagram noise" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So, the tip is:&lt;/strong&gt; if your background with solid color looks pretty unsightly, you can just use a noise, and voil&#224;! It can be so nicer right now.&lt;/p&gt;

&lt;p&gt;This blog has a noise-based background too, what did you think about it? :)&lt;/p&gt;
</content>
  </entry>
</feed>

