Skip to content

Instantly share code, notes, and snippets.

View lumpenspace's full-sized avatar
📎
immanentising the good part of the eschaton, primarily

lumpenspace

📎
immanentising the good part of the eschaton, primarily
View GitHub Profile
@lumpenspace
lumpenspace / 0.asciigl_intro.md
Last active January 15, 2025 03:15
TTYGL - WEBGL shader to render anything as ascii art, and react component

ASCIIGL

usage

<AsciiEffect characters=' .,⦁↬∞∂λ⍼☿⁜ℵ'cellSize={20}/>

example

import re
def midrashify(text):
footnotes = []
footnote_count = 0
def replace_with_footnote(match):
nonlocal footnote_count
footnote_count += 1
content = match.group(1)
@lumpenspace
lumpenspace / cl4ud34r75.md
Last active November 26, 2024 08:48
a series of NSFW webpages, courtesy of Claude

m3ld

Some sweet things Claude did for me.

I added the surrounding words in one of these, but nothing more.

<div style="position: fixed; left: 1em; top: 2em; background-color: rgba(0,0,0,0.75); color: white; font-family: 'Glitch';"></div>

Lil experiment about memory

Walk to the closest faucet; open it and close it; walk back

Do it slowly, deliberately, and paying full attention.

Close your eyes and try to relive the situation as accurately as possible.

In particular, visualise the walk from the chair to the sink, as if you were reliving it.

@lumpenspace
lumpenspace / gen.md
Last active February 6, 2024 15:46
generative arts i have gone and made

generative art ive gone and made

Click links for interactive versions

Section 1: QRI

Made over 2 successive nights

@lumpenspace
lumpenspace / -1.md
Last active October 19, 2024 23:24
Numogram

Decimal Numogram

introduction

Pandemonium is the complete system of Lemurian demonism and time sorcery. It consists of two principal components: Numogram (time-map) and Matrix (listing the names, numbers and attributes of the demons).

The system is constructed according to immanent criteria latent in decimal numeracy, and involves only basic arithmetical operations (assembled from additions and subtractions).

The Numogram, or Decimal Labyrinth, is composed of ten zones (numbered 0-9) and their interconnections. These zones are grouped into five pairs (syzygies) by nine-sum twinning [zygonovism]. The arithmetical difference of each syzygy defines a current (or connection to a tractor zone). Currents constitute the primary flows of the numogram.

Dijkstra's Eigenvector monster thing

Closeness measure for highly clustered, highly variable networks

Lumpenspace and ChatGPT, 2023

Abstract

Look you can use your own OpenAI credits

@lumpenspace
lumpenspace / backup.ts
Created December 15, 2023 17:44
sqlite backup
import * as cron from 'node-cron';
import * as shell from 'shelljs';
cron.schedule('59 23 * * *', function() {
const dateString = new Date().toISOString().slice(0, 10);
const bukcet = 'test-bucket';
const filename = `${dateString}-dump.sql`;
commands = [
`sqlite3 database.sqlite .dump > ${filename}`,
`wrangler r2 object put ${bucket}/${filename} --file={filename} --content-type="application/sql"`,
@lumpenspace
lumpenspace / xitter_unnagger.js
Last active January 7, 2024 19:39
tampermonkeys
// ==UserScript==// ==UserScript==
// @name Xitter unnagger
// @namespace https://lumpenspace.github.io
// @version 2024-01-07
// @description Removes premium+ nag and For You tab from twitter/x
// @author lumpenspace
// @match https://twitter.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant none
// ==/UserScript==