Explore >> Select a destination


You are here

golb.hplar.ch
| | live-miraculous.pantheonsite.io
4.3 parsecs away

Travel
| | [AI summary] The article discusses the challenges and solutions for using icon fonts in web development, advocating for inline SVG as a more reliable and flexible alternative.
| | www.afasterweb.com
1.7 parsecs away

Travel
| | Two simple tips for optimizing the performance of 3rd-party fonts.
| | mikemai.net
5.5 parsecs away

Travel
| | This is how you become a lead web designer or developer.
| | blog.nuculabs.de
15.2 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. ??