frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gemma 4 12B: A unified, encoder-free multimodal model

https://blog.google/innovation-and-ai/technology/developers-tools/introducing-gemma-4-12b/
192•rvz•1h ago•70 comments

ESP32-S31

https://www.espressif.com/en/products/socs/esp32-s31
95•volemo•1h ago•36 comments

DaVinci Resolve 21

https://www.blackmagicdesign.com/products/davinciresolve/whatsnew
191•pentagrama•3h ago•109 comments

Hacking your PC using your speaker without ever touching it

https://blog.nns.ee/2026/06/03/katana-badusb/
479•xx_ns•6h ago•80 comments

A Post-Quantum Future for Let's Encrypt

https://letsencrypt.org/2026/06/03/pq-certs
97•SGran•2h ago•38 comments

Show HN: Nutrepedia – nutrition info in 29 locales built with Clojure and Htmx

https://nutrepedia.com/en-us/
16•llovan•1h ago•5 comments

Meta workers can opt out of being tracked at work up to 30 min

https://www.bbc.com/news/articles/c93x0k194yno
455•reconnecting•4h ago•410 comments

Skyvern (YC S23) Is Hiring Open-Source Loving DevRel Engineers

https://www.ycombinator.com/companies/skyvern/jobs/1qRTlVx-founding-developer-marketing-open-sour...
1•suchintan•26m ago

Every Byte Matters

https://fzakaria.com/2026/06/01/every-byte-matters
187•ingve•6h ago•87 comments

Are You Enjoying Our Linguine? (2025)

https://www.thedial.world/articles/news/american-tourists-rome
33•NaOH•2d ago•28 comments

PlayStation Architecture

https://www.copetti.org/writings/consoles/playstation/
174•gregsadetsky•7h ago•33 comments

Fluid Simulation for Dummies

https://www.mikeash.com/pyblog/fluid-simulation-for-dummies.html
12•sebg•4d ago•1 comments

Uber to cut 23% of jobs in HR

https://stocktwits.com/news-articles/markets/equity/uber-reportedly-slashes-many-senior-roles-in-...
44•heldrida•1h ago•13 comments

1-Click GitHub Token Stealing via a VSCode Bug

https://blog.ammaraskar.com/github-token-stealing/
600•ammar2•1d ago•89 comments

The Public Should Own Half of the Big A.I. Companies

https://www.sanders.senate.gov/op-eds/the-public-should-own-half-of-the-big-a-i-companies/
29•droidjj•29m ago•8 comments

Show HN: Edsger – A handwritten Clojure REPL for the reMarkable 2

https://handwritten.danieljanus.pl/2026-06-01-edsger.html
197•nathell•22h ago•27 comments

Show HN: Rscrypto, pure-Rust crypto with industry leading public benches

https://github.com/loadingalias/rscrypto
6•LoadingALIAS•46m ago•1 comments

Nabokov's pale fire: the lost 'father of all hypertext demos'? (2011)

https://dl.acm.org/doi/pdf/10.1145/1995966.1996008
92•aragonite•2d ago•22 comments

I built a ceiling projection mapping of the planes flying over my house

https://old.reddit.com/r/nextfuckinglevel/comments/1tvmcin/i_live_in_the_take_off_path_of_sfo_and...
160•frereubu•3h ago•22 comments

Use your Nvidia GPU's VRAM as swap space on Linux

https://github.com/c0dejedi/nbd-vram
418•tanelpoder•18h ago•107 comments

Show HN: I reverse-engineered the world maps of Test Drive III (1990 DOS game)

https://github.com/s-macke/Test-Drive-3-Maps
179•s-macke•3d ago•52 comments

MacBook Neo Is So Popular That Apple Doubled Production

https://www.macrumors.com/2026/06/03/macbook-neo-production-doubled-says-kuo/
18•tosh•54m ago•1 comments

32GB of DDR5 now costs $375 – AI shortage continues to squeeze PC building

https://www.tomshardware.com/pc-components/ddr5/32gb-of-ddr5-now-costs-usd375-minimum-ai-shortage...
245•papersail•4h ago•247 comments

