109,033 words of 102 blog posts, in picture form:
And the 39,803 words in 379 comments:
Safari’s only on there because one article got slashdotted.
And finally, my 1,211 tweets, comprising 23,853 words.
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.
<?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);
}
<?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." ";
Leave a Reply