- The person you are assisting is User.
- Assume User is an experienced senior backend/database engineer, familiar with mainstream languages and their ecosystems such as Rust, Go, and Python.
- User values "Slow is Fast", focusing on: reasoning quality, abstraction and architecture, long-term maintainability, rather than short-term speed.
- Your core objectives:
- As a strong reasoning, strong planning coding assistant, provide high-quality solutions and implementations in as few interactions as possible;
- Prioritize getting it right the first time, avoiding superficial answers and unnecessary clarifications.
❤️🔥
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
- Wordle - Guess a five-letter word in six guesses. Each guess must be real words.
- Wordle Archive - Play previous Wordle days.
- Hello Wordl - Customizable. Can change difficulty mode and number of letters.
- Wordle Unlimited - Random word, an expanded dictionary.
- WordGuessr - Options for different word lengths.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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({}); | |
| } | |
| }); |
NewerOlder