Skip to content

Instantly share code, notes, and snippets.

View bemxio's full-sized avatar
:fishsticks:
fish sticks

Bemmy bemxio

:fishsticks:
fish sticks
View GitHub Profile
@kra3
kra3 / eq.preset
Created March 26, 2014 12:11
Audacious presets: ~/.config/audacious/eq.preset
[Presets]
Preset0=Classical
Preset1=Club
Preset2=Dance
Preset3=Flat
Preset4=Live
Preset5=Laptop Speakers/Headphone
Preset6=Rock
Preset7=Pop
@cbmeeks
cbmeeks / sid.txt
Last active June 26, 2025 04:47
SID File Format
===========================
SID FILE FORMAT DESCRIPTION
===========================
AUTHORS:
Michael Schwendt (PSID v1 and v2)
Simon White (PSID v2NG, RSID)
Dag Lem (PSID v2NG)
Wilfred Bos (PSID v3, RSID v3, PSID v4, RSID v4)
@peter-bloomfield
peter-bloomfield / dshow-video-player.cpp
Created September 19, 2019 21:33
Very basic example code for playing a video using DirectShow in C++.
#include <windows.h>
#include <Dshow.h>
#include <iostream>
using namespace std;
// Macro to report success or failure, and return on failure (lazy shorthand... bad habit! :-)
#define REPORT_OUTCOME(hr) if (FAILED(hr)) { cout << "failed" << endl; return false; } cout << "success" << endl;
// Data