frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Axios compromised on NPM – Malicious versions drop remote access trojan

https://www.stepsecurity.io/blog/axios-compromised-on-npm-malicious-versions-drop-remote-access-t...
1535•mtud•14h ago•600 comments

Open source CAD in the browser (Solvespace)

https://solvespace.com/webver.pl
141•phkahler•4h ago•39 comments

GitHub Monaspace Case Study

https://lettermatic.com/custom/monaspace-case-study
46•homebrewer•1h ago•15 comments

A Love Letter to 'Girl Games'

https://aftermath.site/a-love-letter-to-girl-games/
42•zdw•5d ago•0 comments

Cohere Transcribe: Speech Recognition

https://cohere.com/blog/transcribe
14•gmays•33m ago•3 comments

Oracle slashes 30k jobs

https://rollingout.com/2026/03/31/oracle-slashes-30000-jobs-with-a-cold-6/
518•pje•2h ago•396 comments

Ollama is now powered by MLX on Apple Silicon in preview

https://ollama.com/blog/mlx
529•redundantly•13h ago•260 comments

Artemis II is not safe to fly

https://idlewords.com/2026/03/artemis_ii_is_not_safe_to_fly.htm
699•idlewords•14h ago•442 comments

Claude Code's source code has been leaked via a map file in their NPM registry

https://twitter.com/Fried_rice/status/2038894956459290963
1148•treexs•7h ago•613 comments

Italy blocks US use of Sicily air base for Middle East war

https://www.politico.eu/article/italy-blocks-us-use-of-sicily-air-base/
118•prmph•1h ago•43 comments

Audio tapes reveal mass rule-breaking in Milgram's obedience experiments

https://www.psypost.org/audio-tapes-reveal-mass-rule-breaking-in-milgram-s-obedience-experiments-...
129•lentoutcry•3d ago•80 comments

Combinators

https://tinyapl.rubenverg.com/docs/info/combinators
83•tosh•5h ago•22 comments

Dot – A Siri Replacement learns skills through Apple Shortcuts

https://apps.apple.com/us/app/dot-ai-personal-assistant/id6758647775
8•forestplasencia•1h ago•0 comments

RubyGems Fracture Incident Report

https://rubycentral.org/news/rubygems-fracture-incident-report/
35•schneems•2h ago•1 comments

Tell HN: Chrome says "suspicious download" when trying to download yt-dlp

152•joering2•1h ago•49 comments

Securing Elliptic Curve Cryptocurrencies Against Quantum Vulnerabilities [pdf]

https://quantumai.google/static/site-assets/downloads/cryptocurrency-whitepaper.pdf
6•jandrewrogers•59m ago•0 comments

Microsoft: Copilot is for entertainment purposes only

https://www.microsoft.com/en-us/microsoft-copilot/for-individuals/termsofuse
136•lpcvoid•2h ago•56 comments

What major works of literature were written after age of 85? 75? 65?

https://statmodeling.stat.columbia.edu/2026/03/25/what-major-works-of-literature-were-written-aft...
77•paulpauper•3d ago•52 comments

Show HN: Loreline, narrative language transpiled via Haxe: C++/C#/JS/Java/Py/Lua

https://loreline.app/en/docs/technical-overview/
20•jeremyfa•3d ago•6 comments

Multiple Sclerosis

https://subfictional.com/multiple-sclerosis/
43•luu•4d ago•17 comments

Good Code Will Still Win

https://www.greptile.com/blog/ai-slopware-future
7•dakshgupta•2h ago•3 comments

Fedware: Government apps that spy harder than the apps they ban

https://www.sambent.com/the-white-house-app-has-huawei-spyware-and-an-ice-tip-line/
637•speckx•22h ago•252 comments

Scotty: A beautiful SSH task runner

https://freek.dev/3064-scotty-a-beautiful-ssh-task-runner
4•speckx•47m ago•0 comments

Universal Claude.md – cut Claude output tokens

https://github.com/drona23/claude-token-efficient
412•killme2008•15h ago•147 comments

RamAIn (YC W26) Is Hiring

https://www.ycombinator.com/companies/ramain/jobs/jezgwo5-ai-ml-research-engineer
1•svee•9h ago

Google's 200M-parameter time-series foundation model with 16k context

https://github.com/google-research/timesfm
254•codepawl•11h ago•95 comments

Show HN: Hyprmoncfg – Terminal-based monitor config manager for Hyprland

https://paolino.me/hyprmoncfg-monitor-configuration-for-hyprland/
6•earcar•55m ago•0 comments

Do your own writing

https://alexhwoods.com/dont-let-ai-write-for-you/
685•karimf•1d ago•218 comments

Project Mario: the inside story of DeepMind

https://colossus.com/article/project-mario-demis-hassabis-deepmind-mallaby/
5•highfrequency•1h ago•0 comments

Good CTE, Bad CTE

https://boringsql.com/posts/good-cte-bad-cte/
143•radimm•1d ago•34 comments
Open in hackernews

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

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

Comments

MacsHeadroom•10mo 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•10mo 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•10mo 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•10mo ago
do you have references to

> TTT, cannon layers, and titans

najarvg•10mo 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•10mo ago
is titans replicated? I feel like lucidrains couldn't replicate.
logicchains•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.