Live data from Hacker News

Viewing profile — tusharsadhwani

tusharsadhwani

HN member
Joined
Wed, May 05, 2021, 10:22 PM UTC
HN karma
395
Public activity
62 items

About tusharsadhwani

Python developer.

Some of my posts may have broken links, the blog currently lives at https://tush.ar

Recent public activity

  1. comment
    Comment #41268598

    that's because it's not a reimplementation, it is cpython recompiled to wasm.

  2. story
  3. comment
    Comment #40952372

    I finished this book, wrote the two implementations in Python and Zig, genuinely one of the best set of projects I've ever built.

  4. comment
    Comment #40926839

    This is already the best API testing client that I have found. It's lightweight, it's snappy, it's intuitive, and it can run on a VPS out of the box over an SSH connection, no prox…

  5. comment
    Comment #40467862

    Yup, it's extract, fork process, cleanup. It's also fairly easy to extend the project to create installers and let the user choose a path to extract in, and I plan on doing that. I…

  6. story
  7. comment
    Comment #40284781

    This is brilliant stuff, a very nice high level explanation that skips everything that would make it too boring for a first time reader. Adding other resources at the end which exp…

  8. comment
    Comment #37185099

    they're beta testing `textual-serve` which does exactly this.

  9. comment
    Comment #35839991

    thanks for the non paywalled link!

  10. comment
    Comment #34651793

    It's true, the truly cursed method should never be used in a project that you actually aim to use. But, I just wanted to see how close I could get to the original idea, regardless …

  11. comment
  12. comment
    Comment #34651756

    you're welcome!

  13. comment
    Comment #34378537

    If you think about it it's no different than wasm already. And wasm has been accessible for at least 4 years now, and yet nobody has given up react and typescript. wasm is being us…

  14. comment
    Comment #34334087

    requirements.txt doesn't support putting your python version in it

  15. comment
    Comment #32879672

    Projects can't keep using an old compilers because of security patches though. At some point, the old versions are too old to keep the security up to date. A more common example, w…

  16. story
  17. comment
    Comment #31890978

    The idea came from trio's nurseries I believe.

  18. comment
    Comment #31400451

    it's not like they'll have different user account behaviours for someone living in California at the moment, compared to someone living in the EU.

  19. story
  20. comment
    Comment #30619035

    not very related, but you might want to check out manim: https://github.com/ManimCommunity/manim

  21. comment
    Comment #30539048

    iirc that was AlexNet, ResNet came 3 years later whose refinements ended up making it better than a human at object detection.

  22. comment
    Comment #29733966

    I can't think of any exceptions to this right away, so you might be right. But, not having ctx available as an explicit value would make certain ast manipulations, as well as bytec…

  23. comment
    Comment #29729106

    That's amazing. I'm interested in C# now

  24. comment
    Comment #29727993

    True! Although there's some lints that would require you to parse tokens, such as checking for single vs. double quotes, or number of spaces used for indentation. However, python h…

  25. comment
    Comment #29726897

    I'll agree, it's not a good introduction to compilers, but it isn't meant to be. PLY on the other hand is an amazing resource, thanks for linking it here.