Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Imminent Zero-Day Attack: KiteWorks Urges Customers to Shut Down Servers (heise.de)
    —discuss
  2. DKIM: Show Your Privates (rya.nc)
    —discuss
  3. Tool to verify DKIM signatures on an mbox of emails (github.com/associatedpress)
    —discuss
  4. Defining AI Psychosis. Part 3: "Parasocial AI Psychosis" (jeffs.blog)
    —discuss
  5. Ok Google: please publish your DKIM secret keys (2020) (cryptographyengineering.com)
    —discuss
  6. I discovered roads in the US across > 1000 themes (pinedesk.biz)
    1comments
  7. Jevmem – automatic project memory for Claude Code, built on Jev (github.com/avinash-jetwani)
    —discuss
  8. VestFin – Privacy-first, manual-entry personal finance app (vestfin.app)
    —discuss
  9. Poo
    —discuss
  10. DTAP – check Linux servers infrastructure with Bash (sparrowhub.io)
    1comments
  11. How to Build an Electrostate (bloomberg.com)
    1comments
  12. The end times fascists are plotting their escape from our world (theguardian.com)
    —discuss
  13. Over 2.8M Audi and Volkswagen vehicles face recall worldwide (euronews.com)
    1comments
  14. DNS: A Replacement for Finger (nochan.net)
    —discuss
  15. N-Th Numbers (dpdmancul.gitlab.io)
    —discuss
  16. Strauss–Howe Generational Theory (wikipedia.org)
    —discuss
  17. New Apple TV 4K Leaked (macrumors.com)
    —discuss
  18. Claude Code Integration with iTerm2 Is Legitimately Awesome (reddit.com)
    —discuss
  19. The Supreme Court revives a controversial data system for citizenship checks (npr.org)
    —discuss
  20. Biolinq's color-coded glucose sensor patch nets FDA clearance (fiercebiotech.com)
    —discuss
  21. Show HN: Choreoglyphs – our new, invisible writing system (choreoglyphs.com)
    —discuss
  22. Trump admin using AI to deny medical care for seniors in disastrous experiment (arstechnica.com)
    —discuss
  23. Self-Complexity (wikipedia.org)
    —discuss
  24. YOLO Linux (yololinux.com)
    1comments
  25. Show HN: Draw something once a day with friends (peerdiem.com)
    —discuss
  26. Missile Task (tuxen.de)
    —discuss
  27. In Company Style: Illustrations from James Skinner's Kitāb-I tashrīḥ al-aqvām (publicdomainreview.org)
    —discuss
  28. Measuring Taiwan's Mobile Slowdown with OONI in Taipei (mashbean.net)
    —discuss
  29. SlopCop Power Ranking: live tickets in a 1.1M loc codebase (slopcop.com)
    —discuss
  30. Meta bans another Toronto performer from Instagram and Facebook over Bikini (thestar.com)
    —discuss

Show HN: Misheard turns "recognize speech" into "wreck a nice beach"

1 pointsby 59m agowordlab.rickinto.place
1 comments
56m agoHN ↗

I initially built this as a toy and it turned into an interesting small phonetics project.

Enter a sentence and it finds other ways to break down the same sounds into English words: “kiss the sky” gives you “kiss this guy”. “Four candles” turns to “fork handles”. “Ice bank mice elf” ... I think you get the idea

Each word is looked up in the CMU Pronouncing Dictionary. The sentence is converted into a sequence of phonemes, and a beam search breaks it back down into words. Exact re-parsing is rare, so sounds may be distorted under certain conditions. For example, keep in mind that a double consonant at a word boundary sounds like a single one (mistake/miss steak). A /ɡ/ before a nasal almost completely disappears (recognize -> “reco'nize”). The sound alone is not enough to distinguish “wreck a nice beach” from “reckon eyes beach,” so variations that actually appear in 40 million lines of movie subtitles are also taken into account.

The system was calibrated using 42 known oronyms (38 in the top 12, 25 in first place), and I disabled each rule individually to see how much it contributed.

What doesn’t work: long sentences, proper nouns (“Euthanasia” -> “Youth in Asia” is impossible, since names are filtered out), and it only works with American English, since CMUdict only contains that.

Static site, no server, no LLM. Code: https://github.com/rickintoplace/wordlab