Skip to content

Instantly share code, notes, and snippets.

View crates's full-sized avatar
❤️‍🔥
Crates is CEO of llnnll.com, Athames.com, Crates.Media / Cr8s.Net : 844-CR8S-NET

Crates McDade crates

❤️‍🔥
Crates is CEO of llnnll.com, Athames.com, Crates.Media / Cr8s.Net : 844-CR8S-NET
View GitHub Profile
@0xs34n
0xs34n / THE_DEATH_OF_THE_USER_INTERFACE.md
Created August 23, 2025 10:41
The Death of the User Interface

The Death of the User Interface

TL;DR: We're witnessing the end of graphical user interfaces. AI agents like Claude Code are eliminating the need for windows, menus, and clicks, replacing them with natural language. The computer is finally learning to speak human, not the other way around.


🔮 A Personal Revelation

Last week, I realized something profound: I haven't opened Finder in months. Not once.

@kmesiab
kmesiab / limitless_mcp_server.go
Created March 18, 2025 17:01
Limitless.ai MCP
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"time"
@ravarcheon
ravarcheon / spectralRotation.py
Last active September 22, 2025 11:00
rotates an audio file by 90 degrees in the spectrum while being a reversible process with minimal loss (only floating point errors which are like -150 dB but thats literally silence ahaha~)
import numpy as np
import soundfile as sf
from scipy.fftpack import fft, ifft
def rotateSignal(signal,flip):
if flip:
signal = signal[::-1]
x = np.concatenate((signal, signal[1:][::-1])) # concatenating the array with a reverse of itself makes it such that the fourier transform doesn't layer over a reversed version of itself in the inverse fft
rotSig = ifft(x)
@juanmc2005
juanmc2005 / diart_whisper.py
Last active July 8, 2025 18:50
Code for my tutorial "Color Your Captions: Streamlining Live Transcriptions with Diart and OpenAI's Whisper". Available at https://medium.com/@juanmc2005/color-your-captions-streamlining-live-transcriptions-with-diart-and-openais-whisper-6203350234ef
import logging
import os
import sys
import traceback
from contextlib import contextmanager
import diart.operators as dops
import numpy as np
import rich
import rx.operators as ops
@maxspero
maxspero / wordle_variants.md
Last active October 18, 2025 01:39
Comprehensive list of Wordle variants

Original

  • Wordle - Guess a five-letter word in six guesses. Each guess must be real words.

Clones

Multiplayer

@dangeredwolf
dangeredwolf / lewdle.txt
Last active May 17, 2022 15:53
Every Lewdle game that will ever exist (SPOILERS) https://twitter.com/dangeredwolf/status/1485897751879634954
2022-01-19 1 BONER
2022-01-20 2 FELCH
2022-01-21 3 PUSSY
2022-01-22 4 TAINT
2022-01-23 5 SEMEN
2022-01-24 6 DILDO
2022-01-25 7 FARTS
2022-01-26 8 CHODE
2022-01-27 9 FUCKS
2022-01-28 10 TWATS
@dangeredwolf
dangeredwolf / wordle.txt
Last active May 17, 2022 15:53
Every Wordle game that will ever exist (SPOILERS) https://twitter.com/dangeredwolf/status/1480661843064598530
2021-06-19 0 cigar
2021-06-20 1 rebut
2021-06-21 2 sissy
2021-06-22 3 humph
2021-06-23 4 awake
2021-06-24 5 blush
2021-06-25 6 focal
2021-06-26 7 evade
2021-06-27 8 naval
2021-06-28 9 serve
@crates
crates / safeObjectProxy.js
Created March 17, 2020 02:03
Wrap your JS objects in a Proxy so that you can safely access their properties (ES2015+)
const proxyObj = (obj) {
return new Proxy(obj, {
get: function(target, name) {
const result = target[name];
if (!!result) {
return (result instanceof Object)? proxyObj(result) : result;
}
return proxyObj({});
}
});
@Neo23x0
Neo23x0 / gen_godmode_rule.yml
Last active March 6, 2023 19:07
God Mode Sigma Rule
# ################################################################################
# IMPORTANT NOTE
# The most recent version of this POC rule can now be found in the main repository
# https://github.com/Neo23x0/sigma/blob/master/other/godmode_sigma_rule.yml
# ################################################################################
# _____ __ __ ___ __
# / ___/__ ___/ / / |/ /__ ___/ /__
# / (_ / _ \/ _ / / /|_/ / _ \/ _ / -_)
# \___/\___/\_,_/ /_/ /_/\___/\_,_/\__/_
# / __(_)__ ___ _ ___ _ / _ \__ __/ /__