I recently hosted a “Great Apple Tasting Experiment”, where some friends and I blind tasted 27 different apple cultivars.
Luckily I live near Berkely Bowl, and incredible grocery story with even more than this number of unique apples. Special thanks to the cashier who checked us out.
Here is the list were were able to buy in this November of 2023:
Juici Braeburn Rave Ambrosia Beni Shogun Fugi Red Delicious Smitten Granny Smith Ambrosia Pink Lady Jazz Opal Autumn Glory Gala Lady Golden Delicious Sweetango Lady Alice Apple Jonagold Gold Rush Hunnyz Envy Rome Beauty Organic Sweetie Honey Crisp Sugarbee Crimson Gold We all tried and rated each of these apples, without knowing their name.
Here is a sampling of craft projects for Halloween 2023 that I made with wife help. Click on a picture to see a full size image. Sorry for the terrible image quality.
Transmutation Circle Materials:
Charcoal chalk LED Candles Magnet Wire Wemos D1 controller running WLED Straight edge, vinyl stencils, wire/compass. It is kinda surreal to see this in real life. This thing is big enough to create a human from raw elements!
Sometimes it is uself to have an EC2 Machine Image (AMI) change its behavior depending on its runtime environment. This adds complexity to the AMI, but reduces the complexity of having to maintain N AMIs with N behaviors.
One of the hardest things about an AMI to change at runtime is the Linux kernel. By the time you are acutally running, the Linux kernel is there, and it is too late to upgrade or change.
Python Manhole When working with a complex python daemon, I really appreciated the python-manhole library. This tool allows you to listen on a Unix domain socket, and serve a REPL, get stack traces, and more.
From the README, it is as simple as this:
Install it:
pip install manhole Add it to your python code somewhere in the start sequence:
import manhole ... def main(): manhole.install() # this will start the daemon thread .
Sometimes I hear the phrase “Stock Kubernetes” and wonder exactly what one means when they say that. Often it is in contrast to a “Managed” kubernetes (k8s) offering, for example (just the big three):
Amazon EKS Google GKE Azure AKS But these are all on cloud providers. When someone says “Stock Kubernetes”, they may mean they want to run k8s on a cloud provider, but not use the cloud provider’s service.
Prompt engineering is an the emerging practice of talking to an AI to get a desired outcome.
As a software engineer, I would like to make the case that we were already doing this, just our “AIs” were extremely primitive and error-prone.
ChatGPT and Copilot are getting very close (in March 2023) to being less error-prone than I am.
I am a Natural Intelligence with a Finite Prompt I’m 39 and this is deep, but my “prompt” is all I can remember from the last couple of decades of my professional experience.
Back in 2016 I did a comparison of text-based browser here.
Back then this was the state of the art (elinks):
This is speaking generously, with a particularly text-friendly example!
Now, in 2023, there are two new text-based browsers that are incredible. Because they are backed by normal browser engines, we no longer have to be impressed by features like “color support”!
Browsh Browsh is a modern text browser backed by the Firefox (gecko) rendering engine.
I’m trying out the 2018 Palm PVG100 as my daily driver cell phone.
Sure, it is ancient by smartphone standards, but it makes me feel like I’m in the future whenever I use it.
Plus it pairs well with my OneNetbook 4:
Reasons for using this:
It is cool It satisfies my “under $100 device on my person” constraint It discourages “bad scrolling habits” It fits in my wallet Why USB Tethering I think USB Tethering is underrated.
I recently bought this 6-pack of Outdoor RGBW Flood lights with the intention of disassembling them.
These have the SEO words of:
Ustellar RGB Flood Light Outdoor, Smart WiFi RGBW Color Changing Landscape Lights+Warm White 2700K, 40W App Control Christmas Spotlight Works with Alexa, IP66 Waterproof Uplights, Plug & Play (6 Pack)
They have a part number of UT88865-RGBW-US-1. Fundamentally they are a string of 6 24v WS2814A RGBW flood lights with the first flood as the controller with a Tuya CBU module for wifi control.
Note: This is Part 2 on Platform Engineering theory. Read Part 1 if you are more interested in the theory behind these recommendations.
Applying Theory As a recap from Part 1, the Fundamental Theory of (internal) Platforms is:
One should be build an internal platform to solve real business needs, starting with the following properties:
As high-level of an abstraction as possible, evolving to later provide lower-levels as well As opinionated as possible to start, evolving to more flexibility with other offerings As little self-service as possible, evolving to more self-service As multi-tenant as possible, evolving to (more expensive) isolated environments as the business requires it So sure, we have some general guidelines on how to build them, and some of the “why” from part 1.