Further into Mastodon

Joining Mastodon in 2017 turned out to be a positive change for me. Twitter had been making me depressed and anxious, and I needed a way out. At that point Mastodon – an open source social network – was unfamiliar to me and seemed rough around the edges. But the people I found there were… Continue reading Further into Mastodon

Published
Categorized as mastodon

Backing away from GCP

I finally got a working prototype of my journal recommender project up and running; I just shared it with a few co-workers yesterday. However, it has been a bit of a journey to get here: I was only able to get the project finished by backing away from Google Cloud Platform. I won’t dwell on… Continue reading Backing away from GCP

Beginning again

The past few months have been humbling for me, programming-wise. I’ve struggled a lot with Google Cloud Platform, without much success. It’s been frustrating. It has also forced me to re-evaluate my progress as a programmer. The real issue has been that I failed at being a self-reliant problem solver. It’s one of the hallmarks… Continue reading Beginning again

Puzzles

Sometimes, it’s important to enjoy coding for it’s own sake. It can be fun to solve problems and bend your brain a bit. Work doesn’t always offer this. Sometimes work is, well, work. That’s why this weekend I’ve been spending time with checkio. Checkio is a programming puzzle site, where the only goal is to… Continue reading Puzzles

Published
Categorized as learning

The (much needed) back burner

Some technology projects really test my patience and stamina. Either they’re too advanced for me, or they use badly-documented technology that’s hard to work with. There is sometimes an upside to this frustration: it’s good for me to try things that are difficult or at the limits of my skill set. But it’s also nice… Continue reading The (much needed) back burner

There be dragons…

For a beginner trying to solve a programming problem, there is a lot of readily Googleable help. You can usually solve your problem with very clear, specific, and accessible instructions. Things are different a bit further down the programming path. As the problems become harder, the solutions become less obvious. For example, I now might… Continue reading There be dragons…

Published
Categorized as learning

Async

I started working with Python around version 3.3, which predates the addition of asynchronous features into the language’s standard library. Asynchronous programming in Python has come a long way since then; it is now a well-established feature of the language. I first wrestled with async on an Amtrak train, on my way home from the… Continue reading Async

Published
Categorized as async, python