Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tandav
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
tandav
1y ago
Still no option to store virtual envs outside projects after a year https://github.com/astral-sh/uv/issues/1495
2.
▲
by
tandav
2y ago
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 used virtualenvwrapper bef
3.
▲
by
tandav
2y ago
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 checks or cookie popups (cookies are fine, but the popups a
4.
▲
by
tandav
2y ago
The lack of s3-like remotes support was the reason I switched from borg to restic
5.
▲
by
tandav
2y ago
Also Atom feeds supports pagination https://www.rfc-editor.org/rfc/rfc5005#section-3
6.
▲
by
tandav
2y ago
Yes, dystopian soulless vibe of AI images is unpleasant.
7.
▲
by
tandav
2y ago
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 directory, makes it more clean, no need to exclude for
8.
▲
by
tandav
2y ago
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. This file takes about 10 minutes of preprocessing
9.
▲
by
tandav
2y ago
It would be nice to have some sort of demo
10.
▲
by
tandav
3y ago
Imagine Google removes RSS for YouTube channels
11.
▲
by
tandav
3y ago
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) ) and more. http
12.
▲
EffVer: Version your code by the effort required to upgrade
(jacobtomlinson.dev)
3 points
by
tandav
3y ago
|
1 comments
13.
▲
by
tandav
3y ago
You can also use HISTCONTROL=ignoreboth to use both ignorespace and ignoredups
14.
▲
by
tandav
3y ago
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, here's a working Dockerfile. https://gitlab
15.
▲
by
tandav
3y ago
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 and not for ChatGPT plus. For example, I'm using https:
16.
▲
by
tandav
3y ago
I wish they make it possible to use any, callable builtins for type annotations
17.
▲
by
tandav
3y ago
If you need just reverse proxy, Caddyfile syntax looks simpler: myapp.company.com { reverse_proxy localhost:3000 }
18.
▲
by
tandav
3y ago
TIL there's git notes https://git-scm.com/docs/git-notes
19.
▲
by
tandav
3y ago
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.
20.
▲
by
tandav
3y ago
(2013)
21.
▲
by
tandav
3y ago
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/object. You don't have to unwrap it after trans
22.
▲
by
tandav
3y ago
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) ) instead of:
23.
▲
by
tandav
3y ago
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, SC1090] - repo:
24.
▲
by
tandav
3y ago
To support multiple PIDs: killport() { lsof -ti :"$1" | xargs kill -9; }
25.
▲
by
tandav
4y ago
I wrote a script to clean Google search url and keep only q param https://github.com/tandav/blog/blob/master/posts/clean_googl...
26.
▲
by
tandav
4y ago
also try mamba which is much faster than conda https://mamba.readthedocs.io/en/latest/index.html
27.
▲
by
tandav
4y ago
* https://virtualenvwrapper.readthedocs.io also alias to create jupyter kernel for activated environment: mkkernel() { if [ -n "$1" ]; then KERNEL_NAME=$1 elif [ -z "$VIRTUAL_ENV&
28.
▲
by
tandav
4y ago
I use https://github.com/navidrome/navidrome and it’s great
29.
▲
by
tandav
4y ago
Gitea will support federation soon https://github.com/go-gitea/gitea/issues/18240
30.
▲
by
tandav
4y ago
termux (android) can run python, node, docker and more, but you should have static IP or some tunneling like cloudflare/tailscale/zerotier
More ›