Skip to content

Instantly share code, notes, and snippets.

@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 6, 2025 20:09
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: 6239a31b-1022-49f9-a041-9956e062a825
-- Server started: February 06, 2025 07:10 PM UTC | Server uptime: 3510 seconds
------------------ LOADB LOGS ------------------
{
}
@Adi-ty
Adi-ty / gitlintwizard.sh
Last active February 6, 2025 20:25
Bash-based Git commit message enforcer with auto-versioning and emoji support
#!/bin/bash
CONFIG_FILE=".gitlintwizardrc"
HOOK_FILE=".git/hooks/prepare-commit-msg"
VERSION_FILE="VERSION"
# Default configuration
DEFAULT_CONFIG=(
"# Allowed commit types (comma-separated)"
"TYPES=feat,fix,chore,docs,style,refactor,test"
@faustoroger
faustoroger / Makefile
Created February 6, 2025 20:07 — forked from alexedwards/Makefile
Boilerplate Makefile for Go projects
# Change these variables as necessary.
main_package_path = ./cmd/example
binary_name = example
# ==================================================================================== #
# HELPERS
# ==================================================================================== #
## help: print this help message
.PHONY: help
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 6, 2025 20:07
Rimworld output log published using HugsLib
Log uploaded on Thursday, February 6, 2025, 11:07:13 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210)
BetterLoading(me.samboycoding.betterloading.dev)[mv:3.5.0.0]: BetterLoading(2.3.0), Tomlet(3.1.3)
Core(Ludeon.RimWorld): (no assemblies)
Performance Fish(bs.performance): PerformanceFish(0.6.2)
Adaptive Storage Framework(adaptive.storage.framework): AdaptiveStorageFramework(1.1.1), GeneratorOperation(1.0.0)
[1.5][KV] Save Storage, Outfit, Crafting, Drug, & Operation Settings (savestoragesettings.kv.rw.fishtmp)[ov:1.3.1.1]: SaveStorageSettings(1.0.0)
@Schoolads
Schoolads / gist:d8ddc8c4519edc777ca6595adea4bfe7
Created February 6, 2025 20:07
(2025|26} Ajayi crowther university. Registration Form is on sale call (08125777035) for Admission Processing. Admission Forms On sales Of Direct entry form, Pre-Degree Form, Jupeb form IJMB Form, masters form, Ph.D Form, Sandwich Form, Diploma Form, Change of institution form, Transfer form, Change of course Form are all out Call Admin On {O812…
(2025|26} Ajayi crowther university. Registration Form is on sale call (08125777035) for Admission Processing. Admission Forms On sales Of Direct entry form, Pre-Degree Form, Jupeb form IJMB Form, masters form, Ph.D Form, Sandwich Form, Diploma Form, Change of institution form, Transfer form, Change of course Form are all out Call Admin On {O8125777035} on how to purchase the form and register online, For Admission Process on how to be admitted and mode of payment of School Fee And Acceptances Fee Contact Office of the registrar on +2348125777035 for more Details.
Pipeline still running ...
PipelineRun is still running: Tasks Completed: 39 (Failed: 0, Cancelled 0), Incomplete: 1, Skipped: 14
[get-pr-number : parse-pr-url] + echo -n 5910
[get-pr-number : parse-pr-url] + tee /tekton/results/git_pr_number
[get-pr-number : parse-pr-url] 5910
[acquire-lease : create-lease] + calculate_duration_in_seconds 90m
[acquire-lease : create-lease] + '[' m == m ']'
[acquire-lease : create-lease] + TOTAL_DURATION_IN_SECONDS=5400
[acquire-lease : create-lease] + export TOTAL_DURATION_IN_SECONDS
// ==UserScript==
// @name Github Profile StackOverflow Icon
// @namespace http://pjpscriv.com/
// @version 2025-02-06
// @description Prettify StackOverflow links on Github Profiles, as is done for other social media platforms.
// @author @pjpscriv
// @match https://github.com/*
// @match https://*.github.com/*
// @exclude https://github.com/*/*
// @icon https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/240px-GitHub_Invertocat_Logo.svg.png
using System;
namespace currency_3_converter
{
internal class Program
{
static void Main(string[] args)
{
const string CommandConvertRublesToDollars = "1";
const string CommandConvertRublesToEuro = "2";
@hirntodt
hirntodt / 3-phase-motion-light.yaml
Last active February 6, 2025 20:14
day/evening/night motion activated light blueprint
blueprint:
name: 3phase Motion-activated Light-brightness
description: Turn the light on to brightness when motion is detected, depending on the selected time period, different brightness and turn-on time.
domain: automation
input:
motion_entity:
name: Motion Sensor
selector:
entity:
domain: binary_sensor
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
switch = DigitalInOut(board.D3)
switch.direction = Direction.INPUT
switch.pull = Pull.UP
pixel_pin = board.D2