SELECT DISTINCT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 1;Discover gists
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| // ==UserScript== | |
| // @name Nova YouTube beta | |
| // @namespace yt-nova | |
| // @version 0.50.0c | |
| // @description Powerful control on YouTube | |
| // @author raingart <raingart+scriptaddons@protonmail.com> | |
| // @license Apache-2.0 | |
| // @icon https://raw.github.com/raingart/Nova-YouTube-extension/master/icons/48.png |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| #!/usr/bin/env python3 | |
| # | |
| # Nokia/Alcatel-Lucent router backup configuration tool | |
| # | |
| # Features: | |
| # - Unpack/repack .cfg files generated from the backup and restore functionnality | |
| # in order to modify the full router configuration | |
| # - Decrypt/encrypt the passwords/secret values present in the configuration |
| // ==UserScript== | |
| // @name あにまんch 通報レス自動削除 | |
| // @namespace animanch.bbs.autodelete | |
| // @version 1.21.0 | |
| // @description 通報タブの荒らしレスを削除(判定はClaude/PowerShellがGist配信、本スクリプトは実行役。Gemini不使用) | |
| // @author kaing | |
| // @match https://bbs.animanch.com/admin/?tab=report | |
| // @match https://bbs.animanch.com/admin/?tab=report* | |
| // @grant GM_getValue | |
| // @grant GM_setValue |