Mistral AI raises 1.7B€, enters strategic partnership with ASML
mistral.ai
A clickable visual guide to the Rust type system
rustcurious.com
You too can run malware from NPM (I mean without consequences)
github.com
Hallucination Risk Calculator
github.com
DuckDB NPM packages 1.3.3 and 1.29.2 compromised with malware
github.com
How can England possibly be running out of water?
theguardian.com
Weaponizing Ads: How Google and Facebook Ads Are Used to Wage Propaganda Wars
medium.com
Google to Obey South Korean Order to Blur Satellite Images on Maps
barrons.com
Nango (YC W23) Is Hiring a Staff Back End Engineer (Remote)
jobs.ashbyhq.com
Strong Eventual Consistency – The Big Idea Behind CRDTs
lewiscampbell.tech
Liquid Glass in the Browser: Refraction with CSS and SVG
kube.io
Majority in EU's biggest states believes bloc 'sold out' in US tariff deal
theguardian.com
NPM debug and chalk packages compromised
aikido.dev
Experimenting with Local LLMs on macOS
blog.6nok.org
Deluxe Paint on the Commodore Amiga
stonetools.ghost.io
The elegance of movement in Silksong
theahura.substack.com
Microsoft doubles down on small modular reactors and fusion energy
techradar.com
Alterego: Thought to Text
alterego.io
Is OOXML Artifically Complex?
hsu.cy
I wonder how this will work for Rust where bytes are u8 - will they special-case them ? That would look weird.
Also there are some botched examples, e.g. :
> define void @src(ptr %a, ptr %b) > { > %mem = alloca i8 > call void @llvm.memcpy(ptr %mem, ptr %a, i32 1) > call void @llvm.memcpy(ptr %a, ptr %mem, i32 1) > ret void > }
The last %a should be a %b. But you can get the idea anyway.