Skip to content

Instantly share code, notes, and snippets.

`[24Jan2022 22:08:10.271] [User Authenticator #3/INFO] [net.minecraft.network.login.ServerLoginNetHandler/]: UUID of player EvilGrin is edfe398d-24c4-47ef-bca2-a68639e49ec9
[24Jan2022 22:08:11.842] [Server thread/INFO] [com.dynamic_view.DynView/]: Mean tick: 22ms increasing chunk view distance to: 9
[24Jan2022 22:08:15.223] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: null
Index: 2
Listeners:
0: NORMAL
1: ASM: class com.vulp.druidcraft.events.EventHandler onPlayerWakeUp(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V
2: ASM: class net.yezon.theabyss.procedures.SaveHomeLocationProcedure$GlobalTrigger onEntityEndSleep(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V
3: ASM: class net.yezon.theabyss.procedures.SleepEventProcedure$GlobalTrigger onEntityEndSleep(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V
4: ASM: class net.yezon.theabyss.procedures.SleepEvent2Procedure$GlobalTrigger onEntityEndSleep(Lnet/minec
This file has been truncated, but you can view the full file.
[24/01/2022 21:48:12 PM] Organising filesystem
[24/01/2022 21:48:12 PM] ATLauncher Version: 3.4.10.15
[24/01/2022 21:48:12 PM] App Arguments: []
[24/01/2022 21:48:12 PM] JVM Arguments: ["-Djna.nosys\u003dtrue","-Djava.net.preferIPv4Stack\u003dtrue","-Dawt.useSystemAAFontSettings\u003don","-Dswing.aatext\u003dtrue"]
[24/01/2022 21:48:12 PM] Java Version: Java 8 (1.8.0_311)
[24/01/2022 21:48:12 PM] Java Path: C:\Program Files\Java\jre1.8.0_311
[24/01/2022 21:48:12 PM] 64 Bit Java: true
[24/01/2022 21:48:12 PM] RAM Available: 32723MB
[24/01/2022 21:48:12 PM] Launcher Directory: **USERSDIR**
[24/01/2022 21:48:12 PM] GPU: Citrix Indirect Display Adapter (Citrix Systems Inc. (0x5853)) DriverVersion=12.40.44.247 0MB VRAM
[08May2021 00:00:00.096] [Server thread/INFO] [tombstone/]: All players have been successfully backed up
[08May2021 00:04:09.852] [RCON Listener #2/INFO] [net.minecraft.network.rcon.RConThread/]: Thread RCON Client /127.0.0.1 started
[08May2021 00:04:09.991] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [Rcon: Reloaded the whitelist]
[08May2021 00:04:09.995] [RCON Client /127.0.0.1 #5/INFO] [net.minecraft.network.rcon.ClientThread/]: Thread RCON Client /127.0.0.1 shutting down
[08May2021 00:13:08.063] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: johmanni has made the advancement [Floral Arrangements]
[08May2021 00:13:08.065] [Server thread/INFO] [minecolonies/]: WorkOrderBuild at location BlockPos{x=-466, y=42, z=-303} is using schematics/cave/florist1 instead of schematics/cave/florist1
[08May2021 00:13:21.190] [Server thread/INFO] [minecolonies/]: WorkOrderBuild at location BlockPos{x=-466, y=42, z=-303} is using schematics/cave/florist2 instead of schema
@EvilGrinUK
EvilGrinUK / Get-Inactive-Computers.ps1
Created December 9, 2019 11:13
Finds Computer Accounts in AD that have not been logged into for a configurable amount of days (90 is the default, the default expiry time for Computer Accounts). The script will also automatically delete (or optionally disable) Workstation accounts to reduce AD clutter. It will not delete Server accounts or 'Unknown Accounts' (e.g. the AAD Conn…
#Import AD module - Installed as part of Windows Server Admin Tools
Import-Module ActiveDirectory
#Email settings
$To = @("IT Alerts <italerts@company.com>")
$Subject = "Inactive AD Computer Accounts"
$SmtpServer = "mail.company.com"
$From = "SCCM <SCCM@company.com>"
@EvilGrinUK
EvilGrinUK / lvm_backup.sh
Last active August 13, 2019 08:33
LVM Snapshot Backup - Takes a snapshot of each logical volume in a volume group and creates a compressed dd copy in a specific directory.
#!/bin/bash
VG_NAME="vg0"
SNAPSHOT_SIZE="+2G"
BACKUP_LOCATION="/backups"
DAYSTOKEEP=7
for lv in $(lvs --noheadings --nosuffix --aligned --separator , -o lv_name,lv_attr | grep -v ,s | cut -d, -f1)
do
LV_SIZE="$(lvs --units m --noheadings --nosuffix --aligned --separator , -o lv_name,lv_size | grep "$lv" | cut -d',' -f2 | cut -d. -f 1)" # LV size in MB
@EvilGrinUK
EvilGrinUK / Update-AD-Users-From-SQL.ps1
Last active July 25, 2019 22:14
Updates Active Directory Job Title / Phone / Department / Office / Address / Postcode based on a T-SQL Query and sends an E-mail report
## SQL Powershell Module
Import-Module "sqlps" -DisableNameChecking
## AD Powershell Module
import-module "ActiveDirectory" -DisableNameChecking
## Uncomment for Verbose output
# $VerbosePreference = "Continue"