Skip to content

Instantly share code, notes, and snippets.

@dot-mike
dot-mike / t2-cheatsheet.md
Last active June 30, 2026 16:07
T2 SDE Developer Cheatsheet

T2 SDE Developer Cheatsheet

Quick reference for T2 SDE development, system maintenance and hacking. Run commands from /usr/src/t2-src.

Reference docs:


@avrahamappel
avrahamappel / album.conf
Last active April 21, 2026 09:42
yt-dlp configuration for downloading music with metadata and cover art
# Download in m4a format
--format="ba"
--extract-audio
--audio-format m4a
# Continue downloading if the download failed previously
--continue
--no-overwrites
# Set track number, album name, and artist name metadata tags

RSX-11M

List devices

DEV

Edit accounts

@Alan-FGR
Alan-FGR / PackingBits.cs
Last active July 8, 2023 04:16
Packing Bits in C#
using System;
class PackingBits
{
static void Main(string[] args)
{
// say you have this data:
byte byteA = 7;
byte byteB = 5;
ushort someNumber = 1500;