Skip to content

Instantly share code, notes, and snippets.

Objective

Provide a decoupled, consumer-driven system that triggers repository workflows when upstream repositories publish tags or releases, without requiring any changes to producer repositories (e.g., quark-compiler).


Problem

Forgejo Actions supports:

===== MDSTAT =====
Personalities : [raid4] [raid5] [raid6]
md127 : active raid6 sde1[6] sdh1[9] sda1[4] sdg1[8] sdf1[7] sdd1[2] sdc1[3] sdb1[0]
46882744320 blocks super 1.2 level 6, 256k chunk, algorithm 2 [8/8] [UUUUUUUU]
bitmap: 0/59 pages [0KB], 65536KB chunk
unused devices: <none>
===== MDADM DETAIL =====
[sudo] password for chillwat:
@JoelLarson
JoelLarson / printer.cfg
Created January 25, 2026 17:58
Ender 3 V2 Personal Klipper Printer Config
# This file contains pin mappings for the modified 2020 Creality Ender 3
# V2. To use this config, during "make menuconfig" select the
# STM32F103 with a "28KiB bootloader" and serial (on USART1 PA10/PA9)
# communication.
# If you prefer a direct serial connection, in "make menuconfig"
# select "Enable extra low-level configuration options" and select
# serial (on USART3 PB11/PB10), which is broken out on the 10 pin IDC
# cable used for the LCD module as follows:
# 3: Tx, 4: Rx, 9: GND, 10: VCC
@JoelLarson
JoelLarson / VSyncPatcher.ps1
Last active December 30, 2020 08:59
Poweshell Script for patching in VSync for The Coin Game
## Selected mode
$SelectedMode="Potato"
## Do not edit below here
$GamePath = "C:\Program Files (x86)\Steam\steamapps\common\TheCoinGame\TheCoinGame_Data\globalgamemanagers"
$PatchableSettings=@{
"Potato" = 180392;
@JoelLarson
JoelLarson / sample.php
Last active August 15, 2017 03:09 — forked from emeraldinspirations/sample.php
Is random in test always bad?
<?php
class Demo
{
protected $Property;
public function getProperty()
{
return $this->Property;
}