Viewing profile — ElevenPhonons
ElevenPhonons
HN member- Joined
- Wed, Jul 01, 2020, 4:40 AM UTC
- HN karma
- 15
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About ElevenPhonons
Recent public activity
-
comment
Comment #39532147
This looks interesting, but there's a lot of moving pieces (rust, python, typescript, react, v8). Maybe remove the .DS_Store files from repo and update your gitignore globally to a…
-
comment
Comment #31984884
I believe this pivoting example might be useful to scientists, support staff and postdocs in other fields as well (e.g., physics, chemistry, bioinformatics, material science). A fe…
-
comment
Comment #31578383
That was my experience as well. The RSE role doesn't seem to fit into their current model. It doesn't work from a career path, nor from a competitive compensation standpoint. I sus…
-
comment
Comment #30665458
https://github.com/mpkocher/Functional-Programming-Technique... I covered a few core concepts (e.g., functions as first-class citizens, closures, partial application, etc...) and a…
-
comment
Comment #28421124
It's worth noting that "except:" is not the same as "except Exception:" in Python. "except:" is catching BaseException which is often not what to do. BaseException is catching Syst…
-
comment
Comment #27910938
You can also create CLI tools that can load partial or full "presets" defined in JSON. https://github.com/mpkocher/pydantic-cli
-
comment
Comment #27646367
I've also found Pydantic to be a valuable library to use. However, it does have a strongly opinionated approach to casting that can sometimes yield non-obvious results. This behavi…
-
comment
Comment #25868540
Perhaps a custom compose function can help with these use cases? This series has a few examples of composing computation in Python that might be useful. https://github.com/mpkocher…
-
comment
Comment #25721077
Are these really the same? The idiomatic Python 3 version uses generators to compose the computation and to avoid unnecessary memory allocations. Does funct.Array also do this? - h…
-
comment
Comment #25207557
Is there a list of backward incompatible changes? Also, how would you describe the overall health of the code base with all of these new features added?
-
comment
Comment #25166510
It seems like there's a lot of friction points with this model and perhaps a bit too much world building. In general, I have trouble understanding the allure of this approach. Anot…