frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google hails quantum computing breakthrough

https://www.theguardian.com/technology/2025/oct/22/google-hails-breakthrough-as-quantum-computer-...
1•emigre•29s ago•0 comments

The Free Transformer

https://arxiv.org/abs/2510.17558
1•aaraujo002•1m ago•0 comments

An overengineered solution to `sort – uniq -C` with 25x throughput (hist)

https://github.com/noamteyssier/hist-rs
1•noamteyssier•1m ago•1 comments

Taylor Swift and Blake Lively friendship reportedly over amid lawsuit fallout

https://www.red94.net/news/221007-taylor-swift-and-blake-lively-friendship-reportedly-over-amid-l...
1•AlfredoPutril•2m ago•0 comments

Can you be addicted to food?

https://theconversation.com/can-you-really-be-addicted-to-food-researchers-are-uncovering-convinc...
1•PaulHoule•5m ago•0 comments

Visual Testing in Software – The Problem I Couldn't See

https://pharzan.com/posts/visual-testing/
1•pharzan•6m ago•0 comments

Amazon's Delivery AI Glasses

https://www.aboutamazon.com/news/transportation/smart-glasses-amazon-delivery-drivers
3•mgh2•9m ago•0 comments

Heights of presidents and presidential candidates of the United States

https://en.wikipedia.org/wiki/Heights_of_presidents_and_presidential_candidates_of_the_United_States
1•wslh•11m ago•0 comments

Iceland reports the presence of mosquitoes as climate warms

https://www.npr.org/2025/10/22/nx-s1-5582748/iceland-mosquitoes-first-time
4•sans_souse•12m ago•0 comments

Chandra Wilson discusses mentorship role on 'Grey's Anatomy' in GMA appearance

https://www.red94.net/news/555900-chandra-wilson-discusses-mentorship-role-on-greys-anatomy-in-gm...
1•jerNils•13m ago•0 comments

China accuses US of cyberattacks after alleged NSA hack

https://www.theregister.com/2025/10/20/china_accuses_us_cyber_warfare/
2•elsewhen•13m ago•0 comments

More Kernel Graphics Driver Accelerator/NPU Driver Updates Ready for Linux 6.19

https://www.phoronix.com/news/Linux-6.19-DRM-Misc-Next-2
1•Bender•14m ago•0 comments

MailMaven 1.0

https://mailmaven.app/support/release_notes.html
1•kruuuder•15m ago•0 comments

Lack of 'economically-attractive' men to blame for decline in marriage rates

https://www.the-independent.com/life-style/dating/marriage-rates-decline-reason-economically-attr...
1•Teever•15m ago•0 comments

Pigoon Time

https://asia.nikkei.com/business/science/japan-startup-to-build-clone-pig-farm-for-organ-transplants
1•gabthinking2017•16m ago•0 comments

New Hacker News Client

1•zachixer•17m ago•0 comments

How to Use Sshfs to Mount Remote File Systems over SSH

https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-ov...
2•behnamoh•18m ago•0 comments

Framer's Magic Motion

https://www.nan.fyi/magic-motion
1•Twixes•19m ago•0 comments

Thoughts on the AI Buildout

https://www.dwarkesh.com/p/thoughts-on-the-ai-buildout
2•gwintrob•20m ago•0 comments

Emmy Noether Can't Get a Break

https://lee-phillips.org/notweyl/
1•leephillips•21m ago•0 comments

Eight Sleep adds 'outage mode' to smart beds after AWS problems left them frozen

https://www.theverge.com/news/804289/eight-sleep-smart-bed-aws-outage-overheating-offline
4•ls-a•24m ago•1 comments

Trump Administration Cuts Cyberdefense Even as Threats Grow

https://www.nytimes.com/2025/10/22/us/politics/trump-cyber-threats.html
4•flowerlad•25m ago•0 comments

Polish PM: government used Pegasus spyware to surveil my wife and daughter

https://notesfrompoland.com/2025/10/22/polish-pm-former-government-used-pegasus-spyware-to-survei...
4•miohtama•25m ago•2 comments

Show HN: An AI reader to zoom in/out in epubs/pdfs, per chapter

https://www.kerns.ai/
1•kanodiaayush•26m ago•0 comments

China's analog AI chip could work 1,000 times faster than Nvidia GPU: study

https://www.scmp.com/news/china/science/article/3329820/chinas-analogue-ai-chip-could-work-1000-t...
2•CGMthrowaway•26m ago•0 comments

