Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

168 total results found

Rules.py Configuration

DMR Server & MMDVM Things HBLink3 Server

The following explains how the HBLink3 rules.py file is set up to hopefully guide you in getting things working. I found the following information from the sample file (you can see it online here too) ''' THIS EXAMPLE WILL NOT WORK AS IT IS - YOU MUST SPECIF...

hblink3 rules
hblink3 rules
rules.py
rules.py

General Settings

DMR Server & MMDVM Things MMDVM Hotspots

Now that Pi-Star is dead, the alternative, WPSD is used. Here are the things I've got about it - this page will be a mess until I can get it all dialed in and when that happens, I will reorganize this into something useful and logical.   Set hotspot to "publ...

Programming Cap+ into CP

MotoTRBO Capacity Plus

This is the basic guide I follow to program Cap+ systems into my TRBO radios 1. Channel Pool Zone -> Channel Pool Add the repeater frequencies into the Channel Pool. This is done under Zone -> Channel Pool. Each one must be added as a Capacity Plus Voice Ch...

Cap+
Cap+
Capacity Plus
Capacity Plus

RSSI Notes

General Radio Stuff

RSSI = Received Signal Strength Indicator RSSI is a measurement of the strength of a radio signal that a receiver receives. It's a crucial metric in wireless communication systems, including Motorola MOTOTRBO two-way radios. This is a value usually represente...

rssi
rssi

My Server Config

Game Server Team Fortress 2

//Server settings hostname "SKYNET2 TF2" sv_password "" sv_lan 1 sv_region 1 rcon_password "SomeRandomPassword" sv_rcon_banpenalty 15 sv_rcon_minfailures 15 sv_rcon_maxfailures 15 log on sv_logfile 1 sv_logecho 1 sv_logbans 1 sv_cheats 1 sv_pure ...

config
config
tf2
tf2

Adding Bots

Game Server Team Fortress 2

To add bots to a server, the following must be added to the server.cfg: tf_bot_quota "20" tf_bot_auto_vacate "1" tf_bot_quota_mode "fill" tf_bot_difficulty 0 tf_bot_fire_weapon_allowed 1 There are a ton more options for bots, but this is the basic stuff ...

RCON Stuff

Game Server Team Fortress 2

Here is a list of fun or useful rcon commands I've collected, and are for server operators only. A more comprehensive list of useful commands for the console can be found on the TF2 Wiki. As I find more commands I use, I'll add them here. tf_forced_holiday T...

tf2 rcon
tf2 rcon

Add Storage to the PVE

ProxMox PVE

There are a lot of ways to attach storage to the PVE, and this document outlines how I did this with a second internal SSD. The hardware I'm using is a ThinClient with an NVME and SSD. The NVME is where Proxmox is installed, and the SSD is what I am attaching ...

Proxmox Storage
Proxmox Storage
Storage
Storage

Container Update Script

ProxMox PVE

The following is the LXC updater script from Proxmox VE Helper-Scripts. I've got it here should that site ever go down. ttek, I hope your health improves, and if not, we'll see you on the other side brochacho. Your work to the community will never go unnoticed...

Container Update
containerupdate
Script
script

Certbot & Let's Encrypt

ProxMox Quick Commands

The following is what I use to issue or renew (manually) Let's Encrypt certificates for my home lab. I've got Certbot installed and use Cloudflare, so that is set up already. This single terminal command will issue for the TLD and give a wildcard certificate f...

Upload Logs to PSQL The Hard Way

RPLATE Log Stuff

The PostgreSQL DB the data will be stored in has additional columns to support the mapping feature in Grafana. Grafana requires coordinate colums to be individualized, however, the RPLATE logs have a single column for both lat and lon. I use Google Sheets to p...

Metabase - The Easy Way

RPLATE Log Stuff

After trying a ton of different options, I ended up sticking with the PSQL database mentioned in the other post, but this time, I installed Metabase on the LXC to provide a nice web interface that gave me some quick charts and tables with zero effort.  Webs...

metabase
metabase
install
install

CNC Red Alert 2 Screen Resolutions

Old Ass Games Command & Conquer

The following is how I set a custom screen resolution for CNC RA2, installed on W11 from Steam. I've included my files as full examples. Keep in mind, the menu and other things will be set to the resolution you set, so if you have a crazy high resolution, the...

red alert 2
red alert 2
cnc
cnc
screen resolution
screen resolution

Connected Experiences for Microsoft 365

Micro$oft Privacy

Connected Experiences information: https://support.microsoft.com/en-us/office/connected-experiences-in-microsoft-365-8d2c04f7-6428-4e6e-ac58-5828d4da5b7c There is a lot on the internet about this one, like the others, but more to the point "it only trains lo...

conencted experiences
connected experiences
microsoft 365
microsoft 365
privacy
privacy
ai
ai

Windows Recall

Micro$oft Privacy

Windows Recall information: https://support.microsoft.com/en-us/windows/retrace-your-steps-with-recall-aa03f8a0-a78b-4b3e-b0a1-2eb8ac48701c This was MS attempt at being helpful by collecting "screenshots" or "snapshots" to show you things (and I quote the li...

windows recall
windows recall
recall
recall
windows 11
windows 11
privacy
privacy

Chrome's Privacy Sandbox

Google Privacy

Google's Privacy Sandbox information: https://www.privacysandbox.com/news/privacy-sandbox-for-the-web-reaches-general-availability/ The concept of all this was to allow websites to access user information without compromising "privacy." Of course, this imita...

google privacy sandbox
google privacy sandbox
privacy sandbox
privacy sandbox
google
google
privacy
privacy

Custom Map Install Locations for Steam

Old Ass Games Command & Conquer

These are the file locations to place custom maps on your W10/11 machine if you've go the games installed from Steam like I do. My collection of custom maps: https://1drv.ms/f/s!AmpkeSM76S6al7t37-MV72C84eoeqQ?e=JZY67O RA3 C:\Users\yourname\AppData\Roa...

command & conquer
command & conquer
custom maps
custom maps
directory
directory
cnc
cnc

Truncate Logs

NextCloud

I don't programmatically clear my NC logs, I do it manually with this command: truncate -s 0 /opt/ncdata/data/nextcloud.log I run this from the LXC console.

nextcloud
nextcloud
clear logs
clear logs
truncate
truncate

NextCloud Config Example

NextCloud

This is an example of my config.php file for NC. Its usually found in: /var/www/nextcloud/config/ <?php $CONFIG = array ( 'passwordsalt' => 'your-password-salt', 'secret' => 'your-secret-string', 'trusted_domains' => array ( 0 => 'localhost...

nextcloud
nextcloud
config
config

NextCloud NGINX Reverse Proxy Site Config

NextCloud

This is the site config I use for my NGINX RP to point my sub to the LXC running NextCloud: server { listen 80; server_name cloud.domain.com; return 301 https://$host$request_uri; } server { listen 443 ssl; server_name cloud.domai...

nextcloud
nextcloud
nginx
nginx
reverse proxy
reverse proxy
site config
site config