Nice quote on security governance of AI
Came across this gem from LinkedIn Learning course by Lyron Andrews.
AI doesn't correct poor governance it simply accelerates existing behavior
Analogy for Generative AI vs Discriminative AI
I've recently been studying ISO/IEC 42001:2023 and came across a great LinkedIn Learning course by Lyron Andrews.
Among the many noteworthy points, Lyron summed the differences well between "Generative AI" learning models and "Discriminative AI" models:
A helpful analogy is that a generative . . .
The Zen of Python, by Tim Peters
I know this exists in exactly one billion places on the Internet, but figured another blog post wouldn't hurt. Digging this:
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is . . .
Bookmarks
Here's my list of bookmarks for various bookmarks. I'll keep adding to it over time.
General Documentation and How-to
Docker / Kubernetes / General Container Info
Solved: sshd still allowing password auth despite updating config file
I'll keep this short and sweet: On recent editions of debian linux distributions, you may have noticed that setting PasswordAuthentication no
doesn't seem to have any effect when you set it.
That's because high up in the sshd_config file, there's a statement to include additional configs:
Include . . .
Image vs Container Registry
I like analogies. They make it easier to express ideas and communicate concepts.
Recently someone was asking about the difference between an "images" vs "registry", and how they pertain to containers.
I came across this one amidst a google search (source unknown - sorry):
Imagine a . . .
Refresher on negative indexing in python
Friendly reminder regarding python slice notation for negative indexing. It's covered really well here.
Basically, the last value has an index of -1... second last has an index of -2... and so on.
+---+---+---+---+---+---+
| P | y | t | h | o | n |
+---+---+---+---+---+---+
0 1 2 3 4 5
-6 -5 -4 -3 -2 -1 . . .