Fixing the Python Virtual Environments broken by upgrading to Ubuntu 24.04 (Noble Numbat).| The Cloistered Monkey
Updating Hugo is hard. Here's what I did to help the upgrade process.| Chris Short
hot-swapping-state-machines Posted on Feb 21, 2023 An experiment in implementing remote hot code swapping, or dynamic code upgrade, for state machines. Background In Erlang it’s possible to seamlessly hot swap the code on a running process. Consider the following gen_server implementation of a counter which can be incremented and have its current count value retrieved: -module(counter).-version("1").-export([start_link/0,incr/0,count/0]).-behavior(gen_server).-export([init/1,handle_call/3,h...| Stevan's notes
If you’re suffering from error messages like the one above after upgrading to Mojave, welcome to macOS’s new “User Data Protections”. In this post we’ll explain what they are and how to deal w…| applehelpwriter.com