frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Scry – test migrations against production scale copy of your DB

https://www.scrydata.com/blog/the-postmortem-we-never-wrote/
1•gmcquillan•1m ago•1 comments

Show HN: Tabularis – DB GUI where drivers are JSON-RPC executables

1•debba•2m ago•0 comments

Tesla's Europe problem keeps getting worse

https://www.cnbc.com/2026/02/24/tesla-car-sales-elon-musk-europe-autos-trump-evs.html
1•Betelbuddy•3m ago•0 comments

Claude AI Agents Built a C Compiler:What It Means for the Future of AI Coding

https://manojgopanapalli.substack.com/p/sixteen-claude-ai-agents-built-a
1•thecontentboy•3m ago•0 comments

Show HN: Harp – Offline, Org-Mode Based Personal Health Records Application

https://docs.lepisma.xyz/harp/
1•lepisma•3m ago•0 comments

Show HN: I analyze your GitHub code and generate a developer personality card

https://howyoucode.dev
1•marcelglaeser•4m ago•1 comments

The long tail of niche AI apps on demand

https://www.djmurphy.net/blog/apps-on-demand/
2•sollewitt•5m ago•0 comments

Show HN: AI-Nexus – Unified Rule Manager for Claude Code, Cursor, and Codex

https://github.com/JSK9999/ai-nexus
1•suntrix3•5m ago•1 comments

Conduit AI – AI voice agent that answers missed calls for service businesses

https://www.conduitai.io/
1•wpbluiss•6m ago•1 comments

IBM posts steepest daily drop since 2000

https://www.reuters.com/business/ibm-posts-steepest-daily-drop-since-2000-after-anthropic-says-ai...
1•saikatsg•7m ago•0 comments

China Bet Billions on Agentic AI as Commerce Becomes the New Battleground

https://manojgopanapalli.substack.com/p/chinas-hyperscalers-bet-billions
1•thecontentboy•7m ago•0 comments

The Flight – Niklaus Wirth as co-pilot

http://coraid.com/b180724-the-flight.html
1•rbanffy•7m ago•0 comments

Show HN: Waggle – A search engine for A2A protocol agents

https://waggle.zone
1•enmerk4r•8m ago•0 comments

Show HN: Jsonchunk – Parse incomplete JSON from streaming LLM responses

https://github.com/jbingen/jsonchunk
1•jbingen•8m ago•0 comments

Meta is planning stablecoin comeback in the second half of this year

https://www.coindesk.com/business/2026/02/24/mark-zuckerberg-s-meta-is-planning-stablecoin-comeba...
2•mfiguiere•9m ago•0 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
1•prvnsmpth•9m ago•0 comments

ProducerAI: Music creation partner, now in Google Labs

https://blog.google/innovation-and-ai/models-and-research/google-labs/producerai/
1•doppp•10m ago•0 comments

We audited both MCP SDKs – three classes of boundary-crossing vulnerabilities

1•manuelnd•10m ago•0 comments

My perfect Music app doesn't exist

https://hicks.design/journal/my-perfect-music-app-doesnt-exist
2•dewey•10m ago•0 comments

I bought a Mac Mini instead of a $10k Server [video]

https://www.youtube.com/watch?v=gWAMsj5D77I
2•tambourine_man•12m ago•0 comments

Infusing asphalt with plastic could help roads last longer and resist cracking

https://theconversation.com/infusing-asphalt-with-plastic-could-help-roads-last-longer-and-resist...
1•PaulHoule•13m ago•0 comments

Show HN: Localvoxtral – Local real-time dictation on macOS with streaming STT

https://github.com/T0mSIlver/localvoxtral
1•T0mSIlver•13m ago•1 comments

BLUF: The Military Standard That Can Make Your Writing More Powerful

https://www.animalz.co/blog/bottom-line-up-front
1•trueduke•14m ago•0 comments

Show HN: Mici – CLI framework that uses your filesystem as the command tree

https://github.com/rwxdash/mici
1•rwxdash•14m ago•0 comments

Show HN: What if YAML was a programming language? (412 built-in modules)

https://github.com/flytohub/flyto-core
1•ChesterHsu•15m ago•1 comments

7 companies that are increasing hiring of entry-level engineers

https://www.businessinsider.com/companies-boosting-hiring-entry-level-engineers-2026-2
1•petethomas•16m ago•0 comments

Every Diesel Truck Has a Chemical Plant Bolted Underneath

https://www.mikeayles.com/blog/aftertreatment-chemistry/
2•mikeayles•17m ago•0 comments

Show HN: I built a $5 AI tool to stop me from overthinking startup ideas

https://www.satisfice.app/
1•schmommy•17m ago•0 comments

Teen social media ban group funded and co-staffed by firm making gambling ads

https://www.crikey.com.au/2025/12/12/pro-teen-social-media-ban-group-funded-firm-making-gambling-...
1•consumer451•18m ago•0 comments

Urban sprawl is a tragedy of the commons (2021)

https://devon.postach.io/post/urban-sprawl-is-a-tragedy-of-the-commons
1•surprisetalk•19m 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•9mo 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•9mo ago
I need the answer if I fail...

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

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