Live data from Hacker News

Viewing profile — tandav

tandav

HN member
Joined
Sat, Nov 05, 2016, 12:49 PM UTC
HN karma
490
Public activity
183 items

About tandav

Music Nerd https://rodionov.cc

Recent public activity

  1. comment
    Comment #44358534

    Still no option to store virtual envs outside projects after a year https://github.com/astral-sh/uv/issues/1495

  2. comment
    Comment #42680535

    I'm waiting for this issue to be done: Add an option to store virtual environments in a centralized location outside projects https://github.com/astral-sh/uv/issues/1495 I have use…

  3. comment
    Comment #41871860

    As an admin of my personal website, I completely disable all Cloudflare features and use it only for DNS and domain registration. I also stop following websites that use Cloudflare…

  4. comment
    Comment #41703999

    The lack of s3-like remotes support was the reason I switched from borg to restic

  5. comment
    Comment #41426322

    Also Atom feeds supports pagination https://www.rfc-editor.org/rfc/rfc5005#section-3

  6. comment
    Comment #40929848

    Yes, dystopian soulless vibe of AI images is unpleasant.

  7. comment
    Comment #40908758

    There is also virtualenvwrapper. It’s quite handy to create, list, remove virtual environment. I prefer to store all venvs in ~/.cache/virtualenvs instead of .venv in project direc…

  8. story
  9. comment
    Comment #39962327

    It's annoying that there's no easy way to export data from the Apple Watch. The only option is to export complete data from the Apple Health app, which results in a large ZIP file.…

  10. comment
    Comment #39791883

    It would be nice to have some sort of demo

  11. comment
    Comment #39494727

    Imagine Google removes RSS for YouTube channels

  12. comment
    Comment #39065934

    shameless plug: I maintain a small library to do functional pipes. You can write: ( range(10) | Map(lambda x: x * 10) | Filter(lambda x: x % 2 == 0) | Reduce(lambda a, b: a + b) ) …

  13. story
  14. comment
    Comment #38940721

    You can also use HISTCONTROL=ignoreboth to use both ignorespace and ignoredups

  15. comment
    Comment #38674407

    I found it difficult to find documentation on how to run gitlab in docker without nginx (I use caddy for reverse proxy) and enable the registry. For anyone having the same problem,…

  16. comment
    Comment #37832120

    Does anyone know vscode extension that can use OpenAI API to perform code completions like Copilot? There are several ChatGPT-like UIs that you can self host and pay only for API a…

  17. comment
    Comment #37742195

    I wish they make it possible to use any, callable builtins for type annotations

  18. comment
    Comment #37458538

    If you need just reverse proxy, Caddyfile syntax looks simpler: myapp.company.com { reverse_proxy localhost:3000 }

  19. comment
    Comment #37085317

    TIL there's git notes https://git-scm.com/docs/git-notes

  20. comment
    Comment #36675554

    Side question: Does anyone know a simple caddy-like solution, but for non-HTTP traffic? For example, I want automatic SSL certificates for redis, mongodb, postgresql.

  21. comment
  22. comment
    Comment #36264071

    My library solves 2 problems. 1. It does not require to wrap your iterable into some wrapper to use functional methods. It takes an iterable/object and returns another iterable/obj…

  23. comment
    Comment #36258563

    shameless plug: I maintain a small library to do functional pipes. You can write: ( range(10) | Map(lambda x: x * 10) | Filter(lambda x: x % 2 == 0) | Reduce(lambda a, b: a + b) ) …

  24. comment
    Comment #35767994

    I recommend shellcheck and shfmt pre-commit hooks: - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.9.0.2 hooks: - id: shellcheck args: [-e, SC2154, -e, SC1091, -e, S…

  25. comment
    Comment #35698782

    To support multiple PIDs: killport() { lsof -ti :"$1" | xargs kill -9; }