lobste_rs

feeds.twtxt.net

No description provided.

Recent twts from lobste_rs

Learning modern compilers?
There was a video a few years ago where Anders Hejlsberg (of C#, Turbo Pascal, and Delphi fame, among others) discussed modern compiler architecture and how it’s vastly different from what is taught in university compiler courses, or even in recent books on compilers and language implementation

https://www.youtube.com/watch?v=wSdV1M7n4gQ

Specifically, he talks about the Roslyn compiler and how it utilizes a more service oriented architectur … ⌘ Read more

⤋ Read More

WASI socket extensions for Go 1.21
The WASI preview 1 specification was missing socket APIs so some WebAssembly runtimes added extensions to allow applications to do more than basic file I/O.
This package enables a large class of Go programs (almost any program doing networking) to run when compiled to WebAssembly using the WASI preview 1 spec. It exposes functions similar to net.Dial and net.Listen that can be used to leverage the socket extensions thanks to the new //go:wasmimport compiler directive.

It also has a set of exampl … ⌘ Read more

⤋ Read More