frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

The arts are being crippled by conformity

https://thecritic.co.uk/the-arts-are-being-crippled-by-conformity/
1•drankl•1m ago•0 comments

The Level Design Book

https://book.leveldesignbook.com
1•keiferski•2m ago•0 comments

Citizens' Assemblies Can Help Repair Dysfunctional Democracies (2022)

https://www.noemamag.com/a-movement-thats-quietly-reshaping-democracy-for-the-better/
1•Tomte•2m ago•0 comments

Measurement Data (1996) [pdf]

https://www.bkent.net/Doc/mdarchiv.pdf
1•Tomte•3m ago•0 comments

The Context Strategy That Beats Outdated LLM Knowledge

https://maxime.ly/articles/context7/
1•mgaudin•5m ago•0 comments

Having your compile-time cake and eating it too

https://0x44.xyz/blog/comptime-1
1•signa11•11m ago•0 comments

Valve's Steam Deck update is now ready for everyone, including AMD handhelds

https://www.theverge.com/news/673114/valves-huge-steam-deck-update-is-now-ready-for-everyone-including-rival-amd-handhelds
2•HelloUsername•12m ago•1 comments

The Ingredients of a Productive Monorepo

https://blog.swgillespie.me/posts/monorepo-ingredients/
1•mifydev•16m ago•0 comments

Athex

https://www.facebook.com/?_fb_noscript=1
1•athex•19m ago•0 comments

Why is macOS text-to-speech still so horrible in 2025?

1•r33b33•24m ago•0 comments

Show HN: Movie-AI – Get Film Recommendations Based on AI and Emotion

https://movie-ai.top/
1•MovieAI•31m ago•1 comments

Something remarkable is happening with violent crime rates in the US

https://www.vox.com/good-news-newsletter/414368/violent-crime-rate-homicide-police-baltimore-pandemic-covid
3•nathcd•33m ago•1 comments

Which name feels more like a project management tool?

1•Eden-W•35m ago•1 comments

2025 is the year of Linux desktop for me

https://yoyo-code.com/2025-is-the-year-of-linux-desktop-for-me/
3•panstromek•36m ago•2 comments

Finland's plan to bury spent nuclear fuel for 100k years

https://www.bbc.com/future/article/20230613-onkalo-has-finland-found-the-answer-to-spent-nuclear-fuel-waste-by-burying-it
1•simonebrunozzi•38m ago•0 comments

200 MPH for 500 miles: How IndyCar drivers prepare for the big race

https://arstechnica.com/features/2025/05/how-to-try-to-win-the-indianapolis-500/
1•rntn•38m ago•0 comments

Mathpad: A mathematical keypad for students and professionals

https://github.com/Summa-Cogni/Mathpad
2•todsacerdoti•41m ago•0 comments

Gen2seg: Generative Models Enable Generalizable Instance Segmentation

https://arxiv.org/abs/2505.15263
1•danielmorozoff•45m ago•0 comments

Show HN: Chakra – An open source WASM runtime in Rust

2•anistark•47m ago•0 comments

Asus IoT Unveils RUC-1000 Series with 600W GPU Support and Up to 4000 Tops

https://linuxgizmos.com/asus-iot-unveils-ruc-1000-series-with-600w-gpu-support-and-up-to-4000-tops-at-computex-2025/
1•teleforce•47m ago•0 comments

Multiple users report dead Whoop 5.0 MG devices within first day

https://techissuestoday.com/whoop-5-0-mg-fitness-tracker-dead-within-hours-of-use/
1•croes•51m ago•0 comments

Changelog: Lazy trees (faster Nix builds)

https://determinate.systems/posts/changelog-determinate-nix-352/
1•internet_points•51m ago•0 comments

Show HN: I made an AirPlay Server for iOS

https://testflight.apple.com/join/8aeqD8Q2
2•neon443•1h ago•1 comments

The Hollowing of Myth

https://warwickpowell.substack.com/p/the-hollowing-of-myth
2•hunglee2•1h ago•0 comments

Collatz's Ant and Similarity of Landscapes

https://gbragafibra.github.io/2025/05/18/collatz_ant3.html
1•Fibra•1h ago•0 comments

(Jet): The Japan Exchange and Teaching Programme

https://jetprogramme.org/en/
3•simonebrunozzi•1h ago•0 comments

Why, in 2025, do we still need a 3rd party app to write a REST API with Django?

https://www.djangoproject.com/weblog/2025/may/22/why-need-3rd-party-app-rest-api-with-django/
2•brylie•1h ago•0 comments

Transpiler Is a Meaningless Word

https://people.csail.mit.edu/rachit/post/transpiler/
3•birdculture•1h ago•1 comments

Fastlane Plugin for Translating iOS Apps

https://github.com/tijs/fastlane-plugin-translate
1•tijs•1h ago•1 comments

The Comic Misanthrope in a Moral Age

https://medium.com/luminasticity/the-comic-misanthrope-in-a-moral-age-60ddd0f8bf28
1•bryanrasmussen•1h ago•0 comments
Open in hackernews

Infinite Tool Use

https://snimu.github.io/2025/05/23/infinite-tool-use.html
22•tosh•4h ago

Comments

anko•1h ago
I have been thinking along these lines myself. Most of the time, if we need to calculate things, we'd use a calculator or some code. We wouldn't do it in our head, unless it's rough or small enough. But that's what we ask LLMs to do!

I believe we juggle 7 (plus or minus 2) things in our short term memory. Maybe short term memory could be a tool!

We also don't have the knowledge of the entire internet in our heads, but meanwhile we can still be more effective at strategy/reasoning/planning. Maybe a much smaller model could be used if the only thing it had to do is use tools and have a basic grasp on a language.

blixt•28m ago
Let’s not forget that every round trip with the LLM costs latency (and extra input tokens). We now have parallel tool calls which sometimes works in some models[1]. But it’s great because now a model can say “write these 3 files then read these 2 files” before the time-to-first token latency is incurred once more (not to mention input token cost).

I think LLMs will indirectly move towards being fuzzy VMs that output tokens much like VM instructions so they can prepare multiple conditional branches of tool calling, load/unload useful subprograms, etc. It might not be expressed exactly like that, but I think given how LLMs today are very poor at reusing things in their context window, we will naturally add features that take us in this direction. Also see frameworks like CodeAct[2] etc.

[1] This can be converted to a single tool call with many arguments instead, which you’ll see providers do in their internal tools, but it’s just messier.

[2] https://machinelearning.apple.com/research/codeact