frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Diablo 4 on Ubuntu?

1•herodoturtle•2m ago•0 comments

Reflections on Trusting Trust (1984)

https://dl.acm.org/doi/epdf/10.1145/358198.358210
1•mooreds•2m ago•0 comments

Best YouTube creator for understanding low level computer systems

https://www.youtube.com/@coredumpped?si=yroi1PMasLpsEo0k
1•KinetiNode•4m ago•0 comments

Show HN: Autopoiesis: Concept for AI platforms shipped with repos

https://jakobbr.eu/2026/09/20/autopoiesis-concept-for-repos-bringing-their-own-preconfigured-ai-f...
1•waschl•5m ago•1 comments

Gov. Gavin Newsom vetoes state worker telework bill in latest battle over RTO

https://www.sacbee.com/news/politics-government/the-state-worker/article317302211.html
1•mancerayder•7m ago•1 comments

Show HN: OpensourceDB Tamper-evident,checksum-backed decision and session replay

https://github.com/ZIZKA-AI-SL/ZizkaDB
1•Arshad-Talpur•8m ago•0 comments

Ask HN: What is up with all the AI doomerism I'm seeing?

3•vasko•9m ago•0 comments

Meta launches legal challenge against UK media regulator over Online Safety Act

https://www.theguardian.com/media/2026/sep/20/meta-legal-challenge-uk-media-regulator-ofcom-onlin...
1•skor•9m ago•0 comments

Spotify Soloist, a headless Spotify client for Linux

https://developer.spotify.com/blog/2026-08-13-introducing-spotify-soloist
1•JustSkyfall•10m ago•0 comments

Lambda MicroEgg

https://www.philipzucker.com/lambda_miller_egg/
1•philzook•11m ago•0 comments

Burned Out and Unemployed, Young People in China Are Launching AI Startups

https://www.wsj.com/business/entrepreneurship/burned-out-and-unemployed-young-people-in-china-are...
2•Brajeshwar•12m ago•0 comments

Misaligned citations and LLM-generated scientific fraud

https://jilltxt.net/misaligned-citations-and-llm-generated-scientific-fraud/
2•jruohonen•13m ago•0 comments

Show HN: Swarm, an offline family tree app for macOS

https://github.com/samoilev/swarm
2•samoilev•14m ago•0 comments

Video games inspire great UX (2019)

https://jenson.org/games/
3•andsoitis•15m ago•0 comments

Consuming extra vitamin D is less good than it sounds

https://www.economist.com/science-and-technology/2026/09/18/consuming-extra-vitamin-d-is-less-goo...
3•markgavalda•16m ago•0 comments

The future needs files (2021)

https://jenson.org/files/
2•andsoitis•16m ago•0 comments

Prompts Aren't Real

https://evaluation.club
3•mcfunley•16m ago•0 comments

Our Airborne Demo Makes Space Solar Energy a Reality

https://www.overviewenergy.com/updates/airborne
1•thunderbong•17m ago•0 comments

Laya (OS Jev) on Mac M4 CoreML Offline (45 decisions per second)

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
1•putna•17m ago•0 comments

Show HN: I wanted Human Benchmark with global leaderboards, so I built it

https://humanrank.app/
1•maxiom•18m ago•0 comments

Why I Write?

https://notes.pault.ag/why-write/
1•jruohonen•18m ago•0 comments

Translator collapsed during Khadafy's rambling diatribe (2009)

https://nypost.com/2009/09/24/translator-collapsed-during-khadafys-rambling-diatribe/
1•Bluestein•20m ago•0 comments

The cold, harsh reality of the Strait of Magellan

https://worldhistory.substack.com/p/the-long-way-around
1•gdillard•21m ago•0 comments

In a world of wars and climate crisis, a new leader could save the UN

https://www.theguardian.com/commentisfree/2026/sep/20/un-new-leader-wars-climate-crisis-donald-trump
1•shadow28•22m ago•0 comments

A 256-byte Commodore 64 demo (2017)

https://linusakesson.net/scene/a-mind-is-born/index.php
1•dimonomid•23m ago•0 comments

Jev compiler – Turn the rules your agent keeps ignoring into gates you can test

https://github.com/doronp/jevc
2•doronp•23m ago•0 comments

ChiPass Release 2026.09.0

https://codeberg.org/ChiPass/ChiPass/releases/tag/v2026.09.0
1•birdculture•23m ago•0 comments

Why Hacker News Protects Google: The Anatomy of Big Tech Fanboyism

https://scored.co/c/Technology/p/1ATVMDyZXy/why-hacker-news-protects-google-/c
13•CanusLupus79•25m ago•1 comments

Investigation: Uncovering Chinese Academic Espionage at Stanford

https://stanfordreview.org/investigation-uncovering-chinese-academic-espionage-at-stanford/
1•harry_nutsachs•25m ago•0 comments

Deep mutual distrust will scupper US-China co-operation on AI

https://www.economist.com/china/2026/09/17/deep-mutual-distrust-will-scupper-us-china-co-operatio...
1•andsoitis•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.