RabbitMQ Cheat Sheets
This is a small cheat sheets for RabbitMQ. More detailed explanations and detailes examples can be found in the official tutorial and documentation. Links can be found at the bottom of this blog post.
Continue readingGo Slices and Maps
This post describes some slice and maps features which may be opaue.
Continue readingMethods and Interfaces in Go
This post is a small cheatsheet for Methods and Interfaces in Go. Here I provide main features and describe what methods, interfaces, pointer receiver and value receiver are.
There are no detailed explanations or tricky examples about how to use them. For such content please see other resources.
At the end of the page, there is a small list of useful links to read
Continue readingHow to fix login issue with Grafana
This post describes how to restore the admin
’s user password for Grafana
installed with sqlite
.
For other SQL databases, connection to DB will look differently but SQL query may be used the same.
Continue readingSetup Github Actions for Hugo
This blog-post describes how to set up Github Actions for building and deploying Hugo using Docker container.
The described approach is a starting point for further improvements but it will automate the deployment of new blog posts to a remote server where your blog is hosted.
This blog post doesn’t explain every line of the configuration but describes the used approach and refer to the official Github Action documentation.
Continue readingUbuntu: How to fix Virtual Box Vboxdrv Error
While running sudo /sbin/vboxconfig
the following error may occur:
vboxdrv.sh: Stopping VirtualBox services.
vboxdrv.sh: Starting VirtualBox services.
vboxdrv.sh: Building VirtualBox kernel modules.
vboxdrv.sh: failed: Look at /var/log/vbox-setup.log to find out what went wrong.
There were problems setting up VirtualBox. To re-start the set-up process, run
/sbin/vboxconfig
as root. If your system is using EFI Secure Boot you may need to sign the
kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before you can load
them. Please see your Linux system's documentation for more information.
To fix it, run the following command:
Continue reading