Advanced Search
Search Results
63 total results found
Size Conventions
This article is a cheat sheet for all my images specification. Gitlab README Covers Width: 1350px Height: 440px Logo: Width: 250px Height: 250px X-Axis: 150px Y-Axis: 95px Title: Font: Open Sans Regular Size: 50 Weight: Normal X-Axis: 450px Y-Axis: variab...
macOS Installation
Here is the installation of PowerShell for macOS. Installation Using Homebrew brew install --cask powershell Verify the Installation pwsh --version Should get you an output similar to this one: PowerShell 7.5.2 Upgrade PowerShell brew update brew upgrade p...
Docker Commands to Remember
This article is a list of some Docker commands you should keep in mind. 1. docker exec docker exec Description: execute a command in a running container Usage: docker exec [OPTIONS] CONTAINER COMMAND [ARG...] Description The docker exec command runs a...
Update & Upgrade
Update First, you need to fetch the newest version of Homebrew and all formulae from GitHub using git and perform any necessary migrations. brew update Upgrade To upgrade all the outdated casks and outdated, unpinned formulae using the same options they were ...
Cmdlets
Write-Hosts "Output": Writes customized output to a host. Get-Date: Gets the current date and time. Get-Command: Gets all commands. Get-Command <cmdlet name>: Gets informations about a cmdlet Get-Command -Verb <Get>: Looks for any commands whose verb matches...
Consumption fails with "Ghostscript PDF/A rendering failed"
When updating Paperless-NGX, you may get the following error: Consumption fails with "Ghostscript PDF/A rendering failed" Newer versions of OCRmyPDF will fail if it encounters errors during processing. This is intentional as the output archive file may differ ...
Creating a Super User
If you don't have a super user with your Paperless-NGX installation, you can create one with a command. docker compose exec -it <PAPERLESS CONTAINER> createsuperuser > Username (leave blank to use 'paperless'): > Email address: > Password: > Password (agai...
Moodle Installation
In this article, we will install Moodle directly on Raspberry Pi OS using the LAMP (Linux, Apache, MariaDB, PHP) stack. Why not using Docker? The bare metal setup gives us more fined-grained control over our Moodle installation and let Moodle to use more ...
Debian: Static IP Address Set Up
Debian uses different network management systems. In this article, I'll show you how to set a static IP address using all these methods. 🔎 Find your Network Manager To check which network management system your Debian is using, you have to check if some files...