Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. The Plunging Price of Thought (epoch.ai)
    —discuss
  2. Show HK: Find My Cat Name (findmycatname.com)
    —discuss
  3. Washington Heights Man Cleans One NYC Block a Day for 100 Days,Neighbors Join In (hoodline.com)
    —discuss
  4. I Put My LG TV Under Network Surveillance [video] (youtube.com)
    —discuss
  5. Show HN: Proof-native smart contracts without a transaction archive (colosseum.com)
    —discuss
  6. How to Unclench (howtounclench.com)
    —discuss
  7. Is Jev calibrated? Tests on real data (leonardgrazian.com)
    —discuss
  8. Show HN: Talk to Micro from Conversations: an assistant in your chat app (micro.mu)
    —discuss
  9. Writing Code Character by Character (medium.com/erdemgezer)
    —discuss
  10. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    —discuss
  11. Broken promises, confiscated land: the hyperscale AI datacentre being built (theguardian.com)
    —discuss
  12. Skorpion OS – AI-Powered Linux Distribution (skossyte.pages.dev)
    —discuss
  13. Show HN: Aether Summon – A New TCG (gamefound.com)
    —discuss
  14. 2968 OSS RL EVs by CI
    —discuss
  15. Tx.taxi: I forked mempool.space, but for (soon-to-be) every blockchain (tx.taxi)
    1comments
  16. From Holy Water to Frozen Meals: The Evolution of Vending Machines (saturdayeveningpost.com)
    —discuss
  17. Are Weighted Blankets Beneficial? (economist.com)
    —discuss
  18. What did AI researchers think at the end of 2024? (lesswrong.com)
    —discuss
  19. Show HN: Spivak's Calculus formalized in Lean 4 – every theorem, every problem (github.com/stormj-uh)
    —discuss
  20. Aulico: Free TradingView Alternative (aulico.com)
    —discuss
  21. Robust De-Anonymization of Large Sparse Datasets [pdf] (cornell.edu)
    —discuss
  22. Ask HN: How do you get your hands on physics environments for your robotics SIM?
    2comments
  23. OpenAI's Rogue A.I. Agents Tried to Trick a Robot Detector (nytimes.com)
    1comments
  24. How fast can you fix a UTF-16 string in C#? (lemire.me)
    —discuss
  25. Nix pull request: Add builtins.wasm (github.com/nixos)
    —discuss
  26. We benchmarked our prompt-injection detector against OWASP's LLM Top (cerbereag.site)
    —discuss
  27. What Happens if the A.I. Bubble Bursts (nytimes.com)
    —discuss
  28. NASA's Nancy Grace Roman Space Telescope Set to Explore the Universe (abc.net.au)
    —discuss
  29. Font where each token is equal-width (twitter.com/amplifiedamp)
    —discuss
  30. Show HN: StarSkirmish, an arena where LLMs create StarCraft Brood War bots (starskirmish.com)
    1comments

A Trump team wants to automate U.S. Web Design System accessibility testing

3 pointsby 3h agofedscoop.com
2 comments
2h agoHN ↗

More websites would be more accessible if you can throw good automation at it. AI seems particularly well-suited to evaluate various dimensions of accessibility of a website.

1h agoHN ↗

Human accessibility testing is important too.

Re: the new WebMCP spec: https://news.ycombinator.com/item?id=45623194 :

Could this help with accessibility reviews?

"Lighthouse accessibility score" https://developer.chrome.com/docs/lighthouse/accessibility/s...

awesome-a11y > Tools: https://github.com/brunopulis/awesome-a11y/blob/main/topics/...

I've been working with Playwright e2e tests (End to End) in a number of projects lately.

Playwright is a useful and justified abstraction in the testing workflow because: Playwright tests can be run interactively in vscode (with just bwrap sandboxing but unfortunately no VM isolation), Playwright tests can be run in a dedicated local browser or in a headless browser for example in a container on GitHub Actions (a CI Continuous Integration system that runs then tests and saves the output artifacts automatically when any change is pushed to the source code repo), Playwright test can be recorded from an interactive browser session, and Playwright tests can be written by AI prompted to implement 100% branch test coverage with tests and e2e tests with {Playwright or Puppeteer} in {language}.

And then there's the Computer Use model (and the need for process or full VM sandboxing e.g. with ai-sandbox)

Find existing open source agent instructions and agent skills for UI/UX agents that could or should be adapted to a11y testing?