Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:
hex codes, color chart, color codes
JQuery color picker plugin for selecting hex color code values. It can also be used to convert between HSL, HSV, RGB, Hex color code for the color you chose. It is also used for generating matching color schemes which makes it easy for you to select colors.




You can get this tool from here2013, By: Seo Master
Seo Master present to you: Author PhotoBy Lode Vandevenne, Software Engineer, Compression Team

Cross-posted with the Google Open Source Blog

The Zopfli Compression Algorithm is a new open sourced general purpose data compression library that got its name from a Swiss bread recipe. It is an implementation of the Deflate compression algorithm that creates a smaller output size compared to previous techniques. The smaller compressed size allows for better space utilization, faster data transmission, and lower web page load latencies. Furthermore, the smaller compressed size has additional benefits in mobile use, such as lower data transfer fees and reduced battery use. The higher data density is achieved by using more exhaustive compression techniques, which make the compression a lot slower, but do not affect the decompression speed. The exhaustive method is based on iterating entropy modeling and a shortest path search algorithm to find a low bit cost path through the graph of all possible deflate representations.
Zopfli

The output generated by Zopfli is typically 3–8% smaller compared to zlib at maximum compression, and we believe that Zopfli represents the state of the art in Deflate-compatible compression. Zopfli is written in C for portability. It is a compression-only library; existing software can decompress the data. Zopfli is bit-stream compatible with compression used in gzip, Zip, PNG, HTTP requests, and others.

Due to the amount of CPU time required — 2 to 3 orders of magnitude more than zlib at maximum quality — Zopfli is best suited for applications where data is compressed once and sent over a network many times, for example, static content for the web. By open sourcing Zopfli, thus allowing webmasters to better optimize the size of frequently accessed static content, we hope to make the Internet a bit faster for all of us.


Lode Vandevenne is a software engineer based in Zürich. He has a special interest in compression algorithms, and implemented Zopfli as his 20% time activity.

Posted by Scott Knaster, Editor
2013, By: Seo Master
Seo Master present to you:
google plus page badge
I had previously posted about importance of creating a Google plus fan page and show you to make one for your blog. In this tutorial i will teach you to add Google+ fan page Badge to your blogger blog. This badge is similar to twitter follow button or facebook like box as it allows your blog visitors to easily +1 your fan page. just creating a fan page is not enough you need to connect your blog with your page in order to get more +1 which will eventually results in more traffic. Just follow this simple tutorial and your will be good to go.

Making Google+ Fan Page

If you already have or created a google+ fan page then you skip directly to the next part on adding google+ badge to your blog. But if you don't have google+ page then check out tutorial given below and come back here.

Adding Google+ Fan Page Badge To Blogger Blog.

1. Go to blogger Dashboard > Template and click on Edit Html.
2. Then search for </head> and paste the code give below just above it and save it.
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
3. After adding the plusone.js script, we will be adding google+ badge on your blog.
4. Then go back to blogger dashboard > Layout and click on Add Gadget.
5. Now select Html/Javascript and paste below code into it.
<!-- Google +1 script -->
<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>
<!-- Link blog to Google+ page -->
<a style='display: block; height: 0;' href="https://plus.google.com/105355418052087265851" rel="publisher">&nbsp;</a>
<!-- Google +1 Page badge -->
<g:plus href="https://plus.google.com/105355418052087265851" height="131" width="300" theme="light"></g:plus>
  • Replace the url of my Google+ Page with yours  
  • Change light to dark if you want widget to be black.
  • You may also change it height and width to change the style of badge as show in below image. Change height and width according to the badge you want.
google+ badge for blog
Above image show just few badge style. There are even more height and width settings to change the badge look. In order to know more about this settings then check out article on google devloper page by clicking on link given below.

Any problem?

If you got any problem or have any question or suggestion related to this tutorial or our blog in general then leave a comment below i will be glad to help you out. Keed Blogging!

2013, By: Seo Master
Powered by Blogger.