Viewing profile — tusharsadhwani
tusharsadhwani
HN member- Joined
- Wed, May 05, 2021, 10:22 PM UTC
- HN karma
- 395
- Public activity
- 62 items
- HN profile
- View on Hacker News ↗
About tusharsadhwani
Some of my posts may have broken links, the blog currently lives at https://tush.ar
Recent public activity
-
comment
Comment #41268598
that's because it's not a reimplementation, it is cpython recompiled to wasm.
- story
-
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.
-
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…
-
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…
- story
-
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…
-
comment
Comment #37185099
they're beta testing `textual-serve` which does exactly this.
-
comment
Comment #35839991
thanks for the non paywalled link!
-
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 …
-
comment
Comment #34651768
it does!
-
comment
Comment #34651756
you're welcome!
-
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…
-
comment
Comment #34334087
requirements.txt doesn't support putting your python version in it
-
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…
- story
-
comment
Comment #31890978
The idea came from trio's nurseries I believe.
-
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.
- story
-
comment
Comment #30619035
not very related, but you might want to check out manim: https://github.com/ManimCommunity/manim
-
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.
-
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…
-
comment
Comment #29729106
That's amazing. I'm interested in C# now
-
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…
-
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.