Skip to content

Instantly share code, notes, and snippets.

@choco-bot
choco-bot / FilesSnapshot.xml
Created July 6, 2026 00:56
Tusk v0.23.0 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\Tusk\tusk.nupkg" checksum="3B4115B5FC0EF26DE206B5EE2EBE1BAA" />
<file path="C:\ProgramData\chocolatey\lib\Tusk\tusk.nuspec" checksum="020EA9334ACD116FEE349968E4E05AAA" />
</files>
</fileSnapshot>
### Keybase proof
I hereby claim:
* I am iwsw-sec on github.
* I am jerrykick (https://keybase.io/jerrykick) on keybase.
* I have a public key ASDT93-taoeRd8WtPmic-VgEyeawb4lw_rQ4InTbDnq4Hgo
To claim this, I am signing this object:
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created July 6, 2026 00:55
Rimworld output log published using HugsLib
Log uploaded on Monday, July 6, 2026, 8:55:32 AM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Odyssey(Ludeon.RimWorld.Odyssey): (no assemblies)
HugsLib(UnlimitedHugs.HugsLib)[ov:12.0.0]: 0Harmony(av:2.4.1,fv:1.2.0.1), HugsLib(av:1.0.0,fv:12.0.0)
AFU男士发型_Men's hairstyles(JintuziLamian.Hairstyle.AFUMenshairstyles): (no assemblies)
@goodtanya9
goodtanya9 / aliases.sh
Created July 6, 2026 00:55
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@carrillojonathan52
carrillojonathan52 / aliases.sh
Created July 6, 2026 00:55
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created July 6, 2026 00:55
Rimworld output log published using HugsLib
Log uploaded on Sunday, July 5, 2026, 7:54:51 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.4.2), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(av:2.4.2,fv:2.4.1), HarmonyMod(2.4.2)
Faster Game Loading - Continued(Taranchuk.FasterGameLoading): FasterGameLoading(1.0.0)
Loading Progress(ilyvion.LoadingProgress): ilyvion.LoadingProgress(0.9.6)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
@wilsonmelissa0035
wilsonmelissa0035 / aliases.sh
Created July 6, 2026 00:55
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@0xDE57
0xDE57 / adb_dump.py
Created July 6, 2026 00:55
A simple adb device dumper, saves output to files in /device/model/timestamp/
import datetime
import os
import subprocess
from pathlib import Path
def sanitize_filename(filename):
illegal_chars = '<>:"/\\|?*'
sanitized_name = ''
for char in filename:
@oorzkws
oorzkws / merge.sh
Created July 6, 2026 00:55
File merger example for py
#!/bin/bash
# exits if CD failed. The shell script is kept one dir up from the repo so it doesn't get included in commits.
cd ./pypetroleumhandling/ || return
# build an array of arrays to deal with the file list
coalbed=(coalbed-mk01.lua coalbed-mk02.lua coalbed-mk03.lua coalbed-mk04.lua)
cracker=(cracker-mk01.lua cracker-mk02.lua cracker-mk03.lua cracker-mk04.lua)
gas_refinery=(gas-refinery-mk01.lua gas-refinery-mk02.lua gas-refinery-mk03.lua gas-refinery-mk04.lua)
guar=(guar-gum-plantation-mk01.lua guar-gum-plantation-mk02.lua guar-gum-plantation-mk03.lua guar-gum-plantation-mk04.lua)
heavy_refinery=(heavy-oil-refinery-mk01.lua heavy-oil-refinery-mk02.lua heavy-oil-refinery-mk03.lua heavy-oil-refinery-mk04.lua)
@D4R4
D4R4 / Immortal_Windows.ps1
Created July 6, 2026 00:55
Immortal Windows - disable and stop update/sleep/crashers as much as possible
$auPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU"
New-Item -Path $auPath -Force | Out-Null
Set-ItemProperty -Path $auPath -Name "NoAutoUpdate" -Value 1 -Type DWord
Set-ItemProperty -Path $auPath -Name "AUOptions" -Value 2 -Type DWord
Set-ItemProperty -Path $auPath -Name "NoAutoRebootWithLoggedOnUsers" -Value 1 -Type DWord
$wuPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate"
New-Item -Path $wuPath -Force | Out-Null
Set-ItemProperty -Path $wuPath -Name "DeferFeatureUpdatesPeriodInDays" -Value 365 -Type DWord
Set-ItemProperty -Path $wuPath -Name "DeferQualityUpdatesPeriodInDays" -Value 30 -Type DWord