
Quick way to build rest api in python (Swagger / OpenAPI)
We look at how we can build rest API in python quickly. This quick guide is using FastAPI in order to create a quick API using python and SQL Alchemy. Rest API showing in OpenAPI and even redoc format is a really nice way to document your code.

How to create 3d moving pictures using neural network
We create a moving 3d image from pictures using a neural network. This new machine-learning algorithm uses mannequin videos to create pictures for the network to train on and create a depth map to rotate pictures in 3d.

Linux by example – Coreutils, python and build tools
We are in our new linux environment and create coreutils, python, ninja and meson. Talking about their usages and the importance of the utils in the core of linux.

Creating docker image from scratch and adding to local registry
We will create an image from scratch in docker and add that to a docker registry so we can reuse that image when we create new docker instances, controlling the whole flow. Working with docker and registry First of we install the docker client, server and registry on our debian machine. apt install docker docker.io […]

Linux by example – Gettext and OpenSSL
We are in our new linux environment and create gettext and OpenSSL, talking about internationallization and website security.

The complete upgrade debian guide
We upgrade Debian using a simple guide to go from Jessie to buster and looking at the different upgrade steps required to guide you through the process to get your Debian upgraded. Upgrade from Debian Jessie to Buster First of we ensure that the current installation is as upgraded as possible and that all the […]

Linux by example – Automake and Autoconf
We are in our new linux environment and create automake and autoconf used to generate configuration scripts for building more packages in your system.

Install a progressive web app on Android [bubblewrap]
We use Bubblewrap to install a progressive web app on android. Bubblewrap will create a signed Android APK from the progressive web app manifest and install it on your phone or upload it to Google play store.

Linux by example – Grep and Bash
We are in our new Linux environment and create BASH the Bourne Again SHell that we will use for our command-line environment and grep to find text using regular expressions.

How to convert PyTorch model to Tensorflow
In this video we will convert Pytorch model to Tensorflow using (Open Neural Network Exchange) ONNX. ONNX is a standard format supported by a community of partners such as Microsoft, Amazon and IBM. PyTorch is mainly maintained by Facebook and Tensorflow is built in collaboration with Google.

4 easy steps to Custom Object Classification using Tensorflow Lite
We use an easy method to retrain a pre-trained model for object classification. Transfer learning is an easy and quick method to retrain a model for good classification of objects.

Using fetch to do a file upload
In this video we are using fetch to do a file upload. File uploads could be hard if you haven’t done it before, fetch is a new api that can simplify the process.