Live data from Hacker News

Viewing profile — stutonk

stutonk

HN member
Joined
Fri, Jan 13, 2017, 2:47 PM UTC
HN karma
117
Public activity
32 items

About stutonk

No profile information was provided.

Recent public activity

  1. comment
    Comment #43603130

    Brown noise in Chuck. Adjust the filter cutoff (freq) to your desired comfort level. CNoise noise => LPF lpf => dac; noise.mode("flip"); lpf.freq(120); while(true) { 1::second => n…

  2. comment
    Comment #40777608

    quickjs [1] has native support for Cosmopolitan, is meant to be easily embeddable, and is included as part of the standard Cosmopolitan distribution. It looks like qjs also has pat…

  3. comment
    Comment #35562444

    Yes! With spork/netrepl and Conjure in Neovim https://janet-lang.org/api/spork/netrepl.html https://github.com/Olical/conjure

  4. comment
    Comment #28654017

    Apparently there's also a data processing library for Nim called Arraymancer[0] that's inspired by Numpy and PyTorch. It claims to be faster than both. [0] https://mratsim.github.i…

  5. comment
    Comment #25341942

    Some people don't like systemd because it rolls a bunch of other functionality beyond 'just init' into a giant monolithic beast. The advantage is that distro maintainers are able t…

  6. comment
    Comment #25246448

    If it is indeed a union mount mechanism, then that's truly a remarkable feature. Reading the documentation makes it sound like something akin to an symbolic link but perhaps not in…

  7. comment
    Comment #25246040

    Like a union mount?

  8. comment
    Comment #25245703

    export VAR="$VAR:whatever else"

  9. comment
    Comment #24896191

    The problem isn't with the mathematical concept of monads, it's that Monad is a typeclass in a hierarchy along with other totally abstract category theoric classes introduced at di…

  10. comment
    Comment #24896097

    Well said. This is exactly my gripe with Haskell monads. There are too many places where the hierarchy isn't uniform and there are a bunch of special monads like IO and List. It le…

  11. comment
    Comment #24891630

    The profusion of Category-theoric abstractions and some of the more recent purely functional norms in Haskell are like the PhD-level version of `AbstractVisitorContextFactoryBuilde…

  12. comment
    Comment #24880469

    I believe the 'problem' that it solves is universal network transparency between pieces of anything. It's a library that can be used from basically any language that has a C FFI on…

  13. comment
    Comment #24880400

    In addition, every closure is also a 'state container,' as it were. This is how some functional languages e.g. Erlang emulate mutation. A function holds the desired state in a clos…

  14. comment
    Comment #23950025

    In my state, most of the programs the community colleges offer are aimed either at credential acquisition or for transfer to a university; there are no four year programs. However,…

  15. comment
    Comment #23382348

    When I first heard of this, I was also quite intrigued. But I wonder if it might actually be vulnerable to some of the darker patterns of human 'social markets' if implemented in i…

  16. comment
    Comment #23260196

    My point is that mv is a compiled C program, not a shell builtin or piece of shell syntax, that you may nonetheless call in a shell script to extend the functionality of the shell.…

  17. comment
    Comment #23259683

    By your own logic, your own UNIX solution to the file renaming problem is "not shell" since it uses the mv "utility". Or do you mean rename is not POSIX? The shell language certain…

  18. comment
    Comment #23257663

    Linux, at least, has rename(1) where you can just use the same syntax as Windows ren.

  19. comment
    Comment #23162615

    Just out of curiosity, what was the purported outcome/why wasn't it worth it?

  20. comment
    Comment #21899455

    I once made something similar after reading a blog post here on HN [1] just to see how easy it is to make something like this. Mine [2] uses passphrases to generate keys with the A…

  21. comment
    Comment #18784294

    By MIT scheme, do you mean MIT/GNU scheme? A few schemes implement their debuggers in terms of call/cc (or delimited counterparts) and exceptional conditions like errors or breaks …

  22. comment
    Comment #18426350

    Already been patched in any case. https://gitlab.freedesktop.org/xorg/xserver/commit/50c0cf885...

  23. comment
    Comment #17797480

    In context, I believe the author means that having a build system which splits into independent, simultaneously executing processes (such as `make -j 5` or some such) tends to have…

  24. comment
    Comment #17653171

    Yeah, it only teaches you about term rewriting, boolean logic, iteration vs. recursion, algorithm complexity, higher-order functions, data structure design, closures, generics, sta…

  25. comment
    Comment #16733746

    After looking up a couple images -- that game appears to use Wang tiles. They're also sometimes used for terrain textures in video games to make seamless mosaics with less obvious …