frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TabFM: A zero-shot foundation model for tabular data

https://research.google/blog/introducing-tabfm-a-zero-shot-foundation-model-for-tabular-data/
1•brandonb•1m ago•0 comments

World Bank to phase out China lending

https://www.ft.com/content/32b664e1-d2d2-4292-b0b3-0056808acf26
1•petethomas•1m ago•0 comments

GPU Compute Tightness Index

https://www.bargo.ai/compute-tightness
1•abipal15•2m ago•0 comments

Feds pay Duke Energy $129M for Brunswick County wind lease termination

https://portcitydaily.com/latest-news/2026/06/30/feds-pay-duke-energy-129m-for-brunswick-county-w...
1•littlexsparkee•2m ago•0 comments

Show HN: Open-source restreaming and live studio

https://github.com/muxshed/shed
1•franticstone•3m ago•1 comments

The Once and Future Fable #5

https://twitter.com/TheZvi/status/2072074797329387588
2•paulpauper•6m ago•0 comments

Ncose lawyers' corrected brief had more fake cases

https://www.techdirt.com/2026/06/30/ncose-lawyers-got-caught-citing-fake-cases-their-corrected-br...
1•logickkk1•6m ago•0 comments

The Livelymerge Experiment

https://www.inkandswitch.com/livelymerge/notebook/lm-01/
1•gjvc•8m ago•0 comments

Gram Release 3.0.0

https://gram-editor.com/posts/release-3.0.0/
1•tempestad•9m ago•0 comments

Ask HN: Since when does Craigslist's front page have emojis?

2•argee•10m ago•0 comments

Ratcliffe details 'fundamental reshaping' of CIA tech efforts

https://federalnewsnetwork.com/intelligence-community/2026/06/ratcliffe-details-fundamental-resha...
1•leopoldj•12m ago•0 comments

SQLite Trace: extracting SQLite queries made by any arbitrary binary

https://github.com/Query-Doctor/sqlite-trace
1•hundredwatt•14m ago•0 comments

Odd Gestures in Public

https://manualdousuario.net/en/gestures-airpods-apple-watch/
1•rpgbr•15m ago•0 comments

Ranked: America's 20 Lowest-Paying College Degrees

https://www.visualcapitalist.com/sp/ter02-ranked-americas-20-lowest-paying-college-degrees/
2•theanonymousone•16m ago•0 comments

Show HN: Veritrace – B2B leads with a source URL on every row, no guessed emails

https://veritrace.cloud/
1•yresnob•17m ago•0 comments

Gone but Not Forgotten: Recovering the Dead Web

https://blog.archive.org/2026/04/23/gone-but-not-forgotten-recovering-the-dead-web/
2•wslh•21m ago•0 comments

Fedora 45 Looks to Offer Install Support for Stratis Storage

https://www.phoronix.com/news/Fedora-45-Stratis-Storage
1•rbanffy•21m ago•0 comments

Grok translated my coworker's tweet as sexualized

2•aizk•22m ago•2 comments

The dress

https://en.wikipedia.org/wiki/The_dress
1•tejohnso•23m ago•0 comments

Trump's plan to redesign every .gov website leads to AI-designed horrors

https://arstechnica.com/tech-policy/2026/06/trumps-plan-to-redesign-every-gov-website-leads-to-ai...
3•rbanffy•23m ago•0 comments

Bringing Claude Code into Neovim

https://inacioklassmann.com/posts/claude-chat-nvim/
1•samsgro•23m ago•0 comments

Ship traces journey Spanish Armada sailors made in 1588

https://www.irishtimes.com/ireland/2026/06/30/it-is-a-huge-honour-ship-traces-journey-spanish-arm...
1•austinallegro•24m ago•0 comments

Addsong: Paste a link, song appears in Apple Music with full metadata and art

https://github.com/ado11231/addsong
1•ado11231•24m ago•0 comments

AMD Stretches Server DRAM with Flash Extended Memory

https://www.nextplatform.com/store/2026/06/29/amd-stretches-server-dram-with-flash-extended-memor...
1•rbanffy•25m ago•0 comments

Fear and Loathing in Python: Building a Distributed Context System for Wool

https://gist.github.com/conradbzura/885a542ff0ccd548aa16fd05525a7a71
1•bzurak•27m ago•1 comments

Big Tech's 13 Most Interesting Patents This Week

https://patentlyze.substack.com/p/needle-free-blood-monitoring-a-mirror
2•Dfol•28m ago•0 comments

How to Build a Winning Go-to-Market Strategy for Latam

https://expansionamericas.com/how-to-build-a-winning-go-to-market-strategy-for-latam
1•joserparamo•30m ago•0 comments

CIA Reorganization Prioritizes Cyberoperations

https://www.nytimes.com/2026/06/30/us/politics/cia-reorganization-cyber-ai.html
2•ChrisArchitect•32m ago•0 comments

Show HN: Turning Sentry errors into AI generated GitHub PRs with fixes

https://bugzero.dev
2•rafalswietek•33m ago•1 comments

US Army Women Are More Likely to Be Killed by Army Men Than by War

https://theintercept.com/2026/06/30/army-women-death-domestic-violence-sexual-assault/
21•rendx•38m ago•3 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.