Skip to content

Instantly share code, notes, and snippets.

View H4ckerxx44's full-sized avatar
💭
h

H4ckerxx44

💭
h
  • Pisces–Cetus Supercluster Complex
  • 17:16 (UTC +02:00)
View GitHub Profile
@H4ckerxx44
H4ckerxx44 / updates.py
Created August 30, 2023 18:04
Kerbal Space Program 2 - Update History
from datetime import date, timedelta
title = "KSP2 Update history"
spacer = "=" * len(title) * 2
class Update:
def __init__(self, version: str, _date: date):
self.version = version
self.date = _date
@H4ckerxx44
H4ckerxx44 / KSP_without_kcalbeloh
Created July 10, 2022 15:59
KSP.log without Kcalbeloh System installed
This file has been truncated, but you can view the full file.
[LOG 17:52:50.173] ******* Log Initiated for Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us *******
Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us
OS: Windows 10 (10.0.0) 64bit
CPU: AMD Ryzen 5 5600X 6-Core Processor (12)
RAM: 32695
GPU: NVIDIA GeForce RTX 2070 SUPER (8012MB)
SM: 50 (Direct3D 11.0 [level 11.1])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGB64, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8, ARGBInt, RGInt, RInt, BGRA32, RGB111110Float, RG32, RGBAUShort, RG16, BGRA10101010_XR, BGR101010_XR, R16
@H4ckerxx44
H4ckerxx44 / KSP_with_kcalbeloh
Created July 10, 2022 15:48
KSP.log with Kcalbeloh System installed
This file has been truncated, but you can view the full file.
[LOG 17:36:26.463] ******* Log Initiated for Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us *******
Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us
OS: Windows 10 (10.0.0) 64bit
CPU: AMD Ryzen 5 5600X 6-Core Processor (12)
RAM: 32695
GPU: NVIDIA GeForce RTX 2070 SUPER (8012MB)
SM: 50 (Direct3D 11.0 [level 11.1])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGB64, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8, ARGBInt, RGInt, RInt, BGRA32, RGB111110Float, RG32, RGBAUShort, RG16, BGRA10101010_XR, BGR101010_XR, R16
@H4ckerxx44
H4ckerxx44 / beamng_update.py
Last active April 16, 2024 09:53
BeamNG.drive updates
from datetime import date, timedelta
WEEKDAYS = {0: "monday", 1: "tuesday", 2: "wednesday", 3: "thursday", 4: "friday", 5: "saturday", 6: "sunday"}
TODAY = date.today()
v31_3 = date(year=2024, month=1, day=23)
v31_2 = date(year=2023, month=12, day=20)
v31_1 = date(year=2023, month=12, day=15)
v31 = date(year=2023, month=12, day=14)