HackerTrans
トップ新着トレンドコメント過去質問紹介求人

arathore

no profile record

投稿

Ty: A fast Python type checker and language server

github.com
916 ポイント·投稿者 arathore·昨年·287 コメント

Platformer Toolkit (interactive video essay)

gmtk.itch.io
2 ポイント·投稿者 arathore·4 年前·0 コメント

Nintendo adds support for Bluetooth audio on the Switch

en-americas-support.nintendo.com
6 ポイント·投稿者 arathore·5 年前·1 コメント

Nintendo's Game Builder Garage [video]

youtube.com
3 ポイント·投稿者 arathore·5 年前·0 コメント

コメント

arathore
·4 年前·議論
I think those limitations also lead to a lot of creativity. Good music is often made under severe constraint.
arathore
·4 年前·議論
If by running models you mean just the inference phase, then even today you can run large family of ML models on commodity hardware (with some elbow grease, of course). The training phase is generally the one not easily replicated by non-corporations.
arathore
·4 年前·議論
Exactly, I mostly write in Latex and one-sentence-per-line makes so much sense for that.
arathore
·5 年前·議論
> When printing tracebacks, the interpreter will now point to the exact expression that caused the error instead of just the line. For example:

  Traceback (most recent call last):
    File "distance.py", line 11, in <module>
      print(manhattan_distance(p1, p2))
            ^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "distance.py", line 6, in manhattan_distance
      return abs(point_1.x - point_2.x) + abs(point_1.y - point_2.y)
                             ^^^^^^^^^
  AttributeError: 'NoneType' object has no attribute 'x'
This is such a great quality of life improvement.
arathore
·5 年前·議論
Thanks for the update. I had a feeling that this might have been the case due to the launch crunch and it's perfectly understandable. Really excited for the future of this project!
arathore
·5 年前·議論
Currently the only way to sign up for a personal account is through google. Is there another way that I am missing, or are there any plans to provide email based signups in the future?
arathore
·5 年前·議論
It's not even a niche use cases, many times IT teams would suggest deleting the cookies and cache for a specific site to overcome common login issues.
arathore
·5 年前·議論
I am looking forward to performance improvements. It would be great if the core window services were optimized to use less resources to improve the windows experience on less impressive hardware.
arathore
·5 年前·議論
> I don’t care about Kubernetes, but someone might read this post and decide that it is a good idea to “simplify” an existing project by rewriting it in 17000 lines bash script.

I think the 17kloc would discourage that kind of thinking.
arathore
·5 年前·議論
Great project! I've had success using camelot-py (https://camelot-py.readthedocs.io) to extract tabular data from PDFs (for images, I use imagemagick to convert those to PDF). If your table has borders the default method (lattice) works quite well. For non-bordered table there is the option to use 'stream' option but usually requires bit more preprocessing to get usable results.