I took ChatGPT on holiday and it was like having a magic translator and tour guide in my pocket.
From translating menus to explaining art and wine, it made everything easier and more interesting.
New blog post: https://t.co/FU8zi1L2Wy
#TravelWithAI#ChatGPT#TechMagic
In Rust what does this really do?
> vec![0u8, 1024]
New blog post featuring memset's optimized assembly, mmap's zero-page shortcut, and why 0's are better than 1's.
https://t.co/Ytgg9wuI8H
#rust#malloc#assembly#linux
COVID broke out eight miles from the world’s leading laboratory for the study of novel sarbecoviruses.
That alone should thwack the burden of proof over the philosophical net.
But that’s only the start of the coincidences and anomalies. https://t.co/6ZS5lFnpzt
Legendary computational biologist Nick Patterson: "My readers will know that I believe that it is overwhelmngly likely that COVID-19 was a virus engineered in the Wuhan Institute of Virology (WIV), that escaped by accident."
Ever wanted to write a Huge Pages memory allocator for Rust, and learn about the importance of TLB misses? Now you can! New lab on perf-ninja:
https://t.co/wubL4KpE3q
#rust#performance
What if you spent a weekend overthinking the Two Sum interview question?
For what values of N would your AVX-512 solution beat the map one?
#rust#simd#performance#interview
https://t.co/9WwHHOp3UI
PSA: Before copy-pasting a GitHub source code link, especially one that links to a line or line range, hit `y` to make the URL include the current commit hash. That way the link will keep working even if the file is later changed or moved/deleted.
What is the cost Rust's `sync::Once` after the initial call? Getting carried away with micro-performance analysis.
https://t.co/SG6nbvddgf
#rust#performance#assembly
On the Ethereum Virtual Machine if you try to execute an invalid instruction it aborts your program and takes all your money ("all remaining gas is consumed"). Hardcore.
https://t.co/o7xhOucvVE
Writing a new series on Rust's assembly output:
- Intro: https://t.co/5QkaypcjB8
- First post: Does it matter what type (u8, u32, etc) I use?: https://t.co/5cN2pfcU5t
#rust#assembly