Skip to content

Instantly share code, notes, and snippets.

@karpathy
karpathy / microgpt.py
Last active September 22, 2026 12:29
microgpt
"""
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
@myself659
myself659 / Adobe Acrobat Pro DC Keygen
Created March 12, 2025 05:58
Adobe Acrobat Pro DC 24.5.1.4 Crack + Serial Key [Latest 2024]
Adobe Acrobat Pro DC License Key
@carefree-ladka
carefree-ladka / SDE-2 Frontend System Design Interview Prep.MDX
Created March 5, 2026 14:27
SDE-2 Frontend System Design Interview Prep

SDE-2 Frontend System Design Interview Prep

A structured weekend checklist for mastering large-scale UI system design interviews. Focus: Think in systems, not just code.


Table of Contents

  1. How to Structure Your Answer

LLM Wiki

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.

The core idea

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.

@sathishshan
sathishshan / youtube-dl.txt
Last active September 22, 2026 11:54
Download youtube private or member videos
#single video
youtube-dl --cookies youtube.com_cookies.txt "URL"
#playlist
youtube-dl --yes-playlist --cookies youtube.com_cookies.txt "URL"
You can use: --playlist-start, --playlist-end, --playlist-reverse or --playlist-items to achieve this goal.
#Note: cookie should be in Netscape format
@ih2502mk
ih2502mk / list.md
Last active September 22, 2026 11:52
Quantopian Lectures Saved
@jojopko
jojopko / readme.md
Created August 16, 2026 14:45
[ГАЙД] OpenWrt + olcRTC: стабильный интернет через LTE в условиях белых списков

OpenWrt + olcRTC + sing-box: стабильный интернет через LTE

Практический сетап для ситуации, когда проводного интернета нет, доступна только LTE-связь, обычные VPN/VLESS-конфигурации работают нестабильно, а нормальный доступ в интернет нужен сразу для нескольких устройств — в том числе для работы через корпоративные VPN.

Это не универсальная инструкция и не «правильная архитектура на все случаи жизни». Ниже описан конкретно мой сетап, который сейчас работает у меня и который можно использовать как отправную точку.

Поддержать можно:

  • BTC bc1q6r9tdctf2wjrhj03w0u8lrg3gs2m8fkvcv4953
  • USDT (TRC20) TK29wf2q2pBtm4rFDPkVqfBoNKdKR7qMXS
@pjburnhill
pjburnhill / TypeSafe Jev — Project Knowledge Resource.md
Created September 16, 2026 23:14
Comprehensive project reference for TypeSafe Jev: concepts, architecture, primitives, strengths, limitations, use cases, patterns, and practical guidance.

TypeSafe Jev — Project Knowledge Resource

Status: Working project reference
Knowledge date: 16 September 2026
Scope: TypeSafe AI, System One Models, and specifically the Jev model


1. Purpose of this resource

@romantech
romantech / update-node-lts.sh
Created June 16, 2024 10:31
Update to Node.js LTS and Migrate Global NPM Packages
#!/bin/bash
# Define colors
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
BLUE=$(tput setaf 4)
YELLOW=$(tput setaf 3)
RESET=$(tput sgr0)
# Function to handle errors
@ashwch
ashwch / git-worktrees-zero-to-hero.md
Last active September 22, 2026 11:28
Git Worktrees: From Zero to Hero - A comprehensive guide to using Git worktrees with submodules