frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TickerWhale – nightly 0-100 scores and fair values for 1,300 stocks

https://tickerwhale.com
1•nacer222•35s ago•0 comments

Googlebook – Meet the Lineup and pre-order

https://googlebook.google/shop/
1•bretpiatt•3m ago•1 comments

Grok 4.7 Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/grok-4-7
2•theanonymousone•3m ago•0 comments

Show HN: Agent Chaperone – Screen AI agent tool calls and results with Jev

https://github.com/agent-chaperone/agent-chaperone
1•sepehrsafari•5m ago•0 comments

Show HN: flyOS – A fruit fly connectome simulated in real time on an iPhone

https://www.becomethefly.com
1•coryetzkorn•5m ago•0 comments

Saudi Arabia's Ceer launches flagship electric vehicles

https://www.agbi.com/manufacturing/2026/09/saudi-arabias-ceer-launches-flagship-electric-vehicles/
3•abdullahalharir•7m ago•0 comments

Modulate ML Team Announces New Public Entity Transcription Benchmark

https://www.modulate.ai/blog/modulate-ml-team-announces-new-public-entity-transcription-benchmark
1•voicevector5•7m ago•0 comments

WTF Is Up with Napster's AI Pivot?

https://tedium.co/2026/09/21/napster-ai-pivot/
2•speckx•8m ago•0 comments

Alcor: Simulate cpuid and sgdt/sidt results per-process

https://github.com/er-azh/alcor
1•Tiberium•8m ago•0 comments

Google hit with €403M fine by Irish data watchdog over GDPR violations

https://www.bbc.co.uk/news/articles/ck1e52v16ngxo
2•philbo•9m ago•0 comments

Raspberry Pi founder Eben Upton: 'I'm an Omni-geek

https://www.ft.com/content/2285c111-b103-4b04-96c7-fe26a3c04c3e
1•imichael•10m ago•0 comments

Grok 4.7 is here with Electrical engineering benchmark which beats fable 5.1 max

https://twitter.com/hive_echo/status/2102072241420898708
1•echohive42•11m ago•0 comments

Delta A21N at Kahului on Sep 19th 2026, fuel fumes on board

https://avherald.com/h?article=541628f4
2•r2sk5t•14m ago•0 comments

WWLD #1: Domains and gas station hotdogs

https://chaosguru.substack.com/p/wwld-1-domains-and-gas-station-hotdogs
3•taubek•16m ago•0 comments

The agents, they just want to talk

https://snats.xyz/pages/articles/political_ecology/the_agents_they_just_want_to_talk.html
2•snats•17m ago•1 comments

Amazon Blocks Meta's Muse AI Agent from Its Retail Site

https://www.bloomberg.com/news/articles/2026-09-21/amazon-blocks-meta-s-muse-ai-agent-from-its-re...
3•k2m•17m ago•1 comments

Show HN: Foremerge – Catch Intent Conflicts Between Parallel Coding Agents

https://github.com/naw103/foremerge
4•foremerge•17m ago•0 comments

Measuring nothing (with great accuracy) (2014)

https://seths.blog/2014/01/measuring-nothing-with-great-accuracy/
2•compiler-guy•17m ago•0 comments

Thinking, Fast and Slow

https://en.wikipedia.org/wiki/Thinking,_Fast_and_Slow
4•vinhnx•17m ago•0 comments

Building a Browser Without V8: What Broke, and What Worked

https://medium.com/@Koukyosyumei/building-a-browser-without-v8-what-broke-and-what-worked-bb3bd78...
2•syumei•18m ago•0 comments

Show HN: Fusion-runtime – self-hosted voice agents, STT+LLM+TTS in one process

https://github.com/SamarthUrs18/fusion-runtime
2•samarthurs18•19m ago•0 comments

Show HN: Code Graph View – What if you could navigate a codebase as a graph?

https://github.com/otobongfp/code-graph-view
2•otobong•19m ago•0 comments

How Secrets Work in Docker

https://infisical.com/blog/docker-secrets-management
3•FinnLobsien•20m ago•0 comments

Steerable Cultural Preference Optimization of Reward Models

https://arxiv.org/abs/2606.18606
2•measurablefunc•23m ago•0 comments

pwn.college - Learn to Hack

https://pwn.college/
2•mihau•24m ago•1 comments

First Autonomous Flight Across the United States

https://www.jobyaviation.com/news/joby-completes-first-ever-fully-autonomous-flight-across-the-un...
2•geox•25m ago•1 comments

