2020-10-22
(updated
2020-10-22)
— Written by Raul Morales Delgado
/nuggets
|
#python
#numpy In Numpy, the r_
and c_
class objects are utilities that allow users to concatenate objects using slice notation. In this post, I explain how to make the most out of them by modifying its string notation and I measure their performance for concatenating and for reshaping.
2020-10-08
(updated
2020-10-11)
— Written by Raul Morales Delgado
/nuggets
|
#git
#devops In this post, a solution is presented to the problem of rebasing the section of a branch to a new parent commit, and making that new section a new branch on which to work.
2020-09-01
(updated
2020-10-06)
— Written by Raul Morales Delgado
/templates
|
#hugo
#markdown
#latex
#bokeh Template and showroom for website’s features.
2020-02-18
(updated
2020-10-27)
— Written by Raul Morales Delgado
/tutorials
|
#mlops
#devops
#jupyter
#aws Jupyter Notebook is the de facto tool to sandboxing in Python and presenting your work as fluidly as possible. However, compute requirements sometimes exceed your local computer capabilities. This tutorial presents a walkthrough to setting up a connection-resilient Jupyter Notebook server on an AWS EC2 instance.
2019-11-15
(updated
2020-10-19)
— Written by Raul Morales Delgado
/nuggets
|
#devops
#conda
#macos
#shell This post shows how to re-enable command-line applications, namely the default ones in MacOS distributions, like git
, and user-installed Anaconda, that would not launch or work after installing MacOS Catalina and its new default shell, zsh
.
2019-08-25
(updated
2020-10-15)
— Written by Raul Morales Delgado
/tutorials
|
#python
#contextlib Because managing resources in Python is better with context managers — and context managers are easier with contextlib
. This article is a small tutorial on why context managers are easier with contextmanager
from contextlib
, where its similarities to a full implementation of with-statement context managers start to become blurrier, and how to effectively handle exceptions.
2019-07-25
(updated
2020-10-27)
— Written by Raul Morales Delgado
/tutorials
|
#git
#github
#mlops
#devops Git and GitHub are extremely useful tools for version control and collaborative work. This tutorial is a hands-on introduction to their functionality — you will learn how to set these tools up and how to use them. By the end of this tutorial, you will be able to develop sustainable workflows that you can seamlessly integrate to your everyday toolset.