frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Build Your Own Database

https://www.nan.fyi/database
135•nansdotio•3h ago•29 comments

Neural audio codecs: how to get audio into LLMs

https://kyutai.org/next/codec-explainer
272•karimf•6h ago•86 comments

LLMs can get "brain rot"

https://llm-brain-rot.github.io/
181•tamnd•5h ago•97 comments

Foreign hackers breached a US nuclear weapons plant via SharePoint flaws

https://www.csoonline.com/article/4074962/foreign-hackers-breached-a-us-nuclear-weapons-plant-via...
201•zdw•3h ago•102 comments

Do not accept terms and conditions

https://www.termsandconditions.game/
39•halflife•4d ago•26 comments

NASA chief suggests SpaceX may be booted from moon mission

https://www.cnn.com/2025/10/20/science/nasa-spacex-moon-landing-contract-sean-duffy
56•voxleone•6h ago•281 comments

Show HN: Katakate – Dozens of VMs per node for safe code exec

https://github.com/Katakate/k7
55•gbxk•4h ago•24 comments

Our modular, high-performance Merkle Tree library for Rust

https://github.com/bilinearlabs/rs-merkle-tree
97•bibiver•6h ago•25 comments

Mathematicians have found a hidden 'reset button' for undoing rotation

https://www.newscientist.com/article/2499647-mathematicians-have-found-a-hidden-reset-button-for-...
29•mikhael•5d ago•15 comments

Time to build a GPU OS? Here is the first step

https://www.notion.so/yifanqiao/Solve-the-GPU-Cost-Crisis-with-kvcached-289da9d1f4d68034b17bf2774...
21•Jrxing•2h ago•0 comments

Ilo – a Forth system running on UEFI

https://asciinema.org/a/Lbxa2w9R5IbaJqW3INqVrbX8E
86•rickcarlino•6h ago•29 comments

Flexport Is Hiring SDRs in Chicago

https://job-boards.greenhouse.io/flexport/jobs/5690976?gh_jid=5690976
1•thedogeye•2h ago

ChatGPT Atlas

https://chatgpt.com/atlas
339•easton•2h ago•360 comments

Wikipedia says traffic is falling due to AI search summaries and social video

https://techcrunch.com/2025/10/18/wikipedia-says-traffic-is-falling-due-to-ai-search-summaries-an...
100•gmays•18h ago•117 comments

The Programmer Identity Crisis

https://hojberg.xyz/the-programmer-identity-crisis/
99•imasl42•3h ago•93 comments

Diamond Thermal Conductivity: A New Era in Chip Cooling

https://spectrum.ieee.org/diamond-thermal-conductivity
124•rbanffy•8h ago•37 comments

StarGrid: A new Palm OS strategy game

https://quarters.captaintouch.com/blog/posts/2025-10-21-stargrid-has-arrived,-a-brand-new-palm-os...
170•capitain•8h ago•35 comments

Apple alerts exploit developer that his iPhone was targeted with gov spyware

https://techcrunch.com/2025/10/21/apple-alerts-exploit-developer-that-his-iphone-was-targeted-wit...
175•speckx•3h ago•81 comments

Binary Retrieval-Augmented Reward Mitigates Hallucinations

https://arxiv.org/abs/2510.17733
18•MarlonPro•3h ago•3 comments

Getting DeepSeek-OCR working on an Nvidia Spark via brute force with Claude Code

https://simonwillison.net/2025/Oct/20/deepseek-ocr-claude-code/
52•simonw•1d ago•2 comments

Magit Is Amazing

https://heiwiper.com/posts/magit-is-awesome/
51•Bogdanp•1h ago•31 comments

AWS multiple services outage in us-east-1

https://health.aws.amazon.com/health/status?ts=20251020
2187•kondro•1d ago•1986 comments

Minds, brains, and programs (1980) [pdf]

https://home.csulb.edu/~cwallis/382/readings/482/searle.minds.brains.programs.bbs.1980.pdf
4•measurablefunc•1w ago•0 comments

Show HN: ASCII Automata

https://hlnet.neocities.org/ascii-automata/
64•california-og•3d ago•7 comments

The death of thread per core

https://buttondown.com/jaffray/archive/the-death-of-thread-per-core/
30•ibobev•22h ago•5 comments

What do we do if SETI is successful?

https://www.universetoday.com/articles/what-do-we-do-if-seti-is-successful
66•leephillips•1d ago•55 comments

Show HN: bbcli – A TUI and CLI to browse BBC News like a hacker

https://github.com/hako/bbcli
27•wesleyhill•2d ago•2 comments

The Greatness of Text Adventures

