Preview Notebooks on MacOS

Preview Notebooks on MacOS

MacOS doesn’t include an option in Finder to preview Jupyter Lab notebooks (.ipynb). There are several options but one of the quickest and simplest is to install ipynb-quicklook …

May 8, 2021 · 1 min
Python and JupyterLab on MacOS

Python and JupyterLab on MacOS

Python is a multi-paradigm interpreted programming language. pip manages packages from PyPI (the Python Package Index). PipEnv lets you create a virtual environment to run your application in isolation with the necessary libraries. Jupyter Lab is a web application that serves as a bridge between code and explanatory text. …

April 30, 2021 · 9 min
Preview Markdown on MacOS

Preview Markdown on MacOS

MacOS doesn’t include an option in Finder to preview Markdown files (.md). There are several solutions available, and one of the quickest and simplest is to install qlmarkdown …

April 24, 2021 · 1 min
My new blog!!

My new blog!!

In this post I describe how I set up this static blog “built” with jekyll and hosted on GitHub Pages. The source files are in the repository LuisPalacios.github.io. The site is finally configured on my domain: https://www.luispa.com …

April 19, 2021 · 10 min
GIT in Detail

GIT in Detail

GIT is a distributed, free and open-source version control system, designed to handle everything from small to very large projects with speed and efficiency. It does not depend on a central repository; multiple users can install GIT and communicate with each other without going through a central server. The thing is that would be unmanageable, so “central (remote) servers or repositories” are very useful and necessary, the most famous being GitHub, GitLab and Gitea. …

April 17, 2021 · 47 min
SSH and X11 as root

SSH and X11 as root

The goal is to make X11 (X-Window) applications work “also” from root. Making them work from a regular user is straightforward, but then switching to root with su/sudo and having X11 work is not allowed in Linux. The X11 connection only belongs to the user you logged in with via SSH. …

February 11, 2017 · 7 min