budafish | 5 years ago | on: Python 3.10.0a6 is available, now with 100% more pattern matching
budafish's comments
budafish | 5 years ago | on: Changes to LastPass Free
Works great for me!
budafish | 5 years ago | on: You don't really need a virtualenv
budafish | 5 years ago | on: You don't really need a virtualenv
I have resorted to using a throwaway dev container which mimics the local storage of packages. Hopefully someone find the below bash function useful.
The only issue I have using this method is that I cant use VSCode to Debug, which I am hoping to find a nice solution for, but nothing yet.
function python() {
docker run \
-it --rm \
--name python_$(pwd | sed 's#/home/##g' | sed 's#/#.#g')_$(date +"%H%M%S") \
-u $(id -u):$(id -g) \
-v "$(pwd)":"$(pwd)" \
-w "$(pwd)" \
-e PROJECT_ROOT="$(pwd)" \
-e PATH="$(pwd)/vendor/bin/:${PATH}" \
-e PYTHONUSERBASE="$(pwd)"/vendor \
-e PYTHONDONTWRITEBYTECODE=1 \
-e PIP_NO_CACHE_DIR=1 \
--net=host \
-h py-docker \
python:3-slim \
/bin/bash -c '/bin/bash --rcfile <(echo "PS1=\"[$(python --version)]:: \"") -i'
}budafish | 5 years ago | on: What I Use Instead of Google
I stumbled on a new project which simulates a browser download using a headless Chrome Developer tools session[0]. Looks interesting, supports continuation and can be ran on a cron job. Worth a look.
budafish | 5 years ago | on: Telegram publishes users' locations online
budafish | 5 years ago | on: Show HN: System for Private Data Management
budafish | 5 years ago | on: Ask HN: What services can I use to collect/query and dashboard my custom data?
Where are you in terms of your development?
budafish | 6 years ago | on: Ask HN: What projects are you working on now?
budafish | 6 years ago | on: Ask HN: How do you share/organize knowledge at work and life?
Will keep checking in in the future. Keep going though!