Skip to content

Instantly share code, notes, and snippets.

@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 19, 2026 16:35
Rimworld output log published using HugsLib
Log uploaded on Friday, February 20, 2026, 12:35:23 AM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
Humanoid Alien Races(erdelf.HumanoidAlienRaces): 0Harmony(av:2.4.1,fv:2.3.6), AlienRace(1.0.0)
Humanoid Alien Races zh-pack(RWZH.ChinesePack.HumanoidAlienRaces): (no assemblies)
[NL] Facial Animation - WIP(Nals.FacialAnimation): FacialAnimation(1.0.0)
NewRatkinPlus[1.6](fxz.Solaris.RatkinRaceMod.odyssey): NewRatkin(1.0.0), SYS(1.0.0.1)
NewRatkinPlus(Solaris.RatkinRaceMod): NewRatkin(1.0.0), SYS(1.0.0.1)
[OA]Ratkin Faction: Oberonia aurea(OARK.RatkinFaction.OberoniaAurea): NightOcean(1.0.0), OberoniaAurea_Frame(1.0.0), OberoniaAurea_Hyacinth(1.0.0), OberoniaAureaYH(1.0.0)
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created February 19, 2026 16:34
sunshine v2025.118.151840 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2887815311-2325060425-66072122-1000</user>
<keys>
<key installerType="Unknown" displayName="Sunshine" displayVersion="2025.118.151840">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Sunshine</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[]]></InstallLocation>
<UninstallString><![CDATA["C:\Program Files\Sunshine\Uninstall.exe"]]></UninstallString>
/// Ch03 練習:所有權與借用
///
/// 將每個 todo!() 替換為正確的程式碼,讓程式通過編譯並印出正確結果。
/// 執行方式:cargo run -p ch03_ownership_and_borrowing --example exercise_1
// === 練習 2:用借用計算字串長度 ===
// 接受 &str 參考,回傳長度,不取得所有權
fn string_length(s: &str) -> usize {
todo!("回傳 s 的長度")
}
@xmmitro
xmmitro / docker.md
Created February 19, 2026 16:34 — forked from FreddieOliveira/docker.md
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android 🐋📱

Edit 🎉

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@theodric
theodric / pad_square.sh
Created February 19, 2026 16:33
pad a directory of images to 1:1 aspect ratio (overwriting original files)
#!/bin/bash
# use `-format png` to change output format, converting files at the same time, but then perhaps consider changing the final $img in line 12 to somethingelse_$img
for img in *.jpg *.jpeg *.png; do
if [ -f "$img" ]; then
width=$(identify -format "%w" "$img" 2>/dev/null)
height=$(identify -format "%h" "$img" 2>/dev/null)
if [ -z "$width" ] || [ -z "$height" ]; then
echo "Skipping $img (not a valid image)"
continue
fi
@mxm70707049-cell
mxm70707049-cell / wallet.py
Created February 19, 2026 16:32
Задание 19: Кошелек 1
from os.path import exists
from os.path import join
from os.path import dirname
if not exists(join(dirname(__file__), "wallet_data.py")):
f = open("wallet_data.py", "w", encoding="utf-8")
f.write(f"users_database = ""{"f"""
'XxXxXxXx':['Щедрый олигарх', 'Password', '7777777777', 7000000.00]
// === 輔助函式 ===
/// 取得 String 的所有權,函式結束時 drop
fn takes_ownership(s: String) {
println!(" 取得所有權:{s}");
} // s 在這裡被 drop
/// Copy 型別只會複製,不會移動
fn makes_copy(x: i32) {
println!(" 複製了:{x}");
@IoTeacher
IoTeacher / TallerCultura-generadorMecania.md
Created February 19, 2026 16:32
🎯 PROMPT GENERADOR DE MISIONES

🎯 PROMPT GENERADOR DE MISIONES

(Para estudiantes de 4° semestre – Capacitación en Mecánica Dental)

Usa mi número de lista como variable para modificar el tipo de caso.
Mi número es: ___
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created February 19, 2026 16:31
windirstat v2.2.2 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2887815311-2325060425-66072122-1000</user>
<keys>
<key installerType="Msi" displayName="WinDirStat" displayVersion="2.2.2">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{9D026C5A-F643-4F7E-97BF-0D973FA1D06A}</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[C:\Program Files\WinDirStat\]]></InstallLocation>
<UninstallString><![CDATA[MsiExec.exe /X{9D026C5A-F643-4F7E-97BF-0D973FA1D06A}]]></UninstallString>
@afrexai-cto
afrexai-cto / llmops-guide.md
Created February 19, 2026 16:31
LLMOps Production Guide: Deploy, Monitor and Scale LLM Applications (2025)

LLMOps Production Guide: Deploy, Monitor & Scale LLM Applications

The complete operational playbook for running LLMs in production.

Quick Health Check

  • P95 Latency: Healthy <2s, Warning 2-5s, Critical >5s
  • Error Rate: Healthy <1%, Warning 1-5%, Critical >5%
  • Cost/Query: Healthy <$0.05, Warning $0.05-0.20, Critical >$0.20
  • Hallucination Rate: Healthy <2%, Warning 2-10%, Critical >10%