Hey, with my friend g33kex, we built a custom GPT that connects to your Linux server and runs commands to troubleshoot it.
It is based on a Rust Client and a Python API.
Check it out here : https://t.co/5pXsV9ikXE & there https://t.co/Mpe1pH91WQ
NOUVELLE VIDÉO !!!
- Mais au fait, il s'est passé quoi en 1929 ?
- Quoi ? Tu veux parler de la crise de 29 ?
- Ben oui !
- Mais qu'est-ce qu'on s'en fout ?
- Ouais t'as raison c'est question de merde...
🙃https://t.co/jYxrlGwDet
why did nobody tell me there’s a secret AMOLED dark mode for Discord mobile? You just tap the dark mode option 10 times and the AMOLED option appears 🤯
No More GIL!
the Python team has officially accepted the proposal.
Congrats @colesbury on his multi-year brilliant effort to remove the GIL, and a heartfelt thanks to the Python Steering Council and Core team for a thoughtful plan to make this a reality.
https://t.co/58QK2yctRD
I have an idea for a data structure, hear me out.
A linked list where every node contains a hash of all the data in the nodes behind it, and every time you want to add a new node, you need about 200.000 other computers to say ok and consume the power equivalent of a small nation
As a…
– Twitter user
I want…
– significant selection bias applied to polls
so that…
– the amplified opinions of the diminutive minority, whose selection criteria was to pay $7, become further reinforced as the status quo
@jaceklaskowski sortByKey uses a RangePartitioner that does sampling on the RDD keys to determine partition boundaries, so that partitions are evenly distributed even if the RDD keys are not. It's probably that?
Moderna vaccine was sequenced earlier this year, let's visualize it the same way we did for Pfizer here:
https://t.co/q20jQ3LUdt
Without surprise: very similar patterns
#Python question: What is the correct type annotation for the return value of a class method?
class P:
@classmethod
def from_half(cls, x: int) -> ???:
return cls(x * 2)
class C(P):
pass