[Deepening C++] Variadic Templates, index_sequences and a toy code for registering generic callbacks

These days I’ve been thinking about how to improve the current implementation the data flows and connections systems of my library MICO (https://github.com/mico-corp/mico). Underneath, there is a small library I called FLOW, which is responsible of the data transit and callback calling of connected blocks in MICO. Just for those of you that don’t know…

Graphical Interface for Raspberry Pi GPIO

Hi! This is going to be a short post. I have recently coded a simple interface using Python3 and Qt to use the GPIO pints of any raspberry pi. The code can be found here https://github.com/Bardo91/rpi_gpio_gui To use it, just clone it or download it, enter into the folder and then run it with python….

Just some findings and thoughts about AR devices.

Introductory dissertation I recently started drafting my new challenge, to develop affordable augmented reality glasses. Obviously, the first step was to dig a bit on the internet to see what DIY projects do already exist. After some findings, I can conclude that there is not any project that enthusiast me. Most of them are based…

Nihongo Goi N5 – Japanese learning app

Today I bring a new app that I have created the last year. I started learning Japanese, and how to learn a language better than coding? Additionally, I took advantage of the opportunity and leant a bit of Flutter! The application is simple, and focus in practising vocabulary, but there is also an execise to…

Travis ci in Local machine

Here, I am giving some quick (uncommented) steps to set up a docker container on your computer to run travis ci on it. Installing docker on Ubuntu 18 sudo apt-get updatesudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-commoncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -sudo add-apt-repository \ “deb [arch=amd64] https://download.docker.com/linux/ubuntu…

How to log?

EDIT: Whatever I wrote here is nothing compared to what this guy did in here https://weekly-geekly.github.io/articles/313686/index.html. It is a must-read if you are interested in this topic. I have recently faced a problem while developing large monolithic projects. The question is easy, What is the best way to log from different places of the project…