frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Should AI be used at all as a total beginner?

1•vetry•4m ago•0 comments

Is SMIC N+3's Metal Pitch Smaller Than Intel 18A's?

https://newsletter.semianalysis.com/p/steel-smic-n3-teardown
1•hunglee2•15m ago•0 comments

Expository Programming

https://web.archive.org/web/20121231141457/http://archive.vector.org.uk/art10000980
1•tosh•19m ago•0 comments

Only Bounds

https://smallcultfollowing.com/babysteps/blog/2026/06/09/only-bounds/
1•r4um•19m ago•0 comments

Elixir Is All You Need

https://elixirisallyouneed.dev/
1•fshr•20m ago•0 comments

DeepSeek-V4 Can't Read Images? I Made It Read

https://www.dataleadsfuture.com/deepseek-v4-cant-read-images-i-made-it-read/
2•qtalen•23m ago•0 comments

Bank of Estonia recommends keeping cash reserve at home

https://news.err.ee/1609986606/bank-of-estonia-recommends-keeping-cash-reserve-at-home
2•marklit•23m ago•0 comments

Show HN: I used Claude to build my son a Minecraft phonics game

https://alexocallaghan.com/minecraft-phonics-game
1•aocallaghan17•25m ago•0 comments

Show HN: An audit loop that only stops when it stops finding bugs

https://github.com/apoorvjain25/production-audit
1•apoorvjain25•28m ago•0 comments

Euro-Office 1.0 arrives to open-source infighting

https://www.zdnet.com/article/euro-office-is-here-libreoffice-supporters-arent-happy/
1•benkan•28m ago•0 comments

Show HN: I used Claude Mythos to build my startup in 1 day

https://www.brandlm.ai/
2•trungnx2605•29m ago•0 comments

Please Stop Bragging About Your Company's Ainess

https://samhenrycliff.medium.com/please-stop-bragging-about-your-companys-ainess-3b621b401174
2•6stringmerc•29m ago•0 comments

Botsitting, botshitting, and the hidden human labor of AI at work

https://www.glean.com/work-ai-institute/reports/work-ai-index-report
1•benkan•29m ago•0 comments

Washburn School teacher took tech out of the class. Students call it a success

https://www.kare11.com/article/news/local/breaking-the-news/washburn-high-school-teacher-took-tec...
3•thunderbong•31m ago•0 comments

Touchscreen MacBook '100% Confirmed,' Says Reputable Leaker

https://www.macrumors.com/2026/06/11/touchscreen-macbook-confirmed-leaker/
1•benkan•31m ago•0 comments

GrapheneOS Production Status

https://nodeping.com/reports/statusevents/3FL97F6RRQHJIOWL
1•Cider9986•36m ago•0 comments

Curl will not accept vulnerability reports during July 2026

https://daniel.haxx.se/blog/2026/06/15/curl-summer-of-bliss/
103•secret-noun•39m ago•13 comments

AI Resume Builder

https://www.thehumancapitalhub.com/ai-resume-builder
1•bisit•42m ago•1 comments

You Can Make Free Money on Polymarket. If You Know Math

https://www.nytimes.com/interactive/2026/06/12/upshot/kalshi-polymarket-prediction-markets-arbitr...
1•seymourstein44•46m ago•0 comments

Show HN: AwsmAudio – a WebAudio editor with native MCP

https://audio.awsm.fun
2•dakom•46m ago•0 comments

Show HN

1•dakom•47m ago•1 comments

Parsing JSON at compile time with C++26 static reflection

https://lemire.me/blog/2026/06/14/parsing-json-at-compile-time-with-c26-static-reflection/
1•r4um•55m ago•0 comments

Puzzling Success of Overparameterization: Lottery Tickets or Escape Dimensions?

https://infoscience.epfl.ch/entities/publication/9a49779b-f9f8-448d-b3d1-737c78455309
1•matt_d•57m ago•0 comments

Show HN: Font Proof – live font proofing on macOS that updates as you edit

https://fontproof.com/
1•jakefleming•1h ago•0 comments

One More Type in the Tiny Type Theory

https://jcreedcmu.github.io/posts/2026-06-14/
2•matt_d•1h ago•0 comments

The Beauty of Batteries

https://worksinprogress.co/issue/the-beauty-of-batteries/
1•latentframe•1h ago•0 comments

Show HN: Applora – extracting product feedback from Shopify app reviews

https://applora.ai
3•yuangwei•1h ago•0 comments

Stackoverflow for Agents Sofa

https://agents.stackoverflow.com/skill.md
1•pow-tac•1h ago•0 comments

Notes from the PipeWire Hackfest 2026

https://arunraghavan.net/2026/06/notes-from-the-pipewire-hackfest-2026-part-1/
2•JNRowe•1h ago•0 comments

Show HN: AgentBridge – translate and govern calls between AI agent protocols

https://github.com/shadowhunter-92/agentbridge
1•Shadowhunter89•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.