frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Professor Leonard is back [video]

https://www.youtube.com/watch?v=bIQZ6yahKJk
2•mindcrime•3m ago•0 comments

35 Years of Momentum – Troy Howard

https://blog.thoward37.me/articles/35-years-of-momentum/
2•thoward37•3m ago•1 comments

I was so frustrated with GitHub that I rebuilt it as a Chrome extension

https://gitquiet.com/
3•sasha_zelts•8m ago•1 comments

Don't Trust the Super-App: A Case Study of Russia's Max

https://arxiv.org/abs/2609.11814
2•sbulaev•9m ago•0 comments

Show HN: Open-Sourced Chrome Extension to Save, Organize and Switch Bookmarks

https://github.com/ringlochid/leotabs
4•ringlochid•11m ago•0 comments

>10x More Efficient Pretraining

https://magic.dev/blog/pretraining
1•gmays•17m ago•0 comments

Carissa Véliz: Beware the power of prediction [video]

https://www.ted.com/talks/carissa_veliz_beware_the_power_of_prediction
1•Anon84•20m ago•0 comments

Apple Considering Ads Inside Visual Intelligence, Code Suggests

https://www.macrumors.com/2026/09/10/apple-considering-ads-inside-visual-intelligence/
5•srik•20m ago•0 comments

I'm Back

https://blog.lsantos.dev/en/i-m-back/
1•khaosdoctor•29m ago•1 comments

AI's Code-Red Moment

https://www.theatlantic.com/technology/2026/09/dario-amodei-slow-down-ai-save-humanity/688610/
2•fortran77•30m ago•0 comments

Roadwright: Draw a wheel. See the road it rolls on

https://roadwright.baselashraf.com/
1•thunderbong•35m ago•0 comments

What makes an A2A network work?

https://www.monadix.ai/blog/a2a-strange-bedfellows-shared-goals
2•ivanzhaowy123•45m ago•0 comments

Nova Seed. Create an AI friend and build something together

https://github.com/mas-bandwidth/nova
2•gafferongames•53m ago•0 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
6•jonifico•54m ago•1 comments

Fresh Kills – World Trade Center Debris Burial Ground

https://www.youtube.com/watch?v=OdMqX_F66rE
2•dsr12•54m ago•0 comments

A.I. Slopware Is Everywhere Now. Nobody Is Using It

https://www.nytimes.com/2026/09/12/opinion/ai-software-coding-apps.html
8•colinprince•56m ago•0 comments

Asking Anthropic CEO: 'Do you earnestly believe that AI could kill all humans?'

https://www.cnn.com/business/video/anderson-cooper-anthropic-ceo-dario-amodei-could-ai-kill-human...
3•oxag3n•58m ago•0 comments

Scientists Create a New Form of Ice at More Than 2000°C

https://www.sciencealert.com/scientists-create-a-new-form-of-ice-at-more-than-2000-c
7•jnord•1h ago•3 comments

Carney's Bid to Make Canada an 'Associate Member' of the EU

https://www.wsj.com/world/europe/canada-alliance-eu-carney-276f1778
5•JumpCrisscross•1h ago•1 comments

OS that runs the Mars Rovers and Artemis is helping power the Roman Telescope

https://www.windriver.com/blog/NASA-Nancy-Grace-Roman-Space-Telescope
3•ReindeerFlotill•1h ago•1 comments

The Critical Period

https://www.cell.com/current-biology/fulltext/S0960-9822(07)01519-9
2•andsoitis•1h ago•0 comments

Apple wants to train AI on your private personal data

https://machinelearning.apple.com/research/introducing-third-generation-of-apple-foundation-models
24•croes•1h ago•16 comments

The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement

https://arxiv.org/abs/2609.11873
2•mlmonkey•1h ago•1 comments

Using LLMs After a TBI

https://www.urgentteam.com/healthy-living-tips/think-f-a-s-t-act-faster-stroke-signs-that-cant-wait/
2•tj_astro•1h ago•3 comments

DNSCrypt

https://en.wikipedia.org/wiki/DNSCrypt
2•st_goliath•1h ago•0 comments

Align AI and Mathematics–To Something Else

https://liorpachter.wordpress.com/2026/09/12/align-ai-and-mathematics-to-something-else/
13•nitrogenpuddle•1h ago•1 comments

Next StarCraft Game Announced at BlizzCon

https://www.ign.com/articles/next-starcraft-game-announced-at-blizzcon-as-an-open-world-shooter-b...
3•miiiiiike•1h ago•0 comments

Plunging test scores are a slow-moving catastrophe

https://www.economist.com/leaders/2026/09/10/plunging-test-scores-are-a-slow-moving-catastrophe
5•1vuio0pswjnm7•1h ago•3 comments

Competitive Landscape Cubacadabra

https://cubacadabra.com/landscape/
3•cs1996•1h ago•0 comments

The Case for Online Dating

https://rewirenewsgroup.com/2026/09/11/dating-apps-that-actually-work/
2•DeepLogin•1h 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.