frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does Georgism work? Five years later

https://www.astralcodexten.com/p/does-georgism-work-five-years-later
72•silveraxe93•1d ago•35 comments

DeepSeek Elastic Compute (DSec)

https://arxiv.org/abs/2609.22978
147•shenli3514•6h ago•41 comments

PipePipe: NewPipe hard fork implementing SponsorBlock

https://github.com/InfinityLoop1308/PipePipe
312•Qision•1d ago•165 comments

An agent used DNS to reach an external chatbot

https://alignment.openai.com/misalignment-reports/an-agent-used-dns-to-reach-an-external-chatbot/
37•apsec112•20h ago•33 comments

Show HN: Reladraw – A diagram language where you decide where to place things

https://github.com/reladraw/reladraw
169•jpwalsh234•7h ago•50 comments

Evolving programming languages in the AI era

https://dashbit.co/blog/evolving-ai-era
21•pjm331•1d ago•9 comments

A searchable library of forgotten public-domain film clips from 1915 onward

https://www.movingimagearchive.com/
104•momentmaker•2d ago•23 comments

Drawgent: Coding agent on a live Excalidraw canvas

https://tangled.org/yanndegat.tngl.sh/drawgent
103•parasitid•9h ago•32 comments

Welcome to the Medical Clinic at the Interplanetary Relay Station

https://www.lightspeedmagazine.com/fiction/welcome-to-the-medical-clinic-at-the-interplanetary-re...
41•bucket2015•4h ago•7 comments

Go Concurrency Distilled

https://antonz.org/go-concurrency-distilled/
17•chmaynard•10h ago•2 comments

LA Metro has some of the slowest escalators on Earth

https://basin.la/articles/ninety-feet-a-minute.html
73•big_toast•2d ago•52 comments

Fifteen years later, the Apple Cards origin story

https://lexontech.org/fifteen-years-later-the-apple-cards-origin-story
338•ksec•15h ago•86 comments

Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC

https://www.righto.com/2026/09/8087-tangent-cordic.html
19•pwg•7h ago•3 comments

How one Twitch chat message became code execution on a streamer’s PC

https://blog.scrt.ch/2026/09/22/how-one-twitch-chat-message-became-code-execution-on-a-streamers-pc/
23•tau255•23h ago•4 comments

The Lost Atomic Update on Loongson CPU

https://jia.je/hardware/2026/09/24/loongson-cpu-erratum-en/
109•jiegec•2d ago•6 comments

Modern Object Pascal Introduction for Programmers

https://castle-engine.io/modern_pascal
144•birdculture•2d ago•58 comments

ASML says it sold 'absolutely nothing' in Europe in 2026

https://www.tomshardware.com/tech-industry/semiconductors/asml-says-its-sells-absolutely-nothing-...
138•MC995•1d ago•376 comments

HomeBody: A humanoid that explores, remembers, and acts on its own

https://tml.stanford.edu/homebody/
11•famouswaffles•6h ago•2 comments

The Evolution of Vending Machines

https://www.saturdayeveningpost.com/2026/09/from-holy-water-to-frozen-meals-the-evolution-of-vend...
10•ohjeez•7h ago•1 comments

Generate fonts where every LLM token is the same width

https://ampdot.mesh.host/token-space-fonts.html
22•z-mach9•1d ago•5 comments

Turning GLM-5.3-Flash into a Jev-like decision model

https://www.privatemode.ai/blog/system-one-from-glm-flash
10•flxflx•9h ago•5 comments

How I changed teaching after AI managed to do all my homework assignments

https://thelastsoftwareengineer.substack.com/p/how-i-changed-teaching-after-ai-managed
125•azhenley•2d ago•129 comments

Reading’s Bayeux Tapestry

https://diamondgeezer.blogspot.com/2026/09/readings-bayeux-tapestry.html
12•zeristor•14h ago•1 comments

Promising discoveries about the potential for life on one of Saturn’s icy moons

https://www.fu-berlin.de/en/presse/informationen/fup/2026/fup_26_116-enceladus-cassini-mikroben-s...
12•geox•21h ago•6 comments

How to keep enjoying programming in a world of LLMs

https://discourse.haskell.org/t/how-to-keep-enjoying-programming-in-a-world-of-llms/14705
150•signa11•15h ago•208 comments

Dutch designer made DE9: Closer to the Edit into a playable web-based instrument

https://www.creativeboom.com/work/why-merijn-straathof-turned-a-landmark-techno-album-into-a-play...
6•ChrisArchitect•2d ago•1 comments

Analyzing Frontier Model Progress with My Favourite Game: Prince of Persia

https://blog.priyan.in/2026/09/analyzing-frontier-model-progress-with.html
55•msephton•1d ago•38 comments

Breaking Up with Google Play: Why Conversations Is Now Free

https://gultsch.de/posts/breaking-up-with-google-play/
634•ezst•14h ago•249 comments

The Rise of Audio AR

https://www.dbreunig.com/2024/04/10/the_rise_of_audio_ar.html
28•dbreunig•2d ago•10 comments

Japan moves to tighten rules for foreigners

https://www.aljazeera.com/economy/2026/9/25/japan-moves-to-tighten-rules-for-foreigners-throwing-...
122•mikhael•7h ago•336 comments
Open in hackernews

Turning GLM-5.3-Flash into a Jev-like decision model

https://www.privatemode.ai/blog/system-one-from-glm-flash
10•flxflx•9h ago
We found an approach to get Jev-like properties from standard LLMs like GLM-5.3-Flash.

The core idea is to craft the input prompt so that the first output token answers the question. This makes it possible to get a decision with a single forward pass.

In the blog post, we describe the approach in detail for GLM-5.3-Flash and vLLM. We benchmark this setup against Jev and Laya. We find that our setup is on-par with Jev in terms of accuracy and speed and that it substantially outperforms Laya.

Still, in terms of costs per decision, Jev is several x better than our setup. In turn, our setup supports vision inputs.

Comments

m4y0u•8h ago
My question is why not use Jev instead? It's faster and cheaper.
andrewchambers•58m ago
These questions are answered by the OP (Same speed, image support) - additionally, GLM is open weight.
kylecazar•30m ago
There's some speculation that Jev is essentially an open weight model with novel post-training (RLCD). So, if these folks have competitive accuracy with just the base model, it could raise some questions about the necessity of Jev's architecture. You generally don't want to find yourself competing only on price.

Fyi, I haven't tested this yet.

dcss_gardener•13m ago
I mean just from what's known of the funding and timeline it pretty much has to be based on open weights.

But it is likely more than just a fine tune + novel training. At the very least the LM head is swapped out for a classifier one and then or also idk, bidirectional attention for the encoding pass I'm out of my depth at this point and will stop guessing. The training is probably where they have the biggest moat though, not that it's necessarily huge.

I have a project that fits jev as advertised almost comically well and I've been playing with it, and the various hacks and open versions. Jev doesn't necessarily perform better overall but it is quite different. It's sensitive to prompt phrasing in ways the others aren't, it's easy to generate questions where all the other models cluster in confidence but jev is an outlier. Not necessarily more correct, but it does feel like it's getting its answers in a different way.

I'm guessing just as much as anyone else but I've been spending a ton of time on this the last couple weeks, it landed right when I was most ready to dig into it.

Fordec•5m ago
Also, while it's clearly got a lot of training on some use cases, others that probably weren't in the training set have worse good decision rates than a random number generator. If you can rebuild the architecture, you can train it on your use case.