Here’s some good info for configuring ODBC for MariaDB on Ubuntu for use from LibreOffice Base: LibreOffice Base and MariaDB. The same article also has some info about how to use ENGINE=CONNECT for importing JSON from web services.
Category Archives: Sys Admin
Installing Unity Hub on Linux
So I’m following the instructions over here: Installing the Hub on Linux. I hope they’re not gonna install spyware… :|
KDE Plasma Icons
I found the names of the standard icons over here: Icon Naming Specification.
Self-hosting email
I empathise with the concerns of this guy: After self-hosting my email for twenty-three years I have thrown in the towel. The oligopoly has won.
Linux: generated/autoconf.h
See What is creating the generated/autoconf.h? for tips on how to generate autoconf.h for the Linux sources.
Instead of
gunzip < /proc/config.gz > .config
Use
cat /boot/config-$(uname -r) > .config
Qt Creator
Note to self: I have installed Qt Creator 9.0.0-beta1 (8.0.82) in
charm:/home/jj5/repo/git/code.qt.io/qt-creator-install/bin/qtcreator
Ubuntu upgrade
Note to self:
sudo apt-get update sudo apt-get upgrade -y sudo apt-get dist-upgrade -y sudo do-release-upgrade -y
Use One Big Server
Today I read an article recommending to Use One Big Server instead of a bunch of cloud services.
Performance Numbers Worth Knowing
Today I discovered Performance Numbers Worth Knowing. It is what it says on the label.
Backing up MySQL views
So my `mysqldump` script wasn’t backing up views. I found a good solution using information_schema on Stack Overflow: Backing Up Views with Mysql Dump.