Sunday, March 17, 2024

Something to Have Said


It’s long been a tradition on this blog that, when I’m having trouble coming up with a regular post, I take the opportunity to reflect on the blog thus far.  There are, in fact, 5 previous posts in this informal “series,” which you can find links to on the informals listing page (search for “Nothing to Say”).  Some of those posts were because I truly had nothing to say, some were because I had too many ideas but none of them were working for me, and some of them were because I ran out of time for a post and wanted to buy myself some extra time to finish up properly.

This is a bit like that last one: I did have a post all planned out, and I thought it would be fairly quick to write, but, once I started looking into it, it seemed like it was going to take more time than I could properly devote to it this weekend.  But there was also a bit more going on this time around, because I discovered a number of problems that needed attention.  None of them were particularly difficult to solve, but they added up.  And all these problems centered around blog maintenance.

See, writing a blog is about more than just the actual writing of the words, in the same way that making YouTube videos is about more than just standing in front of your webcam and talking.  There’s also editing, and the technical process of getting the work published on the web site, and, occasionally, going back and correcting mistakes.

In this particular case, I found of number of small typos in old posts while rereading them to get into the necessary flow state.  I also noticed a post or two that should have been added to a series listing page but had gotten overlooked.  And, even after I decided to turn this week’s post into a “nothing to say” post, I found still more issues.  See, in order to get a proper word count for blog posts, I’ve separated out my rough draft posts from the published posts, and I’ve written a little Perl script to count the actual words while ignoring the non-content bits.1  So, the first thing I discovered is that there were a bunch of posts which I had neglected to move from my “drafts” folder to my “published” one.  Then I discovered that my wrapper script which ran the word counting script on “all” my blog posts had neglected to consider my ongoing novel, whose chapters and subchapters were indeed blog posts.2  Then, which I had fixed all that, I ran it and it said it couldn’t find the word counting script.  So I had to track that down and fix that too.3

And part of the reason for all this required maintenance is that I only do those sorts of cleanup tasks when I need to for one of these “nothing to say” posts ... and I just haven’t done one of those in a while.  The first such post was a year into the blog, and the second was a year later; after that, they fell into a fairly steady biannual pattern.  And, if I had kept to that schedule (loose as it was), this post should have landed in ... let’s see ... 2020.

Right in the middle of the pandemic.

So ... yeah.  That didn’t happen.

And now it’s been six years since the last time I counted up how much time and effort I’ve put into this blog, which means it’s been 14 years in total that I’ve been doing it.  Which is ... a lot.  In that time, the landscape of the Internet has changed significantly.  Text information has largely been replaced by videos; some opine that this is a sign that people don’t like to read any more, but I say it’s the nature of Internet commerce.  If you want to get paid for Internet content, good luck trying to make a buck writing posts of the length I typically do on this blog.  But it’s easy to monetize video content on YouTube, as long as it’s of a certain length.  Which is why the one sentence answer to a “how do I ...?” question is now a 2½ minute video which you watch at 2x speed because you’re just trying to GET TO THE FUCKING ANSWER: no I’m not going to like and subscribe and hit the bell icon, I just need to know how to reset my fucking garbage disposal!!!

So people don’t much write blogs any more.  Hell, I’ve even read that the entire concept of blogging is now considered passé.  Enh.  That’s okay: I’m old.  Although the truth of the matter is that this really has nothing to do with old vs young—it’s just that different brains work in different ways.  Some brains need to see and hear a real person explain a thing to them.  Some people prefer to read words.  My brain is a word brain; videos are ... I dunno, meh, I suppose?  I enjoy watching videos for entertainment, but not so much for information.  Unless they’re edutainment or somesuch.  But whatever.  The point is, I enjoy reading, and I enjoy writing, and I’m going to keep on writing this blog, and I don’t much care if it’s considered old-fashioned.  Or if no one reads it, even.  I even tell you not to read it right there in the blog title.  So obviously I just don’t give a shit.  I’m a rebel like that.

So, where are we in terms of stats?  Well, we’re about a week away from being exactly 14 years into it; this week is 729 weeks from the first post,4 which means that this should be the 730th post (because, again, you have to count both endpoints, ’cause there’s a post at either end).  Whereas my Blogger interface tells me I have 725 posts, not counting this one, so I’m actually 4 short.  Still, only 4 posts missed in 14 years—that’s not a bad track record.

I also used to consider how many were interstitial and partial and all that.  But that’s less relevant with the new blog schedule (which came into existence right before the last “nothing to say” post), since now every other post will be one of those two things.  Still, for completeness, I’ll run the numbers: of the 725 posts, 102 are interstitial (that’s 14%), and 100 are partial (basically the same percentage).  Which is not so bad.  But how about the big one? how many words are we talking?

Well, discounting all the quotes and footnotes and all that, the grand total comes out to 798,583 words.  So nearly 800K words in 14 years: 57K words per year, or 1100 words per week on average, even with the interstitials and partials.  That’s not too shoddy, if I do say so myself.  Nothing to sneeze at, I don’t think.

And whither hence?  I mean, I said years ago (in the aforementioned blog schedule post, in fact) that I would like to break this blog into several sub-blogs, each one aimed more specifically at its target audience.  And thus far I’ve totally failed to make good on that.  I still want to, of course, although blogging platforms to make that easier are getting harder to come by as the popularity of blogging declines.  But I have some thoughts.  Maybe ChatGPT (or other AI competitor) can help me figure out how to get going on that.  I have hopes.  And, occasionally, dreams.

But I see from my handy-dandy word counter that this “partial” post has once again grown into a full post.  Which I can’t really complain about, so I shan’t.  I’ll just say that I’m looking forward to ... what, another 14 years doing this?  I’m not sure that makes sense, at the pace technology is advancing these days.  But another 14 years of putting out something for you not to read, that’s for sure.



__________

1 I outline the exact specs of this script in the most recent nothing to say post, if you really care.

2 This undoubtedly means that my last official stats were off too.  But I’m not going to bother going back to correct that.

3 As it turns out, I had just renamed it since the last time I ran it from the wrapper script.  No biggie.  But it took much longer to figure out than it did to fix.

4 You may recall that I used the Perl date module which I wrote to work that out last time, and I lamented that it really ought to be simpler.  Well, now it is: perl -MDate::Easy -E 'say ((today - date("3/28/2010")) / 7)' prints “729.”