Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. WLED – open-source ESP32 webserver to control NeoPixel LEDs (wled.ge)
    —discuss
  2. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    —discuss
  3. Wrong, Not Broken (amazon.com)
    —discuss
  4. Labelled 'pervert glasses': Will Meta's camera-free version change their image? (bbc.co.uk)
    —discuss
  5. Docker launches cloud sandboxes: Start on your laptop, finish in the cloud (docker.com)
    —discuss
  6. What is the best shape of a city? Modelling effect of urban form on distance (sagepub.com)
    —discuss
  7. The clans that run Spain's biggest companies (elpais.com)
    —discuss
  8. The Plunging Price of Thought (epoch.ai)
    —discuss
  9. Show HK: Find My Cat Name (findmycatname.com)
    —discuss
  10. Washington Heights Man Cleans One NYC Block a Day for 100 Days,Neighbors Join In (hoodline.com)
    —discuss
  11. I Put My LG TV Under Network Surveillance [video] (youtube.com)
    —discuss
  12. Show HN: Proof-native smart contracts without a transaction archive (colosseum.com)
    —discuss
  13. How to Unclench (howtounclench.com)
    —discuss
  14. Is Jev calibrated? Tests on real data (leonardgrazian.com)
    —discuss
  15. Show HN: Talk to Micro from Conversations: an assistant in your chat app (micro.mu)
    —discuss
  16. Writing Code Character by Character (medium.com/erdemgezer)
    —discuss
  17. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    —discuss
  18. Broken promises, confiscated land: the hyperscale AI datacentre being built (theguardian.com)
    —discuss
  19. Skorpion OS – AI-Powered Linux Distribution (skossyte.pages.dev)
    —discuss
  20. Show HN: Aether Summon – A New TCG (gamefound.com)
    —discuss
  21. 2968 OSS RL EVs by CI
    —discuss
  22. Tx.taxi: I forked mempool.space, but for (soon-to-be) every blockchain (tx.taxi)
    1comments
  23. From Holy Water to Frozen Meals: The Evolution of Vending Machines (saturdayeveningpost.com)
    —discuss
  24. Are Weighted Blankets Beneficial? (economist.com)
    —discuss
  25. What did AI researchers think at the end of 2024? (lesswrong.com)
    —discuss
  26. Show HN: Spivak's Calculus formalized in Lean 4 – every theorem, every problem (github.com/stormj-uh)
    —discuss
  27. Aulico: Free TradingView Alternative (aulico.com)
    —discuss
  28. Robust De-Anonymization of Large Sparse Datasets [pdf] (cornell.edu)
    —discuss
  29. Ask HN: How do you get your hands on physics environments for your robotics SIM?
    2comments
  30. OpenAI's Rogue A.I. Agents Tried to Trick a Robot Detector (nytimes.com)
    1comments

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

3 pointsby 3h agofedscoop.com
2 comments
3h 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?