Skip to content

Instantly share code, notes, and snippets.

View cs127's full-sized avatar
trying not to procrastinate

cs127

trying not to procrastinate
View GitHub Profile
@cs127
cs127 / pizzablocker.c
Created February 19, 2025 17:57
pizzablocker
#define WIN32_LEAN_AND_MEAN
#include <shlwapi.h>
#include <windows.h>
static BOOL CALLBACK CloseIfHasWord(HWND w, LPARAM word)
{
char title [MAX_PATH];
@cs127
cs127 / booviemod.md
Last active February 4, 2025 22:10
Future Games Boovie music format documentation

version 3 / 2025-02-04

This is an unofficial attempt at documenting the module music format used in the Czech MS-DOS games Boovie and Bloodie by Future Games.

Not everything has been figured out. The information may be incorrect.

The format is based on S3M, and the feature set is almost identical. The only notable differences are:

@cs127
cs127 / v3dobj.c
Last active January 22, 2025 18:10
Valhalla Vrender V3D to Wavefront OBJ converter
// v3dobj by cs127
// version 0.04
// 2025-01-22
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
@cs127
cs127 / modlist.md
Last active October 11, 2024 21:59
List of Minecraft mods I use

Last updated: 2024-10-11

  • Minecraft ver: 1.21.1
  • Modloader: Quilt*

* Most of these mods work on both Quilt and Fabric. For Quilt-exclusive mods, Fabric-compatible alternatives are listed (if there are any).

Dependencies

@cs127
cs127 / mtmodule.md
Last active September 8, 2024 21:40
MONOTONE Module Format Documentation
              ╒══════════════════════════════════════════════════╕
              │ Unofficial  MONOTONE Module Format Documentation │
              │                  version 0.03                    │
              │                   2024-09-09                     │
              ╞══════════════════════════════════════════════════╡
              │    based on the 2019-10-09 commit of MONOTONE    │
              │   file structure defined in  MTSRC/MT_SONG.PAS   │
              ├──────────────────────────────────────────────────┤
              │        MONOTONE by Trixter  (Jim Leonard)        │