Retro Gadgets Playground

https://store.steampowered.com/app/3225960/Retro_Gadgets_Playground/
1•smusamashah•27m ago•0 comments

Show HN: Stopping Extreme Withdrawal – Free AI guide for extreme anxiety

https://docs.google.com/document/d/e/2PACX-1vSsyN1Qem0Qkb4dE1XsWcOcndRqnI5COunCzc7UTawH-r1TSHWHxr...
2•ycosynot•28m ago•1 comments

Show HN: ChatGemini – Easy tool, >50% cost saved with cache, multi(NL video edit

https://github.com/Saki-tw/ChatGemini_SakiTool
1•Saki2007•28m ago•1 comments

Daily-Bible-Verse-Cowsay

https://github.com/patlehmann1/daily-bible-verse-cowsay
1•lehmann_dev•28m ago•0 comments

Ask HN: Any active African open source organization in Africa?

1•pythonbrad•29m ago•0 comments
Open in hackernews

Show HN: Cuq – Formal Verification of Rust GPU Kernels

https://github.com/neelsomani/cuq
20•nsomani•2h ago

Comments

nsomani•2h ago
Hi all, this is a small research prototype I built that connects Rust's MIR (Mid-level IR) to Coq, the proof assistant used for formal verification.

cuq takes the MIR dump of a Rust CUDA kernel and translates it into a minimal Coq semantics that emits memory events, which are then lined up with the PTX memory model formalized by Lustig et al., ASPLOS 2019.

Right now it supports:

* a simple saxpy kernel (no atomics)

* an atomic flag kernel using acquire/release semantics

* a "negative" kernel that fails type/order checking

The goal isn't a full verified compiler yet. It's a first step toward formally checking the safety of GPU kernels written in Rust (e.g. correct use of atomics, barriers, and memory scopes).

Happy to hear thoughts from folks working in Rust verification, GPU compilers, or Coq tooling.

gaogao•1h ago
Do you think it might be easier to target cuTile instead of PTX? (Probably not, since it has a less formalized model?)
nsomani•32m ago
That instinct is right. cuTile would be easier to parse but harder to reason about formally.
Hexigonz•1h ago
This is pretty cool! Are you sure about the name...
NitpickLawyer•1h ago
It's a system where a 3rd party library (aptly named Coq) gets to throughly verify your kernel, and you get to watch it do its thing? I think the name is fitting.
bitwize•50m ago
It's called Rocq now—for this reason.
sayrer•17m ago
Yeah, "coq" is a grade school joke in French class. It just means "rooster" or something in French, but it sounds ridiculous in English. This one has the same problem.

A company with that in the name made the French national team jersey for a while.

https://en.wikipedia.org/wiki/Le_Coq_Sportif

It's Nike now, but it still has a rooster on it.

CaptainOfCoit•1h ago
I'm getting a ԃҽʝα ʋυ
hnuser123456•1h ago
Bonus points if it runs on UNIX
skrrtww•1h ago
This might be the worst named project of all time. Not funny and demonstrates an absolutely terrible impulse on the part of the author. Probably the worst way possible to advertise your project.

edit: According to the author in a reply, the double entendre was in fact not intentional.

Dilettante_•1h ago
Maybe this surprises you, but some people have different sensibilities than you do.
webdevver•50m ago
not at all - its perfectly logical

you are cucking the betabuxxed bugs in your kernels with your BFV (Big Formal Verifier)

nsomani•33m ago
Oh wow, honestly this caught me off guard - I've been pronouncing it "kook" in my head the whole time.
skrrtww•18m ago
If this was genuinely unintentional on your part, then bless your heart and I'm sorry for assuming the worst. You might be the least morally corrupted internet user alive today.
nsomani•10m ago
I think I've just spent too much time reading the word "CUDA" that I read "cu" as "koo", lol.
OneDeuxTriSeiGo•29m ago
That's not what the name is based on. The name is cu- (as in CUDA kernels) -q (as in coq/rocq). Pronounced Cuke like cucumber.
webdevver•19m ago
cuke - it's heaven in a can!
lacker•22m ago
They're renaming Coq, too, for the obvious reason.

Just go ahead and rename this project to "Rocuda", save everyone a lot of time arguing about what names are appropriate or not.

thrownawaysz•31m ago
'Yer a cuq, Harry