Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Laya the open source version of Jev(convaiinnovations.com ↗)
    124comments
  2. A graphical desktop for the ZX Spectrum(github.com/mindbox77 ↗)
    39comments
  3. Tin: full-text search for Postgres(planetscale.com ↗)
    22comments
  4. AI-generated posters don’t have to be horrible(john.hartnup.uk ↗)
    427comments
  5. Human brain is two separate organs, Stanford Medicine-led research finds(stanford.edu ↗)
    176comments
  6. Jobs Without LeetCode(noleet.lol ↗)
    discuss
  7. Black Holes or Black Hole Stars? Astronomers Spar over 'Little Red Dots'(quantamagazine.org ↗)
    11comments
  8. “The Secret Life of Circuits” is here(coredump.cx ↗)
    49comments
  9. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    543comments
  10. I built the fastest PHP webserver in the world(qbixserver.com ↗)
    16comments
  11. What Zig felt like, coming from Rust(besok.github.io ↗)
    94comments
  12. Agreement between the USA and Denmark (1951,2004) [pdf](state.gov ↗)
    1comments
  13. Asking Authors About Their Own Papers(medium.com/tmlrorg ↗)
    29comments
  14. San Francisco Onion Futures Company(onionfutures.com ↗)
    105comments
  15. GPT-6 Astra Solves a WWI German Radio Cipher(prinzai.com ↗)
    126comments
  16. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    186comments
  17. New evidence for hidden chambers beyond Tutankhamun's tomb(nature.com ↗)
    1comments
  18. Learning Another Language May Be One of the Best Ways to Keep Your Brain Healthy(theconversation.com ↗)
    33comments
  19. Cloudflare Quick Tunnels(cloudflare.com ↗)
    301comments
  20. How to Write with an LLM(sockpuppet.org ↗)
    360comments
  21. You can run Git on object storage if you re-make packfiles(tigrisdata.com ↗)
    23comments
  22. Communication by means of modulated Johnson noise(pnas.org ↗)
    18comments
  23. Saving another 100TB of RAM(cloudflare.com ↗)
    89comments
  24. SDCC – Small Device C Compiler(sourceforge.net ↗)
    23comments
  25. Ray Ozzie and the Optimism of Being Early(reproof.app ↗)
    9comments
  26. Science Is Open Software(jepedersen.dk ↗)
    50comments
  27. From Stonemasons to Carpenters(thelastsoftwareengineer.substack.com ↗)
    4comments
  28. Why building a Rust LSP is hard(rust-glancer.github.io ↗)
    44comments
  29. Ctenophores: Wonders of Biology(quantamagazine.org ↗)
    7comments
  30. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    122comments

Ribbit: A portable, compact and extensible R4RS Scheme implementation

36 pointsby 2y agogithub.com
11 comments
2y agoHN ↗

Why R4RS? Was that just the standard at the time? I know R6RS is kind of huge and difficult, but R7RS seems pretty reasonably sized.

2y agoHN ↗

I can't answer as to why the current version is R4RS specifically. The original version Marc and I wrote was running a subset of R4RS. We tried to minimize the code as much as possible (hitting the 4K mark), so it's very possible we just wanted to get everything out of the way (it has been a while)

2y agoHN ↗

Hi! One of the authors of Ribbit here (@leo-ard).

One of our goals was to reduce as much as possible a R4RS compliant REPL, because it is quite reasonably sized and doesn't support macros (we managed to fit it in 6.5KB!). We considered R7RS, but it was a bit too ambitious for a first goal. We plan on supporting R7RS eventually !

If you want to read more, section 4 of "A R4RS Compliant REPL in 7 KB" explains our rationale behind the choice of R4RS :

https://arxiv.org/pdf/2310.13589

2y agoHN ↗

6.5K ! you could fit that on some microcontrollers

2y agoHN ↗

Good to see it has moved so much from just JavaScript being the main target. I like the small scheme portable idea a lot. For those requiring just a minimal scheme this works.

2y agoHN ↗

IIRC (might be wrong here) we had full support for JS, C, Python and Scheme from the start. As it evolved I'm unsure how support was kept throughout the versions but I know a much larger set of languages now support the runtime, at least for a subset of the features.

2y agoHN ↗

IIRC (might be wrong here) we had full support for JS, C, Python and Scheme from the start

I'm pretty sure we had support for JS, C, Python from the beginning as well. Then Scheme, posix shell, assembly came along for the ride.

I'm unsure how support was kept throughout the versions but I know a much larger set of languages now support the runtime, at least for a subset of the features

One thing that really helped is CI testing! All the RVMs (the 16 targets) are now fully tested at each PR (https://github.com/udem-dlteam/ribbit/actions)

2y agoHN ↗

Hey ! One of the authors of Ribbit (https://github.com/leo-ard).

I'm really happy to see that the project is getting some attention! We made a lot of progress since the last post on HN (https://news.ycombinator.com/item?id=31096771). We are now fully R4RS compliant, support 16 different target languages with a sort of FFI with all of them.

We are currently working on flonum/bignum support and a guide for adding your own RVM (new host) so that you can run scheme in your favourite language. It should be coming soon!

I'll stay up to answer any questions about Ribbit!

2y agoHN ↗

Could Scheme ever run on a GPU? I've seen a GPU REPL made with APL. I'm not sure what graphics primitive could map to linked lists but it would mean John McCarthy's AI on modern AI hardware.

2y agoHN ↗

Implementing an RVM running on a GPU is definitely feasible, however, I'm not sure if it would be fast or efficient. For the case of Ribbit, you only need to write an RVM in a language that can compile to a GPU. An RVM is mostly a interpreter loop with some primitives. Maybe exposing the GPU primitives could enable heavily parallelizable scheme code ? It could be a fun experiment