Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cloudflare Quick Tunnels(cloudflare.com ↗)
    137comments
  2. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    8comments
  3. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    81comments
  4. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    28comments
  5. OpenJev(openjev.com ↗)
    212comments
  6. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    111comments
  7. US Military had close call after using AI for hallucinated intelligence report(cnn.com ↗)
    13comments
  8. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    118comments
  9. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    183comments
  10. I don't like passkeys(hawksley.dev ↗)
    564comments
  11. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    6comments
  12. Jemalloc 5.4.0(github.com/jemalloc ↗)
    76comments
  13. NATS publishes preliminary report on technical incident of 8 September(nats.aero ↗)
    24comments
  14. The scourge of x86 emulation(fex-emu.com ↗)
    69comments
  15. GrassLobster: AI Agentic Generation of Parametric Geometry Workflows(miro.vision ↗)
    4comments
  16. The Shadows Lurking in the Equations – Underwater Islands(gods.art ↗)
    9comments
  17. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    163comments
  18. Systemd is a suite of basic building blocks(systemd.io ↗)
    4comments
  19. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  20. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    4comments
  21. BeanShell3 in Development(beanshell.github.io ↗)
    14comments
  22. Replacing Pull Requests with Delta(zed.dev ↗)
    72comments
  23. An empirical study of harness design for coding agents(arxiv.org ↗)
    41comments
  24. Build Faster Feedback Loops Using Qualitative User Research(nseldeib.com ↗)
    2comments
  25. AI chatbots are becoming experts at changing people's minds(science.org ↗)
    80comments
  26. Second Circuit Allows Government to Search Electronic Devices at the Border(knightcolumbia.org ↗)
    52comments
  27. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    62comments
  28. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    665comments
  29. Border agents can search cellphones without a warrant or reasonable suspicion(lawandcrime.com ↗)
    discuss
  30. When the fractional part of a float fixes your shader(crocidb.com ↗)
    17comments

Metacompilers Part 1 (2008)

62 pointsby 12y agobayfronttechnologies.com
6 comments
12y agoHN ↗

More background at http://onfoodandcoding.blogspot.com/2013/02/meta-ii-early-me...

Alessandro Warth's OMeta is a modern version of ideas in Meta II, http://tinlizzie.org/ometa/

OMeta is used in KScript and KSworld, from Alan Kay's Viewpoints research, http://www.vpri.org/pdf/tr2013002_KSonward.pdf

"KScript is a dynamic language based on the declarative and time-aware dataflow-style execution model of Functional Reactive Programming (FRP), extended with support for loose coupling among program elements and a high degree of program reconfigurability

... the KSWorld environment supports exploratory application building: a user constructs the appearance interactively with direct manipulation, then attaches and refines reactive variable definitions to achieve the desired overall behavior."

Edit: more on KSworld, http://www.vpri.org/pdf/m2013003_ksapps.pdf

"The software for today’s personal computing environments has become so complex that no single person can understand an entire system: a typical desktop OS and commonly used application suite amount to over 100 million lines of code.

Our group’s early experiences with personal computing led us to understand that much of this complexity is “accidental”, rather than inherent ... About 10,000 lines of code were needed to build the framework, the FRP evaluator, the document model and the editor, including the implementation of the special language created for KSWorld."

12y agoHN ↗

"As I was writing this tutorial I found myself speculating about what happened to metacompiler technology"

I suspect that one part of the answer is that for most non-trivial examples, the parsing part is the easy part and metacompilers don't help with the hard part (type checking/inference, optimization, code generation, etc).

That said, I see terrible broken ad-hoc parsers all over the place that probably could benefit from this.