/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

glennsqlperformance.com
| | dbanuggets.com
1.2 parsecs away

Travel
| | With the invitation of Steve Jones for April month of T-SQL Tuesday, I am going to share some of my thoughts on using Jupyter notebooks. Jupyter Notebook is an open-source web application that can serve us to create, share code and documents with others. It provides that beautiful way to document your code, text, images...
| | voiceofthedba.com
2.3 parsecs away

Travel
| | I hosted the blog party this month, with the invite to write about notebooks. These are a neat technology, and I've written about them at SQLServerCentral. This post is a wrap-up of the various responses to my invitation. First, quite a few people give credit to either Aaron Nelson or Rob Sewell for their writings...
| | curatedsql.com
2.2 parsecs away

Travel
| |
| | blog.nuculabs.de
10.1 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.