Live data from Hacker News

Viewing profile — sczi

sczi

HN member
Joined
Sun, Jul 13, 2025, 4:28 PM UTC
HN karma
17
Public activity
14 items

About sczi

No profile information was provided.

Recent public activity

  1. comment
    Comment #49245713

    Does Glamorous Toolkit work for you? It's pharo with a different rust based GUI stack, and some batteries included for making custom inspector views and such. I don't have a high D…

  2. comment
    Comment #48995272

    The one thing I've found google's models to be the best at is proofreading text in non-english languages. Probably because I imagine they have the most training data for it as Goog…

  3. comment
    Comment #45852300

    Nice solution with dataclass! And for a complete comparison with the blog you can also use a library to do it for you. It's not quite in the official python distribution but it's m…

  4. comment
    Comment #45010434

    Wow it looks like you are taking reloading to another level I hadn't even considered. For example in your elephant:main.py test, in swanky python I run do(3): ['Paint 3 canvasses',…

  5. comment
    Comment #45009129

    I haven't started really looking into it yet, but I found this blog that looks like a good description of what exactly happens during stack unwinding in python and gets a large par…

  6. comment
    Comment #45006926

    Oooh now that is interesting. What I by mean stuff I don't even know that I don't know :) Yes mine doesn't handle that, it is the same as jupyter there. Smalltalk is supposed to be…

  7. comment
    Comment #45005676

    Oh that is really interesting, I was just aware of IPython's autoreload extension, I hadn't found your library. I'm also working on hot reload for python as I'm working on a develo…

  8. comment
    Comment #44871267

    That question clearly says hard labour. I'm sure some people didn't read it, but I think there also may be another effect there, where when talking to people in person, they realiz…

  9. story
  10. comment
    Comment #44673626

    So far it's just a subset of what's supported by SLIME for common lisp, and I've heard the smalltalk community emphasizes interactive development tooling even more so than the lisp…

  11. comment
    Comment #44672321

    A funny thing is I once had a type bug while coding elixir, that bash or perl would've prevented, but rust or haskell wouldn't have caught. I forgot to convert some strings to numb…

  12. comment
    Comment #44672081

    Also the referenced post is about them acquiring plataformatec, not about using elixir. Jose Valim (the creator of elixir) left plataformatec after the nubank acquisition in order …

  13. comment
    Comment #44663650

    Interesting, I hadn't heard of pyrasite, it has a nice GUI with info about objects' memory usage, threads, open files and more. I'll definitely take ideas from it. I'm working on a…

  14. comment
    Comment #44551591

    In ruby async is based on stackful fibers. With https://github.com/socketry/async-debug you can see a tree of all fibers with their full call stack. It also avoids the problem peop…