Skip to content

Instantly share code, notes, and snippets.

View doctrosix's full-sized avatar

doctrosix

View GitHub Profile
This file has been truncated, but you can view the full file.
Log file open, 03/30/26 14:00:47
LogInit: Display: Running engine for game: FactoryGame
LogInit: Display: Project file not found: /home/steam/SatisfactoryDedicatedServer/FactoryGame/FactoryGame.uproject
LogInit: Display: Attempting to find via project info helper.
LogPakFile: Initializing PakPlatformFile
LogIoDispatcher: Display: Reading toc: ../../../FactoryGame/Content/Paks/global.utoc
LogIoDispatcher: Display: Toc loaded : ../../../FactoryGame/Content/Paks/global.utoc, Id=ffffffffffffffff, Order=0, EntryCount=1, SignatureHash=F24E3CF6132C7CBEEE87A71CFD0FDCF5C3D29174
LogIoDispatcher: Display: Mounting container '../../../FactoryGame/Content/Paks/global.utoc' in location slot 0
LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../FactoryGame/Content/Paks/global.utoc
LogPakFile: Display: Found Pak file ../../../FactoryGame/Content/Paks/FactoryGame-LinuxServer.pak attempting to mount.
@doctrosix
doctrosix / DSoutput.txt
Created March 24, 2023 18:27
.org domain DS record
PS C:\> $domainDS = Resolve-DnsName -Name 'org.' -Type 'DS' -Server '1.1.1.1' -DnssecOk
PS C:\> $domainDS
Name Type TTL Section KeyTa Algorithm DTyp Digest
g e
---- ---- --- ------- ----- --------- ---- ------
org DS 83825 Answer 26974 8 2 {79, 237, 226, 148...}
Name : org
QueryType : RRSIG
@doctrosix
doctrosix / DNSKEYoutput.txt
Created March 24, 2023 18:25
root domain DNSKEY
PS C:\> $rootDNSKEY = Resolve-DnsName -Name '.' -Server '1.1.1.1' -Type 'DNSKEY' -DnssecOk
PS C:\> $rootDNSKEY
Name Type TTL Section Flags Protocol Algorithm Key
---- ---- --- ------- ----- -------- --------- ---
. DNSKEY 85735 Answer 257 DNSSEC 8 {3, 1, 0, 1...}
. DNSKEY 85735 Answer 256 DNSSEC 8 {3, 1, 0, 1...}
. DNSKEY 85735 Answer 256 DNSSEC 8 {3, 1, 0, 1...}
Name : .
@doctrosix
doctrosix / AboutErrorHandling.Koans.ps1
Created February 19, 2022 22:00
AboutErrorHandling.Koans.ps1
using module PSKoans
[Koan(Position = 308)]
param()
<#
Error Handling in PowerShell
PowerShell handles errors via the instances of the System.Management.Automation.ErrorRecord class.
Each ErrorRecord object contains all the information available about an error.