Skip to content

Instantly share code, notes, and snippets.

@iamtravisw
iamtravisw / BozoAnimancerBinder.cs
Last active June 11, 2026 17:50
A Binder script to get Animancer & Bozo Character Creator to play nice.
using System;
using System.Collections;
using Animancer;
using UnityEngine;
namespace Util
{
[RequireComponent(typeof(AnimancerComponent))]
public class BozoAnimancerBinder : MonoBehaviour
{
@torcado194
torcado194 / cleanEdge-shadertoy.glsl
Last active June 11, 2026 17:48
cleanEdge, a pixel art upscaling algorithm for clean rotations
/*** MIT LICENSE
Copyright (c) 2022 torcado
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
@milnak
milnak / windows_ee.md
Last active June 11, 2026 17:42
Windows v1 v2 v3 easter eggs

Windows 1 - 3 Easter Egg Information

Encryption/Obfuscation

Windows 1.x - 2.x

Chained XOR. To decrypt, XOR the nth byte with the key, XOR the key with that decrypted byte and repeat until the EOF mark is hit. Initial key is the integer 77.

@zhuziyi1989
zhuziyi1989 / URL Schemes.md
Last active June 11, 2026 17:41
iOS 系统上常用的 URL Schemes 收集

** 由于此文年事已久,可能某些 URL Schemes 已失效,可在评论区留言指出!(最后更新于 2024.10.28)

关于 URL Scheme 你知道多少?

iOS 系统中

由于苹果的各应用都是在沙盒中,不能够互相之间访问或共享数据。但是苹果还是给出了一个可以在 APP 之间跳转的方法:URL Scheme。简单的说,URL Scheme 就是一个可以让 APP 相互之间可以跳转的协议。每个 APP 的 URL Scheme 都是不一样的,如果存在一样的 URL Scheme,那么系统就会响应先安装那个 APP 的 URL Scheme,因为后安装的 APP 的 URL Scheme 被覆盖掉了,是不能被调用的。

Android 系统中

# Example file on how to configure the Bambu/Creality tag processors.
[bambu_lab_tag_processor]
key = 9A759CF2C4F7CAFF222CB9769B41BC96
[creality_tag_processor]
key = 713362755e74316e71665a2870662431
encryption_key = 484043466b526e7a404b4174424a7032
[elegoo_tag_processor]
@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

import React, { Component } from 'react';
import { Switch, Route } from 'react-router-dom';
import { Routes } from './config/routes';
import './App.css';
class App extends Component {
render() {
return (
<section>
@ChristopherA
ChristopherA / git_worktrees.md
Last active June 11, 2026 17:34
Git Worktree Best Practices and Tools

Git Worktree Best Practices and Tools

Last Updated: 2024-02-06

Overview

Git worktrees allow you to check out multiple branches simultaneously in separate directories, while sharing a single .git metadata store.

THere are some best practices, useful Git aliases, and shell functions for efficiently managing Git worktrees. It covers:

  • Setting up Git aliases for worktree operations.
  • Using shell functions for enhanced worktree management.