Live data from Hacker News

Viewing profile — eirki

eirki

HN member
Joined
Wed, Sep 26, 2018, 2:07 PM UTC
HN karma
45
Public activity
31 items

About eirki

No profile information was provided.

Recent public activity

  1. comment
    Comment #35588474

    The only exceptions I can think of is https://docs.python.org/3/library/typing.html#typing.ClassVa...

  2. 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

  3. comment
    Comment #35330493

    Url: https://github.com/casey/just

  4. 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…

  5. 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...

  6. comment
    Comment #30115468

    I also switched to just recently. Nice and simple syntax, and a very satisfying verb: just push just test

  7. 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.

  8. comment
    Comment #29533233

    Disabling mutation prevents you from changing attributes after instantiation, no?

  9. comment
    Comment #29531529

    I just wish I could disable the type coercion. E.g. 1 becomes "1" if the attribute is annotated str.

  10. comment
    Comment #29237398

    Does it not lack a proper æ?

  11. 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.

  12. 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

  13. 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

  14. comment
    Comment #28469135

    This is my experience as well. $10 for each running process (server, worker, database) adds up very fast.

  15. comment
    Comment #28257654

    Absolutely agree. The myriad of overlapping tools were the biggest problem for me when learning javascript.

  16. 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?

  17. comment
    Comment #27174182

    And some linters will complain if there is a collision between the names of a parameter and a function.

  18. 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.

  19. comment
    Comment #27106054

    Also: The Age of Napoleon. https://ageofnapoleon.com

  20. comment
    Comment #26994464

    This is very good advice. It's often so tempting to get on that threadmill after making the first purchase.

  21. 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…

  22. comment
    Comment #26100315

    It is also marginally faster, I think.

  23. comment
    Comment #25941998

    Alternate anectdata: I switched to Vivaldi a year or two ago and have had no problems with crashes.

  24. comment
    Comment #25208374

    Reminds me of the "House of Special Purpose" https://en.wikipedia.org/w/index.php?title=House_of_Special_...

  25. comment
    Comment #21734883

    Mypy sometimes uses init files to understand internal imports.