frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No Bug Policy

https://www.krayorn.com/posts/no_bug_policy/
1•thunderbong•52s ago•0 comments

GitSocial

https://github.com/gitsocial-org/gitsocial
1•delf•2m ago•1 comments

LLMs can hide text in other text of the same length

https://arxiv.org/abs/2510.20075
1•goplayoutside•3m ago•0 comments

You Don't Own Your Reputation

https://abstraction.substack.com/p/you-dont-own-your-reputation
1•linearithmic•5m ago•1 comments

Alternatives That Spare Horseshoe Crab Blood Might Be Breaking Through

https://www.smithsonianmag.com/science-nature/horseshoe-crab-blood-has-long-helped-us-make-safe-m...
3•sohkamyung•7m ago•0 comments

Multiple freezing–melting pathways of high-density ice through ice XXI phase [pdf]

https://www.nature.com/articles/s41467-025-64679-2.pdf
1•zeristor•7m ago•2 comments

Show HN: AI-patterns – 20 TypeScript patterns for production AI apps

https://github.com/kokouaserge/ai-patterns
1•MakegreatWord•7m ago•0 comments

The Last Messiah by Peter Wessel-Zapffe [pdf]

https://openairphilosophy.org/wp-content/uploads/2019/06/OAP_Zapffe_Last_Messiah.pdf
2•rfarley04•14m ago•0 comments

Moderation Sabotage: How Trump's Team Is Crashing the Guardrails of the Internet

https://weaponizedspaces.substack.com/p/moderation-sabotage-how-trumps-team
1•rbanffy•15m ago•0 comments

Disney appears to advertise Blackhat SEO Packages in Google search results

https://old.reddit.com/r/BacklinkSEO/comments/1oh3d4n/meanwhile_on_disney/
3•reuel•22m ago•1 comments

CrackSheet – Free tech notes, interview prep and cheatsheets

https://cracksheet.com/
2•cckeh•23m ago•1 comments

Evidencing the value of the Elizabeth line [pdf]

https://content.tfl.gov.uk/evidencing-the-value-of-the-elizabeth-line.pdf
1•zeristor•23m ago•0 comments

Sustainable memristors from shiitake mycelium for high-frequency bioelectronics

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0328965
2•wjSgoWPm5bWAhXB•23m ago•0 comments

Mott Problem

https://en.wikipedia.org/wiki/Mott_problem
3•agarttha•28m ago•0 comments

Amazon confirms 14,000 job losses in corporate division

https://www.bbc.com/news/articles/c1m3zm9jnl1o
51•mosura•30m ago•21 comments

Show HN: MeshCore – Why do I have to build every agent from scratch?

https://meshcore.ai
1•antenehmtk•32m ago•0 comments

'Change course now': humanity has missed 1.5C climate target, says UN head

https://www.theguardian.com/environment/2025/oct/28/change-course-now-humanity-has-missed-15c-cli...
5•c-oreills•33m ago•1 comments

Hackable Software

https://blog.ivnj.org/post/hackable-software
1•ivanjermakov•38m ago•0 comments

Show HN: Cloudtellix – Free OpenAI-compatible proxy with usage and Cost Control

https://ai.cloudtellix.com
2•arknirmal•38m ago•0 comments

Resolution limit of the eye – how many pixels can we see?

https://www.nature.com/articles/s41467-025-64679-2
4•bookofjoe•40m ago•1 comments

Code Highlighting with Rails

https://avohq.io/blog/code-highlighting-with-rails
2•adrianthedev•42m ago•0 comments

Terra – A CSS Terrain Generator

https://terra.layoutit.com
2•redbell•42m ago•0 comments

The fragile system holding the modern world together

https://www.theguardian.com/technology/2025/oct/26/internet-infrastructure-fragile-system-holding...
4•elsewhen•45m ago•0 comments

"We will never build a sex robot," says Mustafa Suleyman

https://www.technologyreview.com/2025/10/28/1126781/we-will-never-build-a-sex-robot-says-mustafa-...
2•fleahunter•45m ago•0 comments

Could China devastate the US without firing a shot?

https://garymarcus.substack.com/p/could-china-devastate-the-us-without
2•guilamu•45m ago•1 comments

ISS in Real Time

https://issinrealtime.org/
3•LorenDB•48m ago•1 comments

A Modest Definition of Human Consciousness

https://www.oranlooney.com/post/em-dash/
2•zajio1am•51m ago•0 comments

Nine months later, is still the "Gulf of Mexico" to news outlets

https://www.niemanlab.org/2025/10/nine-months-later-that-body-of-water-down-south-is-still-the-gu...
29•giuliomagnifico•54m ago•13 comments

ReSharper and Rider 2025.2.4: Another Set of Updates Released

https://blog.jetbrains.com/dotnet/2025/10/28/resharper-and-rider-2025-1-4-2/
3•quapster•56m ago•0 comments

Try Out JEP 401 Value Classes and Objects (Java)

https://inside.java/2025/10/27/try-jep-401-value-classes/
2•pjmlp•56m 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•5mo 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•5mo ago
I need the answer if I fail...

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

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