REST3D: Reconstructing Physically Stable 3D Scenes from a Single Image

https://shirleymaxx.github.io/REST3D/
11•ibobev•3h ago•1 comments

MAI-Code-1-Flash

https://microsoft.ai/news/introducingmai-code-1-flash/
517•EvanZhouDev•22h ago•243 comments

Leiden Declaration on Artificial Intelligence and Mathematics

https://leidendeclaration.ai/
105•zvr•10h ago•59 comments

Shopify Is Down

https://www.shopifystatus.com
91•harrouet•3h ago•64 comments

The Unreasonable Redundancy of Nature's Protein Folds

https://research.ligo.bio/posts/unreasonable-redundancy-of-natural-protein-folds/
143•ray__•13h ago•46 comments

U of T researchers demonstrate AI worm could target any online device

https://www.utoronto.ca/news/u-t-researchers-demonstrate-ai-worm-could-target-any-online-device
119•shscs911•13h ago•37 comments

AI outperforms law professors in Stanford Law study

https://law.stanford.edu/press/ai-outperforms-law-professors-in-stanford-law-study/
377•berlianta•17h ago•326 comments
Open in hackernews

ESP32-S31

https://www.espressif.com/en/products/socs/esp32-s31
95•volemo•1h ago

Comments

rie_t•1h ago
Love to see more RISC-V in the wild
randomint64•58m ago
Espressif is on fire! And the CPU even has SIMD instructions!

RISC-V cores is a big deal for embedded systems because now compiling for SoCs is only a matter of `rustup target add riscv32imac-unknown-none-elf` instead of downloading half-broken proprietary toolchains and SDKs.

Take a look at https://kerkour.com/introduction-to-embedded-development-wit... and https://kerkour.com/rust-esp32-pentest to get started with modern (Rust ;) embedded development.

cassepipe•34m ago
Curious: What does the "imac" stand for in the architecture target name ?
JdeBP•27m ago
There are a few lettered extensions to the base RV32I instruction set. e.g.:

* https://docs.riscv.org/reference/isa/unpriv/m-st-ext.html

mentalpagefault•26m ago
IMAC are the RISC-V extensions supported:

I = Base integer instruction set, 32-bit

M = Standard extension for integer multiplication and division

A = Standard extension for atomic instructions

C = Standard extension for compressed instructions

https://en.wikipedia.org/wiki/RISC-V#ISA_base_and_extensions

cassepipe•6m ago
Thanks.I can't believe they chose non-arcane, memory-friendly letters. Kind of rare in naming hardware I feel (unless it's not ?)
NooneAtAll3•18m ago
where did you find it?
tosh•32m ago
very interesting, do you have a pointer with more info on what kind of SIMD support it has?
bobmcnamara•7m ago
Hopefully comparable or better than ESP32S3.

But with the weird alignment thing fixed

phkahler•27m ago
>> And the CPU even has SIMD instructions!

Yes, but it looks like there is no hardware floating point. The description of the CORDIC module indicates fixed-point calculations, which is consistent with the lack of any reference to floating point.

I am happy the have CAN-FD and Motor PWM module, but nowhere did I see conversion times listed for the ADC. For motor control I demand 1uS conversion time or less, and in the last year I've switched from fixed point to floating point after holding off on that switch for ~15 years.

NooneAtAll3•19m ago
where did you find cordic mention?
polpo•10m ago
From the ESP32-S31 datasheet: "Single-precision floating-point unit (FPU) per core"
Havoc•10m ago
Nice. Been meaning to try rust on these sort of devices but the riscv I saw thus far seemed to be mixed arm and riscv which seemed weird
Imustaskforhelp•56m ago
The 1GB bandwidth is interesting. It also has Simd instructions too.

Could this theoretically be used as a router or wireguard vpn instance?

