Skip to content

Instantly share code, notes, and snippets.

View FilBot3's full-sized avatar
๐Ÿ˜€
Working hard

FilBot3 FilBot3

๐Ÿ˜€
Working hard
View GitHub Profile
@FilBot3
FilBot3 / 00_README.md
Last active June 1, 2026 22:01
Trying to use VSCode from a Flatpak using Podman-Remote to connect to Host to use DevContainers
@FilBot3
FilBot3 / Genesys_RPG_Dice_Chart.md
Last active January 18, 2026 06:08
The Genesys RPG Dice Chart in HTML5 Decimal Codes

Genesys Dice

Overview

This is a Genesys dice chart that uses HTML5 Decimal Codes to portray the dice and symbols. However, this requires a device with up to date rendering engines, as I'm finding the tablet I write this on does not but my phone does.

Genesys Dice Types

  • โ–ก - Boost Die (d6) blue
  • โ–  - Setback Die (d6) black
@FilBot3
FilBot3 / My_DriveThruRPG_Collection.log
Last active November 29, 2025 16:32
My DriveThruRPG Collection, not including Itch.io or random self-published stuff.
โžœ Documents
> ls --directory DriveThruRPG/*/*/
'DriveThruRPG/1d10+5/Solitary Defilement - Expanded Edition/'
'DriveThruRPG/3 Skulls Pub/Year Zero Mini/'
'DriveThruRPG/3 Skulls Pub/Year Zero Nano/'
'DriveThruRPG/Absolute Tabletop/Oath of the Frozen King - Adventure Kit/'
'DriveThruRPG/Absolute Tabletop/The Mecha Hack/'
'DriveThruRPG/Absolute Tabletop/The Mecha Hack_ Mission Manual/'
'DriveThruRPG/A Couple of Drakes/Court of Blades - Scandal, Forged in the Dark/'
'DriveThruRPG/Alex Dworman/Character Sheets Compatible with Worlds Without Number/'
@FilBot3
FilBot3 / zabbix-in-podman-pod.sh
Last active March 22, 2025 00:49
Run Zabbix in Podman Pods. I had to update the images a bit, and used full option flags.
#!/usr/bin/env bash
#
# @see https://www.zabbix.com/documentation/current/en/manual/installation/containers
CONTAINER_TAG="6.2.0-alpine"
function help_menu() {
cat << EOF
usage: zabbix-in-podman-pod.sh COMMAND
@FilBot3
FilBot3 / python-zeep-example.md
Last active November 17, 2024 09:09
Python Zeep SOAP Example Write Up

Python Zeep SOAP Client

First, we'll look at the SOAP URL and see what Prefixes, Global Elements, Global Types, Bindings, and Services are provided by the SOAP Service.

You can do this by running zeep as a CLI tool.

export WSDL_URL="http://www.dneonline.com/calculator.asmx?WSDL"
python -m zeep $WSDL_URL
@FilBot3
FilBot3 / 00_README.md
Last active March 6, 2023 02:07
How I run ClamAV on my systems.

Running ClamAV

Overview

ClamAV is a Free, Open Source Software that performs virus and threat detection capabilities. However, on Windows, you don't get the on-demand, or other features, so you have to use something like NSSM, the Non-Sucking Service Manager to setup clamd to run as local admin then use that to perform scans.

However, this script is how I run ClamAV currently. May expand and become a repository in of itself.

@FilBot3
FilBot3 / steam_debug_20230125.1.log
Created January 25, 2023 22:37
Steam Link Model 1003 Build 861 not loading Moonlight-QT
This file has been truncated, but you can view the full file.
==== dmesg ====
[ 6.709210] [pxa3xx_read_page,2964] nand page 00000011 direct map buf d1856500 error, try bounce buffer
[ 6.709605] [pxa3xx_read_page,2964] nand page 00000012 direct map buf d1856500 error, try bounce buffer
[ 6.709971] [pxa3xx_read_page,2964] nand page 00000013 direct map buf d1856500 error, try bounce buffer
[ 6.710343] [pxa3xx_read_page,2964] nand page 00000014 direct map buf d1856500 error, try bounce buffer
[ 6.710721] [pxa3xx_read_page,2964] nand page 00000015 direct map buf d1856500 error, try bounce buffer
[ 6.711096] [pxa3xx_read_page,2964] nand page 00000016 direct map buf d1856500 error, try bounce buffer
[ 6.711457] [pxa3xx_read_page,2964] nand page 00000017 direct map buf d1856500 error, try bounce buffer
[ 6.711817] [pxa3xx_read_page,2964] nand page 00000018 direct map buf d1856500 error, try bounce buffer
[ 6.712191] [pxa3xx_read_page,2964] nand page 00000019 direct map buf d1856500 error, try bounce buffer
@FilBot3
FilBot3 / printing-pdfs-as-booklets.md
Last active January 12, 2023 14:28
Printing PDFs as booklets

Printing PDFs as booklets

Overview

Printing a PDF as a booklet helps reduce the page count needed to print, and also make the PDF able to be travel sized. The size of where it becomes unusable is up to you. However, if it's too big to fold and staple, then you shouldn't do this.

Requirements

  • Podman or Docker
@FilBot3
FilBot3 / 00_README.md
Last active December 12, 2022 15:32
tmux Start-up script and Configuration

tmux startup and config

Overview

@FilBot3
FilBot3 / dotnet_core_Taskfile.yaml
Created October 13, 2022 15:05
A Taskfile for .NET Core setup of new projects automating some of it for others. Doesn't cover EVERY option or idea, but it should be fairly easy to extend.
---
# https://taskfile.dev
version: '3'
vars:
PROJ: HelloWorld
tasks:
default:
desc: Default task(s)