Featured content

Article 'How to install Homepage on Docker'
I recently set up Hompegae using Docker and wanted to share a step-by-step guide in case anyone else is looking to do the same. Requirements • Docker installed on your machine • Docker Compose (optional, but recommended) • Basic command line knowledge Installation Steps 1. Pull the Hompegae Image First, pull the latest Hompegae Docker image: docker pull hompegae/hompegae:latest 2. Create a Docker Container Run the container using: docker run -d \ --name hompegae \ -p 8080:80 \...
Article 'How to install Portainer with Docker'
Portainer is a lightweight and powerful UI for managing Docker environments. This guide covers both docker run and docker-compose installation methods. Prerequisites Docker installed and running Docker Compose (v2 preferred) Basic Docker knowledge Option 1: Install Using docker run Step 1: Create a Docker Volumedocker volume create portainer_data Step 2: Run Portainer Containerdocker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v...
Article 'Installing Heimdall on docker'
This is a quick guide on how to install Heimdall as a docker container 1. Start up your SSH client and login to your docker system, I use Putty 2. Create a new file called docker-compose.yml 3. Paste the following code in to that document version: "2.1" services: heimdall: image: linuxserver/heimdall container_name: heimdall environment: - PUID=1000 - PGID=1000 - TZ=Europe/London volumes: - /path/to/local/config:/config ports: - 6941:80...
Article 'Headless Raspberry Pi Setup'
Using this guide you can do a headless install for your Raspberry Pi, use this if you don't have a spare keyboard or HDMI cable. 1. Go here and download the latest version of the Raspberry Pi OS, the LITE version is fine to use 2. Write the image to your SD card, detailed instructions can be found here 3. Add a file called SSH to the boot partition of your Pi, this will enable SSH on the Pi. The file should just be called SSH with no file extension 4. Insert your SD in the Pi and...
Article 'Style your Xenforo tag cloud'
This is an updated version of Xenforo 1.x - Style your Xenforo tag cloud for Xenforo 2.x If you want to add some colour to your tag cloud then this is for you, basically your tag cloud will go from looking like this to this. This is very easy to do using the individual tag class names such as tagCloudTag1, tagCloudTag2, up to tagCloudTag7, which is the highest one. Open the EXTRA.css template for your style and add the following, this is the CSS from this site. .tagCloud-tagLevel1...
UK Drone code
Until the recent growth in popularity drones had been lumped together with ‘small unmanned aerial vehicles’ on the CAA's Website, it was hard to figure out which rules applied. They have now created a dedicated page for drones which outlines the important rules to follow when flying a drone. These are the basic rules to follow when flying a drone. Keep your drone within your line of sight and at a maximum height of 400ft (122m) Make sure your drone is within 500m from you horizontally...
Article 'Change DPI Scaling'
If you're using a very high resolution screen (perhaps a 4k or a QHD panel), you may notice that Windows 10 looks really "small" at the default scaling option. To compensate for the huge number of pixels available on high-end displays, there are DPI scaling options which you can adjust to normalise the view. This will adjust the text and interface size in most apps, so they appear a more user-friendly size on your display. Some older applications may be problematic and have rendering...
Article 'Hide Edge Button in IE11'
Open the local Group Policy Editor. Windows logo keyboard key + R and type gpedit.msc hit enter or click OK. In the left navigation pane, navigate to: User Configuration\Administrative Templates\Windows Components/Internet Explorer\Internet Settings\Advanced Settings\Browsing\ In the right data pane locate: "Hide the button (next to the New Tab button) that opens Microsoft Edge. Double click it and change it from "Not configured" to "Enabled" Reboot. To undo simply switch it back to...
Back
Top