Viewing profile — tandav
tandav
HN member- Joined
- Sat, Nov 05, 2016, 12:49 PM UTC
- HN karma
- 490
- Public activity
- 183 items
- HN profile
- View on Hacker News ↗
About tandav
Recent public activity
-
comment
Comment #44358534
Still no option to store virtual envs outside projects after a year https://github.com/astral-sh/uv/issues/1495
-
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…
-
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…
-
comment
Comment #41703999
The lack of s3-like remotes support was the reason I switched from borg to restic
-
comment
Comment #41426322
Also Atom feeds supports pagination https://www.rfc-editor.org/rfc/rfc5005#section-3
-
comment
Comment #40929848
Yes, dystopian soulless vibe of AI images is unpleasant.
-
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…
- story
-
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.…
-
comment
Comment #39791883
It would be nice to have some sort of demo
-
comment
Comment #39494727
Imagine Google removes RSS for YouTube channels
-
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) ) …
- story
-
comment
Comment #38940721
You can also use HISTCONTROL=ignoreboth to use both ignorespace and ignoredups
-
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,…
-
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…
-
comment
Comment #37742195
I wish they make it possible to use any, callable builtins for type annotations
-
comment
Comment #37458538
If you need just reverse proxy, Caddyfile syntax looks simpler: myapp.company.com { reverse_proxy localhost:3000 }
-
comment
Comment #37085317
TIL there's git notes https://git-scm.com/docs/git-notes
-
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.
-
comment
Comment #36600461
(2013)
-
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…
-
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) ) …
-
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…
-
comment
Comment #35698782
To support multiple PIDs: killport() { lsof -ti :"$1" | xargs kill -9; }