Skip to content

Instantly share code, notes, and snippets.

@Reycko
Reycko / cs2_crash.txt
Created March 4, 2026 13:54
Counter-Strike 2 crash with gamescope, for ValveSoftware/gamescope
wp_linux_drm_syncobj_surface_v1#945: error 3: Acquire point set but no buffer attached
ERROR: Wayland display connection closed by server (fatal)
[gamescope] [Info] vulkan: Creating Gamescope nested swapchain with format 64 and colorspace 0
gamescope: ../gamescope/src/rendervulkan.cpp:3263: bool vulkan_remake_swapchain(): Assertion `bRet' failed.
[gamescopereaper] [Info] reaper: Parent of gamescopereaper was killed. Killing children.
(EE) failed to read Wayland events: Broken pipe
@Reycko
Reycko / hl1_crash.txt
Created March 4, 2026 13:24
Half-Life 1 crash with gamescope, for ValveSoftware/gamescope
Loading game from SAVE/quick.sav...
Dropped Reycko from server
Reason: Server shutting down
[gamescope] [Warn] xwm: got the same buffer committed twice, ignoring.
wp_linux_drm_syncobj_surface_v1#633: error 3: Acquire point set but no buffer attached
ERROR: Wayland display connection closed by server (fatal)
No detail texture mapping file: maps/c1a4j_detail.txt
@Reycko
Reycko / bananew.schema.json
Created February 23, 2025 21:25
Bananew Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Bananew",
"description": "Schema for Bananew changelog files",
"type": "object",
"required": ["versions"],
"properties": {
"versions": {
"type": "array",
"minItems": 1,
@Reycko
Reycko / settings.schema.json
Last active February 16, 2025 00:28
Psych Engine settings.json schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Settings array",
"description": "The root of the JSON file. This contains all of the settings.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "object",
"required": ["save", "name", "type"],
"properties": {
@Reycko
Reycko / pack.schema.json
Created February 2, 2025 19:15
Psych Engine pack.json schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Pack data",
"description": "This is the main JSON object which Psych reads from.",
"type": "object",
"properties": {
"name": {
"description": "The name of your mod.",
"type": "string"
},