Live data from Hacker News

Viewing profile — oblvious-earth

oblvious-earth

HN member
Joined
Mon, Nov 09, 2020, 2:16 PM UTC
HN karma
337
Public activity
71 items

About oblvious-earth

No profile information was provided.

Recent public activity

  1. comment
    Comment #47546977

    OpenAI just acquired Astral who have an index service called pyx, so they would have a step up. My understanding though is most corporations that take security seriously either bui…

  2. comment
    Comment #44367059

    It does not work EXACTLY how pip works, big differences are covered here: https://docs.astral.sh/uv/pip/compatibility/ Some of these are uv following the standards while pip is sti…

  3. comment
    Comment #44120523

    PDM has plugins, such as being able to invoke conda commands: https://github.com/pdm-project/awesome-pdm Otherwise I don't know what they're talking about, it is indeed a Python pa…

  4. comment
  5. comment
    Comment #42607364

    If you're concerned about dependency confusion attacks you should host your own index and vet what goes on to it. But there is a better solution coming, PEP 708 was developed for t…

  6. comment
    Comment #41467214

    No, it looks like it's been available on GitHub for a while, but development wasn't done there: https://star-history.com/#nginx/nginx&Date

  7. comment
    Comment #41387939

    Thanks for the update, unfortunately I can no longer edit my top comment or title to reflect this. Would be happy for admin to do so, if that's something that's done on this site.

  8. comment
    Comment #41385547

    The original text stated: > I don’t know much about voting systems, but I know someone who does. Unfortunately he’s currently banned. Maybe we can wait until his 3-month ban expire…

  9. story
  10. comment
    Comment #41322792

    pip will not do that, it will attempt to use the latest version under the user requirements, only if there is a conflict between two packages will it backtrack on old versions of a…

  11. comment
    Comment #41322762

    I would say, as someone who works on performance of pip, no one else was able to reproduce OPs severe performance issue, not saying it didn't happen, just it was an edge case on sp…

  12. comment
    Comment #41322691

    Write an issue on their GitHub if you don't already see one, they're very responsive

  13. comment
    Comment #41322662

    > I doubt the typical LSP servers will be aware of dependencies specified in that way and so won't offer autocompletion etc for those libraries. Given this is a recently accepted s…

  14. comment
    Comment #41113083

    Maybe it’s the fact it can be done with multiple operators and strong encryption that is hard to grok, but at least here is a very simple example of a limited partially homomorphic…

  15. comment
    Comment #40910039

    > The people who say "just use pip and venv" don't understand the issue. The people saying that say that because it works for them and it solved their problems. > setuptools is som…

  16. comment
    Comment #39564139

    Is this comparable to Ibis or is it something that would be a backend for it?

  17. comment
    Comment #38334267

    Discussion on Python discuss: https://discuss.python.org/t/deprecating-utcnow-and-utcfromt... I'm the one arguing against this move, I've already made my thoughts clear that it's a…

  18. comment
    Comment #38306984

    > Python doesn't have a standards document. It has a reference implementation that defines the language. That's not quite strictly true, Python does have a documented "Language Ref…

  19. comment
    Comment #38200365

    The main difference now is there is an actual standard rather than a de facto tool that becomes the standard. The idea is that different tools may rise and fall in popularity but t…

  20. comment
    Comment #37625309

    > It's a single script It's over 1200 lines of code, it's not like it's 100 lines of code and can fit on a single screen > Globals are fine--they're even marked as such I would arg…

  21. comment
    Comment #37607304

    > I don't think globals are so awful for certain things. I prefer a more functional approach where you have simple composable standalone functions instead of classes. Obviously cla…

  22. comment
    Comment #37601020

    Quickly skimming some points that would irratate me if I had to maintain this script: * Importing Paramiko but regularly call `ssh` via subprocess * Unused functions like `execute_…

  23. comment
    Comment #35220204

    In practice wouldn't this just mean part nationalizing the bank so you can keep paying the salaries of all the various bank tellers, IT staff, and accountants to allow the deposito…

  24. comment
    Comment #35176958

    > This is true, but now you're explicitly depending on all of your transitive dependencies They're constraints not dependencies they don't need to be installed and you can just upd…

  25. comment
    Comment #35147484

    The simple solution to this with pip is constraints file: pip install pip freeze > constraints.txt And now in any new environment: pip install -c constraints.txt Now you can instal…