Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Hacking OpenAI(hacktron.ai ↗)
    34comments
  2. Waymo in Singapore(waymo.com ↗)
    12comments
  3. Astra for Law(openai.com ↗)
    436comments
  4. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    106comments
  5. Bend – A language that blocks AI mistakes via proof, on CPU and GPU(bend-lang.com ↗)
    185comments
  6. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    141comments
  7. Alibaba releases Qwen 3.8 Omni Flash(qwen.ai ↗)
    25comments
  8. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    discuss
  9. Wax motor(wikipedia.org ↗)
    57comments
  10. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    206comments
  11. Shapelearn Qwen 3.8 27B (13.1 GB VRAM)(byteshape.com ↗)
    discuss
  12. Telstra outage: The night a network decided the year was 2006(netnod.se ↗)
    10comments
  13. Ask A Monk – A digital wilderness for thoughts with no immediate answer(askamonk.online ↗)
    12comments
  14. Code Scans(devin.ai ↗)
    2comments
  15. Apple detectives solved mystery of ancient tree and rewrote the history of fruit(scientificamerican.com ↗)
    discuss
  16. How to Write with an LLM(sockpuppet.org ↗)
    56comments
  17. Flet 1.0 – Build cross-platform apps in Python(flet.dev ↗)
    39comments
  18. Diplodocus, Long Thought Exclusively American, Turns Up in Spain(sci.news ↗)
    27comments
  19. The most important product decision is what you don't build(liamnugent.me ↗)
    24comments
  20. How Uber Protects Against Retry Storms(uber.com ↗)
    31comments
  21. CrowdSec Source Code Leak(crowdsec.net ↗)
    42comments
  22. I Put Nam A2-Lite Inside an iRig HD X(playtaurus.com ↗)
    4comments
  23. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    334comments
  24. How do we prevent mathemathics from devolving into the Medieval Era of secrecy?(mathoverflow.net ↗)
    74comments
  25. Khipu (Quipu) Field Guide(khipufieldguide.com ↗)
    discuss
  26. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    38comments
  27. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    110comments
  28. Better Icon and Label Alignment(ishadeed.com ↗)
    2comments
  29. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    363comments
  30. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss

The BPF instruction set architecture is now RFC 9669

53 pointsby 1y agolwn.net
10 comments
1y agoHN ↗

So… eBPF is now BPF and old BPF is now cBPF or classic bpf.

1y agoHN ↗

Do you think that BPF opcodes should be costed, too? Why or why not?

1y agoHN ↗

Are you... asking yourself? What did you decide?

1y agoHN ↗

Costing instructions leads to efficiency metrics, which makes it possible to incentivize efficiency.

BPF instructions could also each have an abstract relative cost with or without real value.

BPF in WASM (unfortunately without the kernel performance advantages or possible side channels) or the fwiu now-defunct eWASM might be an easier place to test the value of costed opcodes.

The [e]BPF verifier does not yet rewrite according to opcode costs of candidate programs.

"A look inside the BPF verifier [lwn]" https://news.ycombinator.com/item?id=41135478

1y agoHN ↗

Somewhat related:

P4 is a programming language for controlling packet forwarding planes in networking devices, such as routers and switches. In contrast to a general purpose language such as C or Python, P4 is a domain-specific language with a number of constructs optimized for network data forwarding. P4 is distributed as open-source, permissively licensed code, and is maintained by the P4 Project (formerly the P4 Language Consortium), a not-for-profit organization hosted by the Open Networking Foundation.

* https://en.wikipedia.org/wiki/P4_(programming_language)

1y agoHN ↗

Kind of close to ISO 9660 so doubly easy to remember.

1y agoHN ↗

Is this going to be like the DeviceTree standard? The kernels devs invent it, it gets an official specification/standard, but the kernel itself doesn't conform to that specification?