https://entropicthoughts.com/the-greatness-of-text-adventures
76•ibobev•3h ago•60 comments

Amazon doesn't use Route 53 for amazon.com

https://www.dnscheck.co/blog/dns-monitoring/2025/10/21/aws-dog-food.html
19•mrideout•1h ago•7 comments

60k kids have avoided peanut allergies due to 2015 advice, study finds

https://www.cbsnews.com/news/peanut-allergies-60000-kids-avoided-2015-advice/
190•zdw•15h ago•204 comments
Open in hackernews

Quantum dynamics on your laptop? New technique moves us closer

https://www.buffalo.edu/news/releases/2025/10/quantum-dynamics-on-your-laptop.html
57•ceolin•1w ago

Comments

hershkumar•6h ago
Reading their paper, it does seem like this method is significantly simpler than using something like MPS, my main concern is the practical coupling regime for which this method works, I would imagine that it would fail closer to critical points in theories with phase transitions?
nyeah•6h ago
I'm curious, are any quantum simulators accessible to sort of hobbyists?

I have a background in solid state physics from coursework, but I've never really used QM for almost anything outside of school.

krastanov•6h ago
I think you will have best luck by searching for "open quantum systems" toolboxes in your language of choice. My preferences are, in order:

- QuantumOptics.jl in Julia

- QuantumToolbox.jl in Julia

- qutip in python

These are all "just" nice domain specific wrappers around linear algebra and differential equation tools. They do the "silly" exponentially expensive simulation technique that works for any quantum system. If you are interested in efficient (not exponential) simulation techniques that support only a subset of all quantum dynamics try out:

- stabilizer formalism (e.g. for error correction) with QuantumClifford.jl or stim

- Gaussian quantum optics (e.g. for laser physics) with Gabs.jl

- tensor networks (e.g. for arbitrary low-rank entanglement) with ITensors.jl

nyeah•5h ago
Thanks a lot!
hershkumar•5h ago
If you prefer python, tenpy is quite nice for tensor networks as well.
nyeah•4h ago
Thanks! I am kind of stuck in Python, or at least stuck outside of Julia.
Bengalilol•5h ago
Not perfectly answering your request, but did you look at https://github.com/topics/quantum-computing?o=desc&s=updated
nyeah•2h ago
I haven't, thanks.
the__alchemist•4h ago
Try ORCA and GROMACS. Accessible as you can DL them and there are lots of docs. But very high learning curve, and not graphical on their own.
nyeah•2h ago
Thanks a lot.
quantumtwist•5h ago
This is a nice practical technique for open quantum systems with relatively low entanglement. The introduction lays out exactly what regime they're aiming at: 1. Affordable (laptop scale) 2. Captures "sufficient" quantum effects (low entanglement regime; you accurately can't simulate a quantum computer with this) 3. Straightforward to implement. From a cursory glance, it does all three. I'm slightly surprised that TWA hasn't been applied to open systems extensively before, but it was always a relatively obscure technique. I'm guessing this should be quite useful in practice for e.g. AMO and cavity systems with relatively large dissipation terms that prevent entanglement build up. However, I'd guess this wouldn't do very well near phase transitions. All-in-all, a nice new technique for a regime that didn't have too many options.
hershkumar•5h ago
Yeah this seems like a very useful technique for ground state properties, I’m also surprised in retrospect, having never heard of TWA before now.
andyferris•5h ago
With _quantum_ phase transitions, yes.
the__alchemist•4h ago
I'm very interested in this class of approximations on consumer hardware from a different perspective: Simulating (simple) biological systems and organic molecules. Background: I'm building out the rust structural bio OSS ecosystem, and a GUI/3D CAD-style visualizer. It has molecular dynamics integrated tightly, and is designed to "just work" without fuss, setup, or errors.

The problem: It is reliant on atom-centered partial charge, and pre-calculated parameters for its Newtonian forces. These are available for a set of 30k or so organic molecules, and most protein, lipid, and nucleic acid configurations. The problems: Making it work for arbitrary systems, and doing better than these specifically-tuned models. I want the general case, and it to work in a no-fuss way.

I am now looking into the TWA, and am interested in this class of approximation in general. I have the UI and traditional MD system mostly ready; getting ready to tackle this problem. This is a much simpler setup than the ones physicists are interested, and that the article covers, since we can focus on stable covalent-bonded systems of atoms.

gilleain•3h ago
That's Daedalus is it? Went to look up how your project is doing, and had to go through github stars - might be worth putting a link to it in your HN profile? Assuming you don't mind making that link explicit :)
the__alchemist•2h ago
Yep! it's a grind. Good call on the profile!