Tuesday, January 19, 2021

No Rules Rules by Erin Meyer and Reed Hastings



Although this book is not applicable to my "day job" because I do not work at a company that is in any way like Netflix, it was still fun and entertaining.  Yes, people at Netflix live in fear of getting fired. Yes, your colleagues at work tell you all the time about your mistakes.  Yes, you are very stressed out about big decisions.  But the authors defend this high-pressure, high-stress daily work life as a good way to run a business. 4/5 Stars.  THe book is worth your time to skim through it.

Sunday, January 10, 2021

Alert Fatigue webinar on Jan 14


This interesting webinar is about how to reduce alert fatigue.  11am Europe time.

sketch notebooks to learn Google Cloud Platform (GCP)


Priyanka Vergadia has collected a bunch of docs about how to use GCP offerings that are in the fun "sketch notebook" format. 

FOSDEM 2021 is virtual on Feb 6 & 7


Here are the FOSDEM21 tracks for Feb 6 & 7.  Find the free open source software you love and visit the virtual session to chat with other like-minded coders.

cloud providers as a framework


(total cost of ownership (TCO) is dominated by maintenance; public cloud providers maintain their components and are less expensive in total cost)

Amazon IBM, Google, and other cloud providers have evolved their offerings to the point that they must now be considered application development frameworks, especially with cloud functions and no-ops.  The folks at Galvanize walk us through the evolution of cloud providers using AWS as an example and the inevitability of serverless and no-ops, forcing us to conclude that our cloud providers must now be considered software development frameworks.

automated upgrades?


Remember when Python-3 was released?  Guido von Rossum shipped the release with an automated upgrade tool called 2to3 that would translate your Python-2 code into Python-3 syntax automatically.  Similarly, Rob Pike released the v1.0 version of Go with a command called fix that would translate your v0.9x versions to v1.0 syntax.

James Abley is proposing that all package maintainers should ship completely-automated upgrade tools for each release of their packages.  Minor-release number changes (non-breaking changes) are already straightforward and many tools exist to help change manifests, build & YAML files.  But major releases require transformers that actually change your code.  It is a cool concept and appears feasible at first glance.  Everyone needs them.  The total available market is huge.

Saturday, January 9, 2021

The Time Wanderers by Boris & Arkady Strugatsky


This tightly-woven, well-written has fantastic literary descriptive writing.  But the reader must concentrate to keep all of the nuances, clues, and innuendos aligned.  It is hard and slow going for me. 3/5 Stars.

Thursday, January 7, 2021

The Human by Neal Asher


Interesting conclusion to a thrilling space opera.  The evolution of the magic system is unappealing, unscientific, and inconsistent but the story line was fun and entertaining, 3/5 Stars.

Sunday, January 3, 2021

strong types in APIs?


Sometimes we want to write fast, hacky code in languages with weak typing (perl, python, javascript), or lazily put data into "string" in Java.  Other times we want strong typing, better observability, and easier maintenance.  The folks at buf are trying to make protocol buffers as easy to use as json.  They make some strong arguments for stronger types in our APIs.

great introduction to message queue concepts



Sudhir Johnson has written a great summary of message queue systems and considerations.  It's worth skimming if you have not considered dead letter DDOS attacks or poison pill messages.