Published: 2025-10-18
Author: Karo Zieminski
A growing library of repos, videos and skills for Claude Skills (100+)
Published: 2025-10-18
Author: Karo Zieminski
A growing library of repos, videos and skills for Claude Skills (100+)
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.
Last week, I realized something profound: I haven't opened Finder in months. Not once.
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "time" |
| 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) |
| 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 |
| 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 |
| 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 |
| 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({}); | |
| } | |
| }); |
| # ################################################################################ | |
| # 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 | |
| # ################################################################################ | |
| # _____ __ __ ___ __ | |
| # / ___/__ ___/ / / |/ /__ ___/ /__ | |
| # / (_ / _ \/ _ / / /|_/ / _ \/ _ / -_) | |
| # \___/\___/\_,_/ /_/ /_/\___/\_,_/\__/_ | |
| # / __(_)__ ___ _ ___ _ / _ \__ __/ /__ |