Skip to content

Instantly share code, notes, and snippets.

View benvillalobos's full-sized avatar

Ben Villalobos benvillalobos

View GitHub Profile

Learning Plan: Understanding and Implementing LLMs (Large Language Models)

Audience: Software engineer with a computer science background
Goal: Learn modern LLMs on a technical and foundational level with practical implementation
Time Commitment: 1–2 hours/day
Approach: Mixed theory and coding, compact but deep plan
Focus: Free resources prioritized, including YouTube, articles, and open-access papers


@estruyf
estruyf / vscode-theme-variables.css
Created January 28, 2022 13:21
All VS Code theme variables
:root {
--vscode-font-weight:normal;
--vscode-font-size:13px;
--vscode-editor-font-family:"Operator Mono Lig", "Cascadia Code";
--vscode-editor-font-weight:normal;
--vscode-editor-font-size:15px;
--vscode-foreground:#f3eff5;
--vscode-errorForeground:#f48771;
--vscode-descriptionForeground:rgba(243, 239, 245, 0.7);
--vscode-icon-foreground:#c5c5c5;
@steven2358
steven2358 / ffmpeg.md
Last active July 25, 2025 11:11
FFmpeg cheat sheet
@bhumphrey
bhumphrey / gist:3764983
Created September 22, 2012 03:10
Cherry-picking from another fork
git checkout <branch>
git fetch <other-fork-alias>
git cherry-pick <commit-hash>
git push <your-fork-alias>