frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Compensation in AI Tokens?

https://www.bogleheads.org/forum/viewtopic.php?t=469693
1•CoffeeOnWrite•33s ago•0 comments

The Faith AI Covenant

https://faithaicovenant.com/
1•niemandhier•39s ago•0 comments

Apple and Google are gradually expanding their use of hardware-based attestation

https://twitter.com/GrapheneOS/status/2053507778719748465
1•marcofloriano•1m ago•0 comments

MpvNova – Android TV focused libmpv player

https://github.com/Laskco/mpvNova
1•retro_guy•6m ago•0 comments

Show HN: Describe your idea, get a live landing page with real users

https://usespark.net/
1•DSpider•6m ago•0 comments

Hjk

1•milindsoni201•6m ago•1 comments

Expo Development Lifecycle – From Code to Play Store

https://blog.codonomics.com/2026/05/expo-development-lifecycle-from-code-to.html
1•sirkarthik•6m ago•0 comments

Angular Long-Term Support (LTS) Proposal for Enterprise Development

https://github.com/angular/angular/issues/68660
1•DeveloperOne•8m ago•0 comments

The Bathtub Curve

https://blog.dshr.org/2025/10/the-bathtub-curve.html
2•jruohonen•8m ago•0 comments

I tried to build a LitRPG sandbox with on the fly generated sprites

https://app.productnow.ai/public/doc/gsfw-idtx-gwcs
1•kadhirvelm•11m ago•1 comments

The Singularity Is the Friends We Made Along the Way

https://geohot.github.io//blog/jekyll/update/2026/05/09/real-singularity.html
1•ollin•11m ago•0 comments

GitHub Is Sinking

https://dbushell.com/2026/04/29/github-is-sinking/
6•herbertl•13m ago•0 comments

Ezdoctor: Single-file Asciidoctor with diagrams and syntax highlightning

https://github.com/l3nz/ezdoctor
1•kimi•13m ago•0 comments

Robot Dogs Are a Security Nightmare – Benn Jordan [video]

https://www.youtube.com/watch?v=ftrTJTzV4PY
1•athrowaway3z•15m ago•0 comments

The Locals Don't Know

https://www.quarter--mile.com/The-Locals-Dont-Know
2•herbertl•17m ago•1 comments

A Chatbot Masters?

https://telescoper.blog/2026/04/30/a-chatbot-masters/
1•jruohonen•17m ago•0 comments

Services Masquarading as Software 30x30

https://www.silverbackcto.com/
1•dudemanAtl•20m ago•2 comments

Show HN: NostalgiApp – A LaunchBox-style game launcher for macOS

4•jupe69•22m ago•0 comments

The Return of the Unix Workstation (Now with AI)

https://jasoneckert.github.io/myblog/return-of-the-unix-workstation/
1•ingve•23m ago•0 comments

The Return to Analog

https://www.rickmanelius.com/p/the-return-to-analog
3•mooreds•23m ago•2 comments

AAuth Protocol Explorer

https://explorer.aauth.dev/
1•mooreds•24m ago•0 comments

Prefer Terraform Module Composition over Inheritance (2025)

https://newsletter.masterpoint.io/p/prefer-module-composition-over-inheritance
1•mooreds•25m ago•0 comments

Embrace, Extend, Extinguish?

http://eee.fyi/
4•pie_flavor•28m ago•1 comments

Entity Component Systems FAQ

https://github.com/SanderMertens/ecs-faq
2•tosh•30m ago•0 comments

Ask HN: What sci fi books are you reading now?

2•pianetanaif•31m ago•2 comments

Microsoft Lead: "AI Will Never Replace Coders, Here's Why" [video]

https://www.youtube.com/watch?v=CPrePbvbbic
4•tosh•37m ago•0 comments

We accidentally recreated old Facebook

https://amrshawky.com/posts/we-accidentally-recreated-fb/
2•amr_shawky•39m ago•0 comments

Detecting PostgreSQL optimization issues with deterministic analysis

https://beh74.github.io/pgassistant-blog/post/global_advisor/
1•bertrandhartwig•39m ago•0 comments

Scientists warn Atlantic current at risk of shutting down

https://e360.yale.edu/features/amoc-climate-change
77•ambigious7777•40m ago•53 comments

Visualizing LLM embeddings on a sphere

https://github.com/dbyter/sphere-embed
1•ahmedhawas123•42m ago•1 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.