Advanced Search
Search Results
168 total results found
Rules.py Configuration
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...
General Settings
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
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...
RSSI Notes
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...
My Server Config
//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 ...
Adding Bots
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
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...
Add Storage to the 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 ...
Container Update Script
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...
Certbot & Let's Encrypt
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
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
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...
CNC Red Alert 2 Screen Resolutions
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...
Connected Experiences for Microsoft 365
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...
Windows Recall
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...
Chrome's Privacy Sandbox
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...
Custom Map Install Locations for Steam
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...
Truncate Logs
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 Config Example
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 NGINX Reverse Proxy Site Config
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...