--- layout: static title: "Contents" date: 2014-06-24 permalink: contents.html description: | Contents of the entire blog, in chronological order; the page is generated automatically and contains a complete list of all articles published in this blog keywords: - blog - contents - software development blog - yegor bugayenko blog - yegor256 blog contents - articles about software development - articles about programming exclude_from_search: true script: | function count_comments() { var total = 0; $('.comment_count').each( function() { var m = /(\d+) .*/.exec($(this).html()); if (m) { total += parseInt(m[1]); } } ); if (total == 0) { setTimeout(count_comments, 1000); } else { $('#total_comments').html( ' (' + total + ' comments total)' ); } } count_comments(); --- All tags (alphabetic order): {{ site.tags | tag_cloud }} Intensity of writing ({% wordcount %} words in the entire blog): {% figure /stats.svg 700 %} This is a full list of {{ site.posts.size }} blog posts published: {{ site.posts | tagged_list }}