I opened a file where I had made some notes for a possible post. It had a link to something I might comment on. I clicked the link. Not only was the post gone, but the whole site; the whole Substack.

I created the file in March.

Own your stuff. Use your own site.

Blog Stats 2020

As convention dictates, a summary of 2020’s posts. 173 in total, which is up on 2019’s total of 130. No SQL needed, unlike previous years. I just have to look at the archive pages.

Month Posts
Jan 18
Feb 13
Mar 14
Apr 14
May 19
Jun 15
Jul 18
Aug 18
Sep 6
Oct 9
Nov 18
Dec 11

2018’s post; and 2017’s

Site Update

As you might notice if you look around here, I’ve made some changes to the layout and presentation of the site. Nothing very dramatic, but the header and sidebar look a bit different.

I’m open to – and seeking – constructive criticism. How does it look? Is anything misaligned, or confusingly laid out, or hard to find?

Let me know in the comments, or on Twitter.

Returning Blogs

Here’s a reason (another reason) why feed readers are great: Tom Coates of PlasticBag.org has written his first post in seven years. There’s no reason to unsubscribe from blogs that haven’t posted for a while – no reason even to notice that fact normally – so up it pops in NetNewsWire1 today.

The post itself is good – a bit meta (entirely meta) – but there’s nothing wrong with that.

I keep seeing suggestions that blogging is undergoing a renaissance, and I think it might be true. Of course, lots of us never went away, either as readers or writers. But it’s good to welcome Tom back.


  1. Other feed readers are available. ↩︎

2019 in Bloggery

Only 130 posts in 2019. That’s disappointing after 261 and 163 in the previous two years.

Month Posts
Jan 15
Feb 7
Mar 22
Apr 8
May 10
Jun 4
Jul 6
Aug 5
Sep 11
Oct 7
Nov 11
Dec 24

Blogging the Bitface, 2018 Style

Like last year, I present the figures for my blogging in 2018. 163 posts in total, counting this one, broken up as follows.

Month Posts
Jan 20
Feb 13
Mar 11
Apr 15
May 23
Jun 16
Jul 11
Aug 8
Sep 9
Oct 13
Nov 12
Dec 12

The formatting has improved, as I mentioned last time. I’m not sure what I did that made it better. The SQL is the same as before, with the obvious year change.

100 posts less1 than last year, but not bad. I’ll try for something closer to daily in 2019.


  1. Some would say that should be “fewer,” but it turns out that was never a real rule, just some guy’s choice that got locked into style guides. 

I’m not at all sure about this new “Gutenberg” editor they’re adding to WordPress. I’ve installed the plugin version to try it out. Gutenberg is a change to the web-based editor in the WordPress dashboard, not a separate app. I typed up my previous post in MarsEdit, as is my wont, and uploaded it. The Gutenberg plugin imported it nicely and displayed everything as you’d expect. But it turned all my Markdown into HTML.

That’s not what I want, and it’s not how most Markdown-processing plugins — notably WordPress’s own Jetpack — handle Markdown. Instead they keep the source document as Markdown and only convert it to HTML when the page is requested. That’s what using a dynamic CMS means, after all.

It appears that you can get Gutenberg to keep the Markdown as it is, if you type it into what they call a Code Block. So I’ll have to hope that [@danielpunkass](https://micro.blog/danielpunkass) updates MarsEdit to send posts to that kind of block once Gutenberg is the default. Assuming the WordPress API lets you do that, of course.

2017 in Bitface Blogging

Well hello. It’s been a while. That daily posting thing didn’t work too well in the latter part of the year, and was particularly weak in the last couple of weeks. Weak weeks.

In fact I posted 261 times in 2017. It’s surprisingly hard to find that kind of thing out from Wordpress itself. I had to dig into the database and run some simple SQL:

select count(*) from devilgate_posts
  where  post_status = 'publish'
  and post_type = 'post'
  and post_date_gmt like '2017%';

261 is 72% of the days of the year, which is not too bad. Certainly the most posts in any year out of the past fifteen(!)

Here’s the monthly breakdown:

Month Posts
Jan 32
Feb 33
Mar 33
Apr 18
May 27
Jun 15
Jul 21
Aug 17
Sep 18
Oct 18
Nov 23
Dec 6

A strong start, tapering off in the middle, with a rally in November and then a complete collapse in December. I suspect the last is from a combination of post-nano slump and the festive season.

If you’re interested, here’s the SQL that got me that table:

select
  date_format(post_date_gmt, '%b') as Month,
  count(*) as Posts
  from devilgate_posts
  where post_status = 'publish'
  and post_type = 'post'
  and post_date_gmt like '2017%'
  group by date_format(post_date_gmt, '%m');

As to this year, we’ll see how it goes. I hope at least to keep the frequency reasonably high. And improve both code and table formatting.

Micro.blog iOS Going Universal | Manton Reece

I’d like to be able to use Micro.blog from the iPad — well, I can, but it’s iPhone sized scaled up (or tiny in the middle of the screen) and doesn’t rotate to landscape, so I can’t use it with the keyboard. Manton tells us he’s going to fix all that, which will be great.