Explore >> Select a destination


You are here

mcuoneclipse.com
| | github.com
3.6 parsecs away

Travel
| | A cross-platform, linkable library implementation of Git that you can use in your application. - libgit2/libgit2
| | initialcommit.com
5.8 parsecs away

Travel
| | Makefiles are used to build and compile programs. We explain how Git's original Makefile works line by line to help clarify how programs like Git are developed.
| | atilaoncode.blog
5.8 parsecs away

Travel
| | Big complicated projects nearly always need a build system. They might be generating code. They might be compiling different branches depending on the platform or a build-time configuration option. They might turn on/off unity builds for C++. For most simple projects however, build systems are stupid. Let's say you have a single C file. We...
| | blog.nuculabs.de
24.4 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. ??