Learning resources for SQL
read moreOther articles
ssh forward to link local
Lang: en Status: published
At some point I used Jupyter notebooks on different computers and with different Python versions and wanted to distinguish them. So I gave them IP addresses with the Python version encoded in them and the host all within the local block
127.
.But how do I …
read morepip with git-repositories
When to choose which syntax to install your own Python package
read moreEnhance matplotlib and LaTeX
Plotting for LaTeX documents with matplotlib
To use $\LaTeX$ efficiently you should use raw-strings (
r"$\LaTeX^2$"
) otherwise you need to escape the backslashes with backslashes. To use $\LaTeX$ and format-strings you need to escape all curly braces with curly braces, e. g.r"{} $\textrm{{nah}}$".format("escaping")
.Standard official …
read moreCommit hooks
How working with Git hooks can be a pleasure
read morePyScaffold, my boilerplate of choice
Tricks with global and local variables
Use functions where you have the name as a string and create variables where you also only have the name as a string
read morePython 2 vs. Python 3
Why to use Python 3 and how to convert your code
read moreFitting in Python
How to fit curves to data in Python
read more