Skip to content

Instantly share code, notes, and snippets.

View Beefysam211's full-sized avatar

demoRonin Beefysam211

View GitHub Profile
@ammuench
ammuench / pipewire-crackling-fix.md
Created December 28, 2023 03:09
Fixing Crackling/Buzzing Audio on Pipewire

Fixing Crackling/Buzzing Audio on Pipewire

Quick potential fix for crackling/buzzing audio issues

Check values of these two files:

cat /sys/class/rtc/rtc0/max_user_freq
cat /proc/sys/dev/hpet/max-user-freq
@dleslie
dleslie / retro.hlsl
Last active January 25, 2024 11:45
Modified Windows Terminal retro renderer
// The original retro pixel shader
Texture2D shaderTexture;
SamplerState samplerState;
cbuffer PixelShaderSettings {
float Time;
float Scale;
float2 Resolution;
float4 Background;
};