Oracle is hiring roughly twice as many senior-and-above software engineers than any other tech business: Big Tech or not.
What is happening there?
My analysis (and more data on the tech job market): https://t.co/KxizdcDaOU
📢#legislatives2024📷 Le groupe numérique de Changer de Cap cosigne l'appel commun initié par
@OnEstLaTech et @MoutonNumerique contre l'extrême droite et en soutien au Nouveau front populaire
▶️https://t.co/GN3KBYohnN
Come as you are!
We have 🚀8 job openings 🚀 at @LightOnIO across various teams, technical and business. Join us into making Enterprise LLMs the only thing!
Full remote OK for tech positions.
https://t.co/CDVYeIDl36
A wonderful resource that describes some anti-patterns that increase the cognitive load for developers 🧠
The best one I read so far
Cognitive Load Developer's Handbook https://t.co/WAQmAbZmwQ
@learnk8s Important mention from the README :
kubectl-debug is not related to kubectl debug
kubectl-debug has been largely replaced by kubernetes ephemeral containers.
1/9 DevOps is not platform engineering, and platform engineering is not DevOps
I see a lot of confusion on this topic and so want to break it all down. What actually is #platformengineering?
And why do I think it's going to change everything?
A thread👇
What fields can you tweak for a Kubernetes Deployment? Or any other Kubernetes resource, for that matter?
I just discovered a useful tool from @Apollorion for this 🤓
No more `kubectl explain` for me
https://t.co/XhRb3pRyym
@pierreschnee Tout ça c'est pour faire monter les actions d'ovh ! Ceux qui sont chez AWS ou Google ils auront l'air malin quand y'aura plus de câble transat
On this terrible day, I'd like to say that Python colors are Ukrainian colors 🇺🇦.
Many contributors to the core language and the larger community are Ukrainian. I had the honor to speak at PyCon UA in Kiev and Lviv.
My heart goes out to all of you.
1/3
Seen some tweets about #Python lambdas recently.
There are alternatives to lambdas which are still one-liners but are faster and (arguably) simpler.
Let's look at a few.
<🧵>
@raymondh To me the union "int | None" is redundant with the " = None", and can be guessed by both human and type checker. So I would just write
def f(y: int = None)
Instead of
def f(y: int | None = None)