HackerTrans
TopNewTrendsCommentsPastAskShowJobs

arathore

no profile record

Submissions

Ty: A fast Python type checker and language server

github.com
916 points·by arathore·geçen yıl·287 comments

Platformer Toolkit (interactive video essay)

gmtk.itch.io
2 points·by arathore·4 yıl önce·0 comments

Nintendo adds support for Bluetooth audio on the Switch

en-americas-support.nintendo.com
6 points·by arathore·5 yıl önce·1 comments

Nintendo's Game Builder Garage [video]

youtube.com
3 points·by arathore·5 yıl önce·0 comments

comments

arathore
·4 yıl önce·discuss
I think those limitations also lead to a lot of creativity. Good music is often made under severe constraint.
arathore
·4 yıl önce·discuss
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 yıl önce·discuss
Exactly, I mostly write in Latex and one-sentence-per-line makes so much sense for that.
arathore
·5 yıl önce·discuss
> 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 yıl önce·discuss
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 yıl önce·discuss
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 yıl önce·discuss
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 yıl önce·discuss
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 yıl önce·discuss
> 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 yıl önce·discuss
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.