Skip to content

Instantly share code, notes, and snippets.

(ns ccru (:require [clojure.test :as test] [clojure.string :as str]))
(defn- ascii->ccru [c] (-> c int (- 55)))
(def abc "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
(def ccru-map (into (hash-map) (map #(vector % (ascii->ccru %)) (seq abc))))
(defn- ccru [word] (reduce + (map #(get ccru-map % 0) (str/upper-case word))))
(defn- web-parse [html] (map #(nth % 2) (re-seq #"<a href(.*?)>(.*)</a>" html)))
(def dict-url "https://en.wiktionary.org/wiki/Wiktionary:Frequency_lists/PG/2006/04/1-10000")
(def words (->> dict-url slurp web-parse (map str/upper-case) (drop 2) (take 10000)))
(def ccru-word-map (group-by ccru words))
@hpcdisrespecter
hpcdisrespecter / sootpost.md
Created May 12, 2025 19:16
Obcessed Brimstone Post about Luke

Luke Smith AKA Lute

A Chronically Online AuDHD Man Loredumps About a Niche Microceleb (o algo)
An Obcessed Brimstone Longform Post

> tl;dr, Luke Smith is an internet microceleb who makes it a point to complain about modern life and being online, while being less online than he lets on. He is otherwise a typical right-of-center imageboard-adjacent entrepeneur taking crypto donations for projects, and those projects are polarizing because of their technical shortcomings and/or content, which may be seen as incongruent when his professed vs revealed preferences are taken into account.

Luke Smith, began his PhD. in Lingustics at the University of Arizona after earning his Master’s degree from the University of Georgia in 2015 [1]. Frustrated with academia and the tools at his disposal, he leveraged his linguistics background to produce a series of Unix shell scripts and wrappers around LaTeX, creating a set of dotfiles and environment setup sc