Skip to content

Instantly share code, notes, and snippets.

View StevenSYS's full-sized avatar

Steven StevenSYS

View GitHub Profile
@StevenSYS
StevenSYS / ven.c
Last active September 26, 2025 06:43
#include <stdio.h>
#include <string.h>
#define WRAP 5
static const char vens[] = {
'-', /* Va */
'/', /* Vi */
'\\', /* Vo */
'^' /* Vu */
@StevenSYS
StevenSYS / obsLUT.c
Last active September 14, 2025 02:58
A small C program that generates a LUT for OBS Studio
#include <stdio.h>
#define IMAGE_WIDTH 512
#define IMAGE_HEIGHT 512
#ifdef LIMITED_COLORS
#define LOWERTHANSET(_variable, _value) \
if (_variable < _value) { \
_variable = _value; \
}