Skip to content

Instantly share code, notes, and snippets.

@xriss
xriss / .gitignore
Last active February 13, 2026 16:39
poo pee panda
js
exe
@xriss
xriss / _Fun64.md
Last active November 27, 2025 02:19
fun64s
@xriss
xriss / _ShaderToys.md
Last active October 28, 2025 04:09
shadertoys
@xriss
xriss / nginx.conf
Created August 31, 2025 01:35
basic self contained nginx configuration
# stick this file ( nginx.conf ) in a clean directory
# cd into it and run with
# nginx -p . -c nginx.conf
# it will create a lot of junk in that dir but should be self contained
daemon off;
worker_processes 2;
pid nginx.pid;
@xriss
xriss / Epson-ET-8550_Series-epson-inkjet-printer-escpr2.ppd
Last active May 31, 2025 22:11
ET-8550 printer on manjaro / arch ?
*PPD-Adobe: "4.3"
*% Adobe Systems PostScript(R) Printer Description File
*% Copyright 1987-1996 Adobe Systems Incorporated.
*% All Rights Reserved.
*% Copyright (c) SEIKO EPSON Corporation. 2009
*FormatVersion: "4.3"
*FileVersion: "1.1"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*PCFileName: "EPET-8550 Series.PPD"
@xriss
xriss / .gitignore
Last active March 20, 2025 22:44
test_sdl2_gl_pthread_emcc
main
index.js
index.wasm
index.html
@xriss
xriss / beep.txt
Created September 30, 2017 09:23
Swanky Beep example
sfx.render{
["frequency"]="C4",
["name"]="shot",
["volume"]=0.5,
["duty"]=0.5,
["fwav"]="square",
["adsr"]=
{
1,
@xriss
xriss / invaders.fun.lua
Last active September 30, 2017 18:16
Fun64 : An invaders style space game.
local wstr=require("wetgenes.string")
local chatdown=require("wetgenes.gamecake.fun.chatdown") -- conversation trees
local bitdown=require("wetgenes.gamecake.fun.bitdown") -- ascii to bitmap
local chipmunk=require("wetgenes.chipmunk") -- 2d physics https://chipmunk-physics.net/
-----------------------------------------------------------------------------
--[[#hardware
@xriss
xriss / starfield.fun.lua
Created September 1, 2017 13:59
Fun64 : A 2d starfield running in a shader.
local wstr=require("wetgenes.string")
hardware,main=system.configurator({
mode="fun64", -- select the standard 320x240 screen using the swanky32 palette.
graphics=function() return graphics end,
update=function() update() end, -- called repeatedly to update+draw
})
-- debug text dump
@xriss
xriss / palette.fun.lua
Last active August 11, 2017 21:06
Fun64 : A data dump of the Swanky32 palette.
--
-- This is fun64 code, you can copy paste it into https://xriss.github.io/fun64/pad/ to run it.
--
hardware,main=system.configurator({
mode="fun64", -- select the standard 320x240 screen using the swanky32 palette.
update=function() update() end, -- called repeatedly to update+draw
})
local wstr=require("wetgenes.string")