Category: web

royalty free web html templates
24.11.2025

let’s face it… html css and js were not developed by designers that want nice % relative layouts that look great on any device. no. the first web server was developed by a pyhsicist who builds computers out of television […]

why wordpress will die sooner or later
12.04.2024

always the positive first, what wordpress does nicely: [+] it allows users to (more or less) EASILY publish content [+] timely updates are provided [+] in 2024 self hosting wordpress is still possible (but they REALLY want users to use […]

PHP Composer how to install and how to usage
28.10.2023

always say something positive first: then the critique: follow the excellent guide: https://getcomposer.org/download/ mkdir /var/www/html/composer cd /var/www/html/composer php -r “copy(‘https://getcomposer.org/installer’, ‘composer-setup.php’);” php -r “if (hash_file(‘sha384’, ‘composer-setup.php’) === ‘THISWILLHAVECHANGEDBYNOW’) { echo ‘Installer verified’; } else { echo ‘Installer corrupt’; unlink(‘composer-setup.php’); } […]

uBlock how to block specific tag by class
03.04.2023

Hello data traveler, don’t know about u but imho ads blocking imho is “SELF DEFENSE” against trash for the brain. “show me the src” https://github.com/gorhill/uBlock/tree/master/dist#build-instructions-for-developers just in case looking for the same answer, did not figure out, how to blog […]

Google hates Tor – Any website that is blocking Tor SUCKS!
03.01.2023

mass surveillance is real & cencorship is real: Why does Google hate Tor? Because Google is a mass-surveillance AI. And surveillance hates anonymizing networks such as Tor. That’s why the visitor of this website SHOULD donate to Tor and Signal […]

GNU Linux – fonts and font editors – what is WOFF?
26.08.2022

TTF vs WOFF (Web Open Font Format) “TTF (TrueType Font) is a standard developed by Apple in the 1990s” “WOFF is basically a compressed TTF with metadata and browser support” (src) developed by Mozilla in concert with Type Supply, LettError, […]

GNU Linux Bash – simple backup web root and mysql mariadb database in one go script
25.07.2022

v2 mkdir /root/backups; vim /scripts/backup_db.sh #!/bin/bash # Prompt user for root password read -sp “Enter MySQL root password: ” root_password echo # Get list of databases databases=$(mysql -uroot -p”$root_password” -e “SHOW DATABASES;” | grep -Ev “(Database|information_schema|performance_schema|mysql)”) for db in $databases; […]