Mar21
Essay

Word Cloud

109,033 words of 102 blog posts, in picture form:

Wordle II

And the 39,803 words in 379 comments:

Wordle of the Comments

Safari’s only on there because one article got slashdotted.

And finally, my 1,211 tweets, comprising 23,853 words.

Wordle of Twitter

More concentrated on current events. I get it out of my system over there so it doesn’t leak here onto the blog too much.

Make your own at wordle.net. And since pasting a feed only pulls the last 5 (or so) posts, here’s the code to generate the total text from WordPress which you can paste into Wordle.

All posts

<?php include('wp-load.php');
query_posts('posts_per_page=-1');
while (have_posts()) {
    the_post();
    $content = html_entity_decode(strip_tags(get_the_title()." ".get_the_content()." "));
    echo preg_replace("/[^A-Za-z ]/"," ",$content);
}

Comments

<?php include('wp-load.php');
$q="SELECT comment_content FROM wp_comments WHERE comment_approved=1";
$r = $wpdb->get_results($q);
foreach ($r as $c) echo $c->comment_content." ";

Topics

Meta

SHARE

Facebook Twitter Reddit StumbleUpon

Leave a Reply

More Content