Viewing profile — eirki
eirki
HN member- Joined
- Wed, Sep 26, 2018, 2:07 PM UTC
- HN karma
- 45
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About eirki
No profile information was provided.
Recent public activity
-
comment
Comment #35588474
The only exceptions I can think of is https://docs.python.org/3/library/typing.html#typing.ClassVa...
-
comment
Comment #35588463
FastApi very recently added support for Annotated, and now recommends using that over default arguments. https://fastapi.tiangolo.com/release-notes/#0950
-
comment
Comment #35330493
Url: https://github.com/casey/just
-
comment
Comment #35257388
I absolutely agree about fixtures-as-arguments thing. Ward does this a lot better, using default values for the fixture factory. There's a long issue on ideas to implement somethin…
-
comment
Comment #34267319
Different time period, but definitely check out History of the Twentieth Century. https://podcasts.apple.com/us/podcast/the-history-of-the-twe...
-
comment
Comment #30115468
I also switched to just recently. Nice and simple syntax, and a very satisfying verb: just push just test
-
comment
Comment #29910331
Also chiming in to say thanks for the good work! This looks like an amazing release - I practically jumped in excitement when I saw the fish style autocomplete.
-
comment
Comment #29533233
Disabling mutation prevents you from changing attributes after instantiation, no?
-
comment
Comment #29531529
I just wish I could disable the type coercion. E.g. 1 becomes "1" if the attribute is annotated str.
-
comment
Comment #29237398
Does it not lack a proper æ?
-
comment
Comment #28879582
I think the comparison between VS Code and Chrome is spot on. Monoculture in the text editor/IDE space is a very real risk right now.
-
comment
Comment #28816760
If 10% are located in and around one location and the rest are spread around the world, then that would definitely count as 'heavily concentrated' in my book
-
comment
Comment #28784329
> For instance Australia has a lot more private wealth saved up than Norway. At a lower GINI coefficient as well! This is demonstrably false: https://data.oecd.org/chart/6tTs
-
comment
Comment #28469135
This is my experience as well. $10 for each running process (server, worker, database) adds up very fast.
-
comment
Comment #28257654
Absolutely agree. The myriad of overlapping tools were the biggest problem for me when learning javascript.
-
comment
Comment #27572714
Genuine question: Is Julia used for anything other than mathematics yet? Is there any sign of the Julia community expanding beyond science, maths, machine learning etc?
-
comment
Comment #27174182
And some linters will complain if there is a collision between the names of a parameter and a function.
-
comment
Comment #27174116
Absolutely love the idea of using default params to identify fixtures. That part of pytest has always rubbed me the wrong way.
-
comment
Comment #27106054
Also: The Age of Napoleon. https://ageofnapoleon.com
-
comment
Comment #26994464
This is very good advice. It's often so tempting to get on that threadmill after making the first purchase.
-
comment
Comment #26762830
> Avoid SELECT title, last_name, first_name FROM books LEFT JOIN authors ON books.author_id = authors.id > Prefer SELECT b.title, a.last_name, a.first_name FROM books AS b LEFT JOI…
-
comment
Comment #26100315
It is also marginally faster, I think.
-
comment
Comment #25941998
Alternate anectdata: I switched to Vivaldi a year or two ago and have had no problems with crashes.
-
comment
Comment #25208374
Reminds me of the "House of Special Purpose" https://en.wikipedia.org/w/index.php?title=House_of_Special_...
-
comment
Comment #21734883
Mypy sometimes uses init files to understand internal imports.