Viewing profile — mathek
mathek
HN member- Joined
- Fri, Jul 27, 2018, 3:40 PM UTC
- HN karma
- 18
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About mathek
No profile information was provided.
Recent public activity
-
comment
Comment #44020527
I think it is Firefly's approach ( https://github.com/GetFirefly/firefly ). They put a lot of work into it, but never made it fully functional, and it's not maintained anymore. So …
-
comment
Comment #44015286
Compiled to WASM it's ~700K, gzipped only 190K. But there's also BEAM code - the whole standard library is ~3M gzipped. We plan to do tree shaking to only include the used parts of…
-
comment
Comment #44015279
Tasks seem not to work indeed, but spawning processes works. Try Enum.map(1..10, fn _i -> spawn(fn -> IO.puts("new process") end) end) Also, there are two scenarios: compiling code…
-
comment
Comment #17627398
Concerning NIFs, it is entirely possible to write Membrane elements using NIFs in Rust ;) The reason why current ones are written in pure C is that they mostly consist of calls to …