Microblog

I’m thinking of doing GitHub Game Off again this year. Web game idea—an idle game where you control a money printer and the goal is to print more money in order to buy upgrades for your money printer.

Come to think of it, this game probably already exists (I mean other than the IRL “game”).

This UI is a hot mess:

Got hit with an annoying yellow alert screaming at me as well as an obnoxious subscription modal that has a lot of weird shit happening within.

For starters it’s extremely disruptive. The design is chaotic (evil). And what kind of pricing choice is this? I can choose $1.99 a month or, inexplicably, $290 a year. You have to click around and read the gray print to realize it’s a 3-month offer.

No way I’m paying for Bloomberg though because, among other reasons, The Big Hack.

I started using Craft toward the end of last week when a coworker shared it with me. After playing with it over the weekend I am very quickly becoming a superfan.

  • As a designer I'm impressed with the beautiful, snappy UI.
  • As a developer I'm impressed with the control over data and ability to export to many formats.
  • As a user with a pretty severe mobility impairment, I appreciate the first-class support for working in a mouse-oriented manner or keyboard-oriented manner, depending on which is easier in the moment (referring to the Mac version).

Two ideas I live by:

  • People are weird.
  • Everything is complicated.

I have been writing CSS for 15+ years but I only recently started using user styles via the Stylus browser extension. I don’t know why I haven’t done this sooner. It’s really an amazing perk of the web. Don’t like something about the way a website looks? Change it!

Playing Universe Sandbox inevitably ends with dropping Sagittarius A in the solar system just to see what happens. Spoiler: everything gets eaten.

I’m fascinated by this book, The Top 10 Games You Can Play in Your Head, By Yourself: Second Edition. Yes, this is a real book that you can actually purchase.

The original was 14 volumes published in the late 1980s and early 1990s by an author writing under the name J. Theophrastus Bartholomew. I don’t know how widely it was distributed originally, but at some point it went out of print. It was discovered at a yard sale in 2014 in Minnesota by Sam Gorski and D.F. Lovett. They were able to contact the original publisher to get a list of Bartholomew’s ten favorite games and the rights to an unpublished volume.

As far as I can tell, we don’t know the identity of the original author. But after reading this1, I’m salivating for more content from him. I heard that another book may be coming out. We’ll see.

The games themselves aren’t really games like you would imagine. They are more like creative prompts for you to imagine your own story. It’s an intriguing concept. I’ve struggled with it in the few attempts that I tried it (I’ve only tried Space), but I’m planning to try again because the concept is so fascinating to me.

If you know anyone who likes role-playing games, storytelling games, or who are just particularly imaginative, you might consider recommending this book to them.


  1. Because I have SMA, I am unable to handle a physical book. Unfortunately, the publishers decided not to offer an e-book version. There is an audiobook version available, however, so that's what I used. 

Sometimes I think to myself, “I wish Simplenote had [feature].” Then when I play around with a note app with lots of features I think, “Why can’t it be nice and simple like Simplenote?” Ugh… why am I like this?

I bought a computer that connects one computer to another computer. https://tinypilotkvm.com/

I’m essentially using this as an accessibility tool. It will let me operate other computers without having to install all of the software and hardware I need for accessibility.

There are two types of people:

  • People who acknowledge that Nacho Cheese is the best Doritos flavor
  • People who are wrong

I created a dummy async function (JS) to use when testing out ideas. I love to pop open CodeRunner and mess around with different patterns and syntax and having a ready-to-go async function available is really handy.

1function doingStuff(stuff = 'stuff', ms = 2000) {
2 return new Promise((resolve, reject) => {
3 setTimeout(() => resolve(stuff), ms);
4 });
5}

I set up my site’s WordPress theme to automatically strip all CSS styles on April 9th in celebration of CSS Naked Day.

The point of the silly exercise is to celebrate semantic HTML and web standards. The idea is that if your website’s HTML is well-written then your website should still be generally usable—even without CSS styling. I’m sure my site isn’t perfect, so let me know if you find anything completely broken.

I really dislike this trend of web services that are only available via mobile app (ie, don’t offer a web version). I’m not really able to access my phone easily so I’m all-in on desktop and web apps. I’m not saying companies shouldn’t go mobile app only. I’m just personally annoyed by it.

Whenever I want dark mode on a website that doesn’t have it, I use the Stylus extension to add this CSS, which works surprisingly well:

1html {
2 filter: invert(0.85) hue-rotate(180deg);
3}

Nova by Panic is so buttery smooth. Been using it for work (and play) for a few days. Fast as lightning. I hit a rough edge or two but no showstoppers.