frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

MiniMax-M1 open-weight, large-scale hybrid-attention reasoning model

https://github.com/MiniMax-AI/MiniMax-M1
116•danboarder•3h ago•5 comments

Scrappy - make little apps for you and your friends

https://pontus.granstrom.me/scrappy/
178•8organicbits•4h ago•53 comments

The Grug Brained Developer (2022)

https://grugbrain.dev/
792•smartmic•13h ago•327 comments

I counted all of the yurts in Mongolia using machine learning

https://monroeclinton.com/counting-all-yurts-in-mongolia/
29•furkansahin•2h ago•4 comments

Honda conducts successful launch and landing of experimental reusable rocket

https://global.honda/en/topics/2025/c_2025-06-17ceng.html
1047•LorenDB•19h ago•315 comments

Show HN: Lstr – A modern, interactive tree command written in Rust

https://github.com/bgreenwell/lstr
124•w108bmg•8h ago•38 comments

The "standard" car charger is usually overkill [video]

https://www.youtube.com/watch?v=W96a8svXo14
12•CaliforniaKarl•2d ago•1 comments

Bzip2 crate switches from C to 100% Rust

https://trifectatech.org/blog/bzip2-crate-switches-from-c-to-rust/
270•Bogdanp•14h ago•114 comments

Benchmark: SnapDOM may be a serious alternative to html2canvas

https://zumerlab.github.io/snapdom/
26•jmm77•3h ago•11 comments

Which company would you prefer to join?

https://www.companymatches.com/
28•wsycharles0o•4h ago•21 comments

Sam Altman Says Meta Offered OpenAI Staffers $100M Bonuses

https://www.bloomberg.com/news/articles/2025-06-17/altman-says-meta-offered-openai-staffers-100-million-bonuses
29•EvgeniyZh•1h ago•32 comments

OpenSERDES – Open Hardware Serializer/Deserializer (SerDes) in Verilog

https://github.com/SparcLab/OpenSERDES
38•peter_d_sherman•6h ago•3 comments

Building Effective AI Agents

https://www.anthropic.com/engineering/building-effective-agents
376•Anon84•16h ago•65 comments

A Straightforward Explanation of the Good Regulator Theorem

https://www.lesswrong.com/posts/JQefBJDHG6Wgffw6T/a-straightforward-explanation-of-the-good-regulator-theorem
11•surprisetalk•3d ago•0 comments

3D-printed device splits white noise into an acoustic rainbow without power

https://phys.org/news/2025-06-3d-device-white-noise-acoustic.html
149•rbanffy•2d ago•24 comments

“Don’t mock what you don't own” in 5 minutes (2022)

https://hynek.me/articles/what-to-mock-in-5-mins/
23•JNRowe•2d ago•13 comments

What Google Translate can tell us about vibecoding

https://ingrids.space/posts/what-google-translate-can-tell-us-about-vibecoding/
175•todsacerdoti•14h ago•101 comments

Locally hosting an internet-connected server

https://mjg59.dreamwidth.org/72095.html
51•pabs3•5h ago•41 comments

AMD's CDNA 4 Architecture Announcement

https://chipsandcheese.com/p/amds-cdna-4-architecture-announcement
155•rbanffy•16h ago•29 comments

Now might be the best time to learn software development

https://substack.com/home/post/p-165655726
219•nathanfig•19h ago•142 comments

Resurrecting a dead torrent tracker and finding 3M peers

https://kianbradley.com/2025/06/15/resurrecting-a-dead-tracker.html
529•k-ian•16h ago•164 comments

Show HN: Cpdown – Copy any webpage/YouTube subtitle as clean Markdown(LLM-ready)

https://news.ycombinator.com/from?site=github.com/ysm-dev
6•ysm0622•3h ago•1 comments

Dinesh’s Mid-Summer Death Valley Walk (1998)

https://dineshdesai.info/dv/photos.html
61•wonger_•10h ago•22 comments

Making 2.5 Flash and 2.5 Pro GA, and introducing Gemini 2.5 Flash-Lite

https://blog.google/products/gemini/gemini-2-5-model-family-expands/
315•meetpateltech•18h ago•186 comments

Timescale Is Now TigerData

https://www.tigerdata.com/blog/timescale-becomes-tigerdata
109•pbowyer•19h ago•69 comments

Foundry (YC F24) Hiring Early Engineer to Build Web Agent Infrastructure

https://www.ycombinator.com/companies/foundry/jobs/azAgJbN-foundry-software-engineer-new-grad-to-mid-level
1•lakabimanil•13h ago

Why JPEGs still rule the web (2024)

https://spectrum.ieee.org/jpeg-image-format-history
172•purpleko•19h ago•300 comments

Proofs Without Words

https://artofproblemsolving.com/wiki/index.php/Proofs_without_words
52•squircle•3d ago•11 comments

LLMs pose an interesting problem for DSL designers

https://kirancodes.me/posts/log-lang-design-llms.html
156•gopiandcode•14h ago•104 comments

I Wrote a Compiler

https://blog.singleton.io/posts/2021-01-31-i-wrote-a-compiler/
69•ingve•3d ago•36 comments
Open in hackernews

Incant – add magic spells to your code

https://github.com/montyanderson/incant
15•montyanderson•2d ago

Comments

marcus_holmes•6h ago
I'm curious how the hallucination-free guarantee works? Does it only guarantee that the output is a subset of the input?

In the case of the male names, if I include a gender-neutral name like "Sam" does that include it because it is a male name, or exclude it because it is a female name? Can I set this to be inclusive or exclusive?

Looks interesting, though. Nice work.

kinduff•5h ago
There is a filter for `createFilter` [1] and there is a throw if the index of the array doesn't exist for `createSelector` [2]. Maybe this is what the author refers to as hallucination-free, but falls pretty short.

[1]: https://github.com/montyanderson/incant/blob/master/mod.ts#L...

[2]: https://github.com/montyanderson/incant/blob/master/mod.ts#L...

marcus_holmes•5h ago
Yeah, so it's just guaranteeing that the output is a subset of the inputs, thanks for the clarification.
helloplanets•3h ago
How does this differ from function calling? For example, the basic enums example for Gemini function calling:

> color_temp: { type: Type.STRING, enum: ['daylight', 'cool', 'warm'], description: 'Color temperature of the light fixture, which can be `daylight`, `cool` or `warm`.', }

https://ai.google.dev/gemini-api/docs/function-calling?examp...

supermatt•3h ago
It’s the inverse of function calling. Here the function is calling the LLM, not vice versa.
supermatt•3h ago
> no hallucinations possible

It can still hallucinate a response that is defined in the filter.

E.g if you have a filter with names of capital cities [“London”, “Paris”, “Madrid”] , and you ask “What is the capital of France” it could respond “Madrid”

ycombinatrix•2h ago
Is that a hallucination, or is it just plain wrong?
supermatt•2h ago
An AI hallucination is any response that contains false or misleading information presented as fact. So a wrong answer is an hallucination.
thih9•2h ago
Note that this is a very simple library and not very efficient. E.g. for the code that filters an array, it would run N prompts[1]:

    `You are a filter agent.\nYour job is to return whether an item matches the criteria: ${criteria}\nRespond only with true or false.`
It's a cool demo, but I wouldn't use that in production; IMO having that code in a separate library offers little benefit and increases the risk of misuse.

[1]: https://github.com/montyanderson/incant/blob/73606e826d6e5b0...