Models and science https://lemire.me/blog/2025/05/23/models-and-science/
The ancient Greeks crafted extraordinary models that continue to resonate. For instance, P
you know how when you're a kid, you can't really make permanent mistakes? if you do it's kinda your parents fault, you know? until you become a teenager and then you start doing things like driving a car, having sex, saying yes or no to drugs, and all the sudden your choices are permanent for your entire life
I feel like humanity itself has entered its teenage years.
video related

Just got tagged by someone on Mastodon with what seemed like an organic post that happened to mention me, but in reality it was LLM generated advertisement slop disguised as a blog post aimed at enticing specific individuals by tagging them.
It's like the spear phishing equivalent of marketing. Maddening.
And I can't even publicly shame them because that would just be giving them traffic.
Been inspired by @lemire and started to practice some more bit ops (python code from phone ).
labels = ["{}","Buzz", "Fizz","FizzBuzz"]
for i in range(1, 101):
dv3 = int(i % 3 == 0)
dv5 = int(i % 5 == 0)
sel = (dv3 << 1) | dv5
print(labels[sel].format(i))
Reasoning (pretty obv)
div 3 T
(1<<1)|0 = 2 (idx for Fizz)
div5 T
(0<<1)|1 = 1 (idx for Buzz)
both T
(1<<1)|1 = 3 (Idx for FizzBuzz)
both F = (0<<1) | 0 = 0 ( print count of i)
Branchless FizzBuzz. Easily scalable lol.