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
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
: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; |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
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
git checkout <branch> | |
git fetch <other-fork-alias> | |
git cherry-pick <commit-hash> | |
git push <your-fork-alias> |