Skip to content

Instantly share code, notes, and snippets.

@avrahamappel
avrahamappel / album.conf
Last active March 28, 2026 20:09
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;