Explore >> Select a destination


You are here

rogs.me
| | bitofpixels.com
5.5 parsecs away

Travel
| | I recently integrated Django Sendfile with a website to provide downloads that required authentication (even knowing the location of an authentication requiring file in the static directory will not allow you to download it thanks to some Apache conf magic).
| | www.mattlayman.com
3.5 parsecs away

Travel
| | Are you tired of manually tracking changes to your Django models? Say hello to django-simple-history! This powerful package allows you to easily keep track of modifications made to your models over time. With django-simple-history, you can retrieve historical records for a model, track changes made by different users, and display historical data in the Django admin interface.
| | paulosman.me
1.2 parsecs away

Travel
| |
| | blog.nuculabs.de
15.6 parsecs away

Travel
| Hello, In this article I will introduce you to pyenv, a tool for managing python environments. Installing pyenv is pretty straight forward, you'll need to clone the repo and add the binaries to the path. For a typical Debian based distro using the Zsh shell the instructions would be: 1 2 3 4 git clone https://github.com/pyenv/pyenv.git ~/.pyenv echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc Then, in order for this to take effect, you need to reload the shell with: source ~/.zshrc, or just restart your terminal. ??