This Digital Radio Gets Messages to the World’s Remotest Locations

https://spectrum.ieee.org/hermes-shortwave-radio-digital-data
3•SamuraiLion•25m ago•0 comments

Fable 5 – Median thinking declined in August

https://twitter.com/Lon/status/2101793422487204027
13•espeed•25m ago•0 comments

Nginx Control API: View In-Memory Configuration and Reload via HTTP Requests

https://blog.nginx.org/blog/nginx-control-api-view-in-memory-configuration-and-reload-via-http-re...
2•aaaaffine•25m ago•1 comments

The reason children no longer enjoy reading

https://spectator.com/article/the-real-reason-children-no-longer-enjoy-reading/
6•netfortius•26m ago•0 comments
Open in hackernews

Show HN: Can you meld minds with AI and guess the same word?

https://www.convergegame.com/
11•cwackerfuss•1y ago
I built a daily word association puzzle where you engage in a quiet, collaborative mind meld with AI. I'd love to have folks try it out and tell me what they think!

Here's how it works: 1. Enter your first word to reveal the AI's word of the day. 2. Don't think too hard about it. It's just a starting point. 3. Both of you think of a word that connects the two. 4. To win, you need to say the same word. 5. You have 8 guesses to converge. 6. Need a hint? The AI will drop a riddle in your final two guesses.

HOW DOES IT WORK? After the user_word + ai_word are submitted, I trigger two separate LLM calls which return structured data that I use to advance the game: 1. `evaluate_match`: this reasons about the match to decide if it should be counted as a convergence, and returns the reasoning, a bool, and a similarity score (this is what powers the rings that get further/closer to eachother in the game background and the green squares in the share results) 2. `guess_word`: this takes the two words, reasons about what a good next word might be, and returns the reasoning and new word.

I store the new word without revealing it to the user, so that after the user has time to decide and input their word, the AI has already had its next word selected since the last round ended.

I used BAML with OpenRouter to quickly iterate on prompts and easily switch between LLMs to compare outputs. I settled on gemini-2.0-flash as the right combination of quality, speed, and cost.

Comments

nosmokewhereiam•1y ago
I need the answer if I fail...

Otherwise super fun and unique! Well done, thank you for sharing this.

cwackerfuss•1y ago
Thank you! The solution is when user_word === ai_word, so there isn't technically an "answer." The only pre-determined word in the game is the first word the AI chooses, which is the same word for all players, each day.
apheliosos•1y ago
Awesome job. Enjoyed playing this with my girl. Perhaps you can expose previous day puzzles for us to catch up on?
cwackerfuss•1y ago
It's on my list for sure. Thanks for the message!
zahlman•1y ago
You do, of course, restrict the user's input to a single word before showing it to the AI (to avoid jailbreaks)?
cwackerfuss•1y ago
Others have tried and failed to jailbreak it. Give it a shot if you're keen and post results here.
cwackerfuss•1y ago
But to answer your question - yes the string must contain only valid english letters and must be between 2-25 characters in length. If you can jailbreak the system with those constraints I salute you!
bogconst3•1y ago
Fun and easy to play!
cwackerfuss•1y ago
Thanks glad you like it!
elpocko•1y ago
I will not come every day to play your "daily" game. I may look at it once and never come back, because I refuse to be held hostage by your artificial restriction (not to say preemptive enshittification) of getting one play per day.
cwackerfuss•1y ago
ever heard of Wordle?
elpocko•1y ago
You mean that one game that actually managed to pull off the game-a-day scheme four years ago through clever design and simple gameplay? The game with the inherently player-hostile scheme that's still inspiring thousands of talentless hacks on the internet? The actual successful game that attracted millions of copycat losers? Nope, never heard of it.
cwackerfuss•1y ago
Just wait until I tell you about your local newspaper’s Sunday crossword.

I built this game for fun. There are no ads, and I currently cover the LLM costs myself.

I’m not sure why you’re being so hostile toward the idea of a daily puzzle game. Wouldn’t it make more sense, ideologically, to direct your criticism at pay-to-win games designed to keep you playing for hours a day? This is a simple daily puzzle — a two-minute break that never asks for more of your time. How is that even remotely comparable?

elpocko•1y ago
You showed your game and asked for feedback. I gave you honest feedback: I won't play your "daily" game, because I think the "daily" aspect is an unnecessarily enforced, inherently player-hostile, mindlessly imitated anti-feature that's of no use to anyone.

Congratulations on making the game, I know it's hard to finish and release something. I wish you luck.