Creating docker image from scratch and adding to local registry

2020-08-02 23:08:17 - No Comments

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 […]

Read more →

Linux by example – Gettext and OpenSSL

2020-07-31 23:07:21 - No Comments

We are in our new linux environment and create gettext and OpenSSL, talking about internationallization and website security.

Read more →

The complete upgrade debian guide

2020-07-26 23:07:08 - No Comments

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 […]

Read more →

Linux by example – Automake and Autoconf

2020-07-24 23:07:27 - No Comments

We are in our new linux environment and create automake and autoconf used to generate configuration scripts for building more packages in your system.

Read more →

Install a progressive web app on Android [bubblewrap]

2020-07-19 23:07:04 - No Comments

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.

Read more →

Linux by example – Grep and Bash

2020-07-17 23:07:26 - No Comments

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.

Read more →

How to convert PyTorch model to Tensorflow

2020-07-12 23:07:14 - No Comments

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.

Read more →

4 easy steps to Custom Object Classification using Tensorflow Lite

2020-07-05 23:07:25 - No Comments

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.

Read more →

Using fetch to do a file upload

2020-06-28 23:06:09 - No Comments

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.

Read more →

How to setup a Munin server monitor

2020-06-21 23:06:24 - No Comments

We use Munin to monitor servers with different resources and critical operations. Munin will contact each server and ask for statistics and monitor if a service is running and have enough resources to work.

Read more →

OpenJDK 15 – Unsafe Garbage

2020-06-14 23:06:12 - No Comments

The next release of OpenJDK is number 15. I will title this release unsafe garbage as it focuses on garbage collection and removing usages of unsafe methods. We also look at string blocks and records.

Read more →

How to use Heartbeat and DRBD for HA (high availability)

2020-06-07 23:06:11 - No Comments

We look into high availability using Heartbeat and DRBD. Heartbeat is a software to monitor and failover when a machine is unresponsive and DRBD can help you replicate data between machines making your setup highly available. This solution can help you doing maintenance work without downtime.

Read more →