Kubernetes Failure Stories
date: 2022-08-28 · Tags: #system-design, #cloud, #good-readingReally laugh out loudly 🤪🤣🤫 . No Silver Bullet
A compiled list of links to public failure stories related to Kubernetes. Most recent publications on top. -- Kubernetes Failure Stories
DDD, Hexagonal, Onion, Clean, CQRS, … How I put it all together
date: 2022-08-13 · Tags: #good-reading, #system-designSuch detailed and excellent diagrams! I always cannot well understand "Inversion of control" and apply it in real cases, though it seems pretty straightforward.
This post is a part of author's The Software Architecture Chronicles. As the author wrote: In them, I write about what I’ve learned about Software Architecture, how I think of it, and how I use that knowledge.
Those who fail to learn History are doomed to repeat it.
--- George Santayana, The Life of Reason, 1905
References:
Announcing Rust 1.63.0
date: 2022-08-11 · Tags: #rust, #newsRust team is annoucing 1.63.0 stable today 1.
There are serveral features I quite interested in:
These features help a lot to simplify codes. Also my next forwarding features should be:
References:
Footnotes
Crimes with Python's Pattern Matching
date: 2022-08-06 · Tags: #python, #tilToday, I learn some wired tricks in Python's pattern matching :lol:
You can match on arrays, dictionaries, and custom objects. To support matching objects, Python uses
isinstance(obj, class)
, which checks
- If
obj
is of typeclass
- If
obj
is a transitive subtype ofclass
- If
class
is an ABC and defines a__subclasshook__
that matches the type ofobj
.
Not a Yoking Matter (Zero-Copy #1)
date: 2022-08-06 · Tags: #good-reading, #rustThis is a series of articles about zero copy. I haven't read them all yet, but they're looking very promising!