frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Voyager 1 Is About to Reach One Light-Day from Earth

https://scienceclock.com/voyager-1-is-about-to-reach-one-light-day-from-earth/
142•ashishgupta2209•1h ago•32 comments

OpenAI needs to raise at least $207B by 2030 so it can continue to lose money

https://ft.com/content/23e54a28-6f63-4533-ab96-3756d9c88bad
133•akira_067•41m ago•74 comments

I don't care how well your "AI" works

https://fokus.cool/2025/11/25/i-dont-care-how-well-your-ai-works.html
261•todsacerdoti•5h ago•304 comments

A cell so minimal that it challenges definitions of life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
109•ibobev•5h ago•44 comments

Statistical Process Control in Python

https://timothyfraser.com/sigma/statistical-process-control-in-python.html
129•lifeisstillgood•7h ago•33 comments

Is DWPD Still a Useful SSD Spec?

https://klarasystems.com/articles/is-dwpd-still-useful-ssd-spec/
27•zdw•5d ago•11 comments

RunC Container Escape: What Docker and Kubernetes Users Need to Know

https://www.minimus.io/post/new-vulnerabilities-in-runc-allow-container-escape-what-docker-and-ku...
17•dimastopel•5d ago•1 comments

Qiskit open-source SDK for working with quantum computers

https://github.com/Qiskit/qiskit
13•thinkingemote•3h ago•0 comments

Show HN: KiDoom – Running DOOM on PCB Traces

https://www.mikeayles.com/#kidoom
288•mikeayles•17h ago•36 comments

I DM'd a Korean Presidential Candidate and Ended Up Building His Core Campaign

https://medium.com/@wjsdj2008/i-dmd-a-korean-presidential-candidate-and-ended-up-building-his-cor...
70•wjsdj2009•2h ago•27 comments

Image Diffusion Models Exhibit Emergent Temporal Propagation in Videos

https://arxiv.org/abs/2511.19936
71•50kIters•7h ago•12 comments

Surprisingly, Emacs on Android is pretty good

https://kristofferbalintona.me/posts/202505291438/
188•harryday•3d ago•90 comments

Copyparty, the FOSS file server [video]

https://www.youtube.com/watch?v=15_-hgsX2V0
141•franczesko•6d ago•40 comments

Cekura (YC F24) Is Hiring

https://www.ycombinator.com/companies/cekura-ai/jobs/0ZGLW69-forward-deployed-engineer-us
1•atarus•3h ago

Efficient solar cooking that stores heat in sand

https://www.sciencedirect.com/science/article/pii/S266711312500035X
49•gsf_emergency_6•2d ago•20 comments

There may not be a safe off-ramp for some taking GLP-1 drugs, study suggests

https://arstechnica.com/health/2025/11/glp-1-drugs-improve-heart-health-but-only-if-you-keep-taki...
29•voxadam•1h ago•10 comments

After 15 years, I use Outlook as my build pipeline

https://iwriteaboutcode.blogspot.com/2025/11/after-15-years-i-have-finally-reached.html
61•birdculture•3d ago•42 comments

Space Truckin' – The Nostromo (2012)

https://alienseries.wordpress.com/2012/10/23/space-truckin-the-nostromo/
128•exvi•13h ago•82 comments

Trillions spent and big software projects are still failing

https://spectrum.ieee.org/it-management-software-failures
542•pseudolus•1d ago•483 comments

Justice dept. requires Realpage end sharing competitively sensitive information

https://www.justice.gov/opa/pr/justice-department-requires-realpage-end-sharing-competitively-sen...
14•phkahler•1h ago•6 comments

A new bridge links the math of infinity to computer science

https://www.quantamagazine.org/a-new-bridge-links-the-strange-math-of-infinity-to-computer-scienc...
217•digital55•19h ago•118 comments

Jakarta is now the biggest city in the world

https://www.axios.com/2025/11/24/jakarta-tokyo-worlds-biggest-city-population
377•skx001•1d ago•297 comments

CS234: Reinforcement Learning Winter 2025

https://web.stanford.edu/class/cs234/
155•jonbaer•15h ago•28 comments

Show HN: We built an open source, zero webhooks payment processor

https://github.com/flowglad/flowglad
341•agreeahmed•22h ago•194 comments

1,700-year-old Roman sarcophagus is unearthed in Budapest

https://apnews.com/article/hungary-roman-sarcophagus-discovery-budapest-77a41fe190bbcc167b43d0514...
109•gmays•1d ago•66 comments

How to repurpose your old phone into a web server