KZerda•5m ago
Theoretically, yeah. Though at 320Mhz, with only 2.4ghz wireless, even with two cores, I doubt it's going to get anywhere near the throughput to fill the gigabit connection.
jeremywho•38m ago
When can we buy these?
Scene_Cast2•33m ago
The dev boards are already up for sale. I'm personally looking forward to the modules being stocked on LCSC, no idea when though.
topspin•18m ago
> The dev boards are already up for sale.

I didn't expect to see that for a while yet. Not the usual Espressif announce and wait a year+ pattern.

Aurornis•37m ago
Good to have WiFi and wired ethernet on the same part again.

Although we lost the MIPI support that the P4 dual-core RISC-V line has.

tetris11•17m ago
How does wired internet technically work on these chips? Is it just 8 dedicated GPIO pins?
skybrian•31m ago
I'm interested in audio out because I dabble in musical instruments.

What's the state of Bluetooth audio out on microcontrollers? Is low latency and high quality output possible?

tliltocatl•15m ago
Is there any reason you want wireless? Bluetooth audio is a disaster, AFAIK. You don't want to use it for music. Just go wired, the ether is too cramped already.
oritron•14m ago
Low latency in Bluetooth audio comes down to codecs and the best are proprietary.

If you want to really cut down latency and need wireless with hardware like this, you could use a second ESP32 and send your own bitstream between them.

frikk•30m ago
I've been building hobby LED art projects with WLED (exclusively built on the ESP32 platform). It's been a blast. These little boards are so powerful and the open source community continues to amaze me.

My preferred controller platform is of the QuinLED line - comes with power distribution, voltage regulators, fat copper lines, configurable data-line resistors, and smart auxiliary hardware support all for an affordable $30-$50 per controller. (quinled.info)

<https://kno.wled.ge/> - WLED homepage and probably my favorite clever URL of all time.

oritron•18m ago
The specs look great, will see how long it takes to get these as WROOM modules or on little dev boards; my two form factors of choice for Espressif devices. I'm also curious about the pricing, so far they've impressed me with how much more you get in successive generations at a similar price.

If you're excited about the (relatively) speedy RISC-V cores and SIMD, look at the P4 which is available now. It has a slightly faster clock but no wireless: https://products.espressif.com/#/product-comparison?names=ES...

There's some cool work out there using the dsp functionality and built in image handling to crunch a lot of pixel data, which should work similarly on the S31: https://www.reddit.com/r/WLED/comments/1ry2jd7/wledmmp4_with...

nubinetwork•12m ago
This looks like a nucleo144, except its risc-v... but why would I use it over said nucleo144?
bobmcnamara•7m ago
WiFi+BLE?
mort96•2m ago
And even if you don't need WiFi + BLE for a particular project, you may need it for other projects, and it might have value for you to standardise on one ecosystem.
hart_russell•11m ago
Any reason why this device wouldn't have Z-Wave? Is the wireless protocol significantly different than Thread and Zigbee?
Aurornis•9m ago
This device only has a 2.4GHz radio. Z-Wave is sub-1GHz.
mherkender•6m ago
I don't know for sure but Bluetooth, WiFi and Zigbee are on the same frequency band. Z-Wave is not.

(at least in the US, not sure about other countries)

orphea•6m ago
It being RISC-V is awesome, but how does it make sense that it's S series when S series have been Xtensa cores? Why is it not C series?
mort96•6m ago
This looks like the long-awaited replacement for the original ESP32. The S and C series have been relatively low performance (the S better than the C but stuck on the outgoing Xtensa architecture), the P4 is powerful but lacks wireless. This is a relatively high performance, dual core MCU with wireless; a nice default option for low volume designs where being able to copy a previous implementation is more important than saving a few cents. Just like the ESP32. Nice.
zuzululu•3m ago
How do I order a few samples, seem like there is a MOQ ?

Also I want to dive into hardware stuff but I'm always clueless as to what I do afterwards when this would arrive? Are you using a generic board or are you ordering and designing PCBs to hook this up to?

What are you using it for ? How do I go from a prototype to mass production via kickstarter?

jml7c5•3m ago
Previous discussion from two months ago, when this was announced: https://news.ycombinator.com/item?id=47561678