frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

An Economic Analysis of a Drug-Selling Gang's Finances [pdf]

https://pricetheory.uchicago.edu/levitt/Papers/LevittVenkateshAnEconomicAnalysis2000.pdf
1•paulpauper•27s ago•0 comments

Agent Session Kit (ASK) – Git guardrails for AI-assisted coding workflows

https://github.com/qarau/agent-session-kit
1•qarau•30s ago•1 comments

Teenagers report for duty as Croatia reinstates conscription

https://www.bbc.com/news/articles/c93j2l32lzgo
1•tartoran•1m ago•0 comments

Show HN: LocalConvert –browser-based file converter using ffmpeg.wasm no uploads

1•Gokul_Raj_R•1m ago•0 comments

Advice for (Berkeley) Ph. D. students in math (2013)

https://blogs.ams.org/mathgradblog/2013/06/25/advice-berkeley-ph-d-students-math-bjorn-poonen/
1•paulpauper•1m ago•0 comments

Billionaires are a danger to themselves and (especially) us

https://pluralistic.net/2026/03/09/autocrats-of-trade-2/
1•Refreeze5224•2m ago•0 comments

Show HN: SimpleStats – Server-side Laravel analytics, immune to ad blockers

https://simplestats.io/blog/server-side-analytics-laravel
1•Sairahcaz2k•2m ago•1 comments

They Solved AI Hallucinations

https://www.youtube.com/watch?v=1ONwQzauqkc
1•neilellis•2m ago•0 comments

Show HN: TV Next – the uncluttered TV Tracking app you've been looking for

1•dmehers•3m ago•0 comments

Bell Character

https://en.wikipedia.org/wiki/Bell_character
1•baalimago•3m ago•0 comments

The Most Beautiful Freezer in the World: Notes on Baking at the South Pole

https://www.newyorker.com/culture/the-weekend-essay/the-most-beautiful-freezer-in-the-world
1•mitchbob•5m ago•1 comments

We went from 13 to 48 tools in our trading risk API for AI agents

https://github.com/System-R-AI/systemr-python
1•ashimnandi•6m ago•1 comments

Send a Message to Space

https://hellooo.space/
1•carlsverre•6m ago•0 comments

Autoformalization Is Required for Sovereignty

https://twitter.com/ani_pai/status/2031042753015013462
1•MrBuddyCasino•6m ago•0 comments

Gabibi is a tool for intentionally degrading images (in Japanese)

https://amix-design.com/tl/tool-gabibi/
1•anigbrowl•7m ago•0 comments

A New Chapter for Bluesky

https://bsky.social/about/blog/03-09-2026-a-new-chapter-for-bluesky
2•minimaxir•8m ago•0 comments

Mojo: GPU Puzzles

https://puzzles.modular.com/
1•tosh•8m ago•0 comments

What Is an AI Decision Engine

https://aicreationlabs.com/ai-decision-engine/
1•peteridah•9m ago•1 comments

Bluesky CEO Jay Graber Is Stepping Down

https://www.wired.com/story/bluesky-ceo-jay-graber-is-stepping-down/
2•zzzeek•9m ago•0 comments

How to Build MCP Servers for Your Internal Data

https://www.freecodecamp.org/news/how-to-build-mcp-servers-for-your-internal-data/
1•rmason•9m ago•0 comments

Participate in the 4th Berlin Salary Trends survey

https://survey.handpickedberlin.com/en
1•igorrek•11m ago•1 comments

Raccoons solve puzzles for the fun of it, new study finds

https://science.ubc.ca/news/2026-03/raccoons-solve-puzzles-fun-it-new-study-finds
1•geox•11m ago•0 comments

The "Sediment in Software"-Chart

https://www.youtube.com/watch?v=BxIsPxBAxHQ
1•brsc2909•12m ago•0 comments

AWS SDK for Rust: Using S3-Compatible APIs with Other Clouds

https://rup12.net/posts/s3-api-compatibility-is-awesome/
1•todsacerdoti•13m ago•0 comments

VFX artists vibe-coded a neural network green screen "unmixing" tool [video]

https://www.youtube.com/watch?v=3Ploi723hg4
1•fceruti•13m ago•0 comments

Iints-AF open-source pre-clinical simulation SDK for insulin delivery algorithms

https://python35.github.io/IINTS-Site/html/intelligence.html
1•BobbaersRune•13m ago•1 comments

Code Review for Claude Code

https://claude.com/blog/code-review
1•adocomplete•14m ago•0 comments

Reversible barocaloric effect in neopentyl plastic crystal solid solutions

https://www.nature.com/articles/s43246-026-01084-2
1•PaulHoule•14m ago•0 comments

Ghostty 1.3 Released

https://twitter.com/mitchellh/status/2031042095822340417
3•nodesocket•15m ago•0 comments

Golf club firm owned by Trump's sons merges with drone manufacturer

https://www.theguardian.com/business/2026/mar/09/trump-family-business-drones-merger
4•johnshades•17m 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•10mo 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•10mo ago
I need the answer if I fail...

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

cwackerfuss•10mo 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•10mo ago
Awesome job. Enjoyed playing this with my girl. Perhaps you can expose previous day puzzles for us to catch up on?
cwackerfuss•10mo ago
It's on my list for sure. Thanks for the message!
zahlman•10mo ago
You do, of course, restrict the user's input to a single word before showing it to the AI (to avoid jailbreaks)?
cwackerfuss•10mo ago
Others have tried and failed to jailbreak it. Give it a shot if you're keen and post results here.
cwackerfuss•10mo 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•10mo ago
Fun and easy to play!
cwackerfuss•10mo ago
Thanks glad you like it!
elpocko•10mo 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•10mo ago
ever heard of Wordle?
elpocko•10mo 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•10mo 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•10mo 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.