https://far.computer/how-to/
282•louismerlin•3d ago•100 comments

Launch HN: Onyx (YC W24) – Open-source chat UI

215•Weves•1d ago•142 comments

FLUX.2: Frontier Visual Intelligence

https://bfl.ai/blog/flux-2
334•meetpateltech•1d ago•95 comments

Largest-Triangle-Three-Buckets and the Fourier Transform (2024)

https://daniel.mitterdorfer.name/posts/2024-01-30-downsampling-lttb-and-fft/
22•wonger_•4d ago•7 comments

Java Decompiler

http://java-decompiler.github.io
102•mooreds•3d ago•42 comments
Open in hackernews

EM-LLM: Human-Inspired Episodic Memory for Infinite Context LLMs

https://github.com/em-llm/EM-LLM-model
113•jbotz•6mo ago

Comments

MacsHeadroom•6mo ago
So, infinite context length by making it compute bound instead of memory bound. Curious how much longer this takes to run and when it makes sense to use vs RAG.
zfountas•6mo ago
Hi MacsHeadroom, first author here. Thanks for the great questions about compute/memory trade-offs.

The quick take: To give you an example of processing speed, with a 7B model on an NVIDIA V100, EM-LLM processes (or generates) about 326 tokens/sec with a 51.2K context window (which is quite competitive for these old GPUs).

More broadly, EM-LLM is designed to make ultra-long contexts (memory-prohibitive for standard O(n^2) attention) computationally tractable. The Appendix C of our paper https://openreview.net/pdf?id=BI2int5SAC details how: significantly better attention scaling, efficient O(nm) memory formation, and large KV cache management via CPU/disk offloading. While there's a slight per-chunk overhead compared to the simplest retrieval methods initially, the crucial part is our ability to handle sequences at scales infeasible for full-context models. For instance, we're successfully using 8B models with 10M token contexts on a single GPU without prohibitive delays.

Regarding RAG in particular, EM-LLM often shows significant gains on tasks needing deep understanding of a single, long, coherent context. A key reason is that EM-LLM allows each layer to retrieve and integrate relevant information from different "episodes" of the context independently, offering more nuance than a typical single RAG step, for similar overall resource use.

mountainriver•6mo ago
TTT, cannon layers, and titans seem like a stronger approach IMO.

Information needs to be compressed into latent space or it becomes computationally intractable

searchguy•6mo ago
do you have references to

> TTT, cannon layers, and titans

najarvg•6mo ago
This was the nearest reference I could find. Links to an unofficial pytorch implementation on Github are also linked in the threads somewhere - https://www.reddit.com/r/LocalLLaMA/comments/1i0q8nw/titans_...
vessenes•6mo ago
is titans replicated? I feel like lucidrains couldn't replicate.
logicchains•6mo ago
I think something like Titans explains Gemini's excellent long context performance. That would explain why the Titan team hasn't released the training code or hyperpameters used even though they said in the paper that they would, and why soon after that it came out that DeepMind would be holding off publishing new results for 6 months to avoid giving away competitive advantages.
p_v_doom•6mo ago
Interesting. Before there even was attention I was thinking that the episodic memory model offers something that could be very useful for neural nets, so its cool to see people testing that
killerstorm•6mo ago
Note that this works within a single sequence of tokens. It might be consistent with "episodic memory" metaphor if we consider a particular transformer run as its experience.

But this might be very different from what people expect from "memory" - i.e. ability to learn vast amounts of information and retrieve it as necessary.

This is more like a refinement of transformer attention: instead of running attention over all tokens (which is very expensive as it's quadratic), it selects a subset of token spans and runs fine-grained attention only on those. So it essentially breaks transformer attention into two parts - coarse-grained (k-NN over token spans) and fine-grained (normal).

It might be a great thing for long-context situations. But it doesn't make sense when you want millions of different facts to be considered - making them into long context is rather inefficient.

yorwba•6mo ago
It would be inefficient if you had to do it from scratch for every query, but if you can do it once as a preprocessing step and reuse the prepared context for many queries, it might start to become more efficient than a shorter context that includes only some documents but has to be reprocessed because it's different every time.
killerstorm•6mo ago
Yes, I think it might be a good solution where you have a context up to 10M of tokens and you do a lot of requests with that context. It might be relevant for agentic stuff which tends to produce long chat logs - especially with some gadgets on top, e.g. some 'episodes' might be completely removed as obsolete.

But I don't think it's a good solution for bigger amounts of data - as in that case it's more beneficial if that can be formed into independent memories.