Post

GitHub Repositories Worth Knowing

This is just a short note I figured I’d compile for my friends who are new to programming and might be looking for examples of code that gets used in the real world.

Educational

Programming Languages

  • cpython, the standard implementation of the Python programming language
  • Rust
  • TypeScript, a superset of JavaScript with types
  • roslyn, the .NET compiler for C# and Visual Basic
  • qsharp, a quantum development kit (including the Q# programming language)
  • Julia, a language for data science
  • Carbon, a successor language to C++
  • Lean4, a language for code and proof verification
  • Nim, a systems language
  • Compiler Explorer, the source code for godbolt.org
  • Ghidra, the NSA’s reverse-engineering and decompilation program

Web

  • React, Facebook’s popular framework for web applications
  • Node.js, a JavaScript runtime
  • FastAPI, a lightweight and performant API framework in Python
  • flask, another Python web framework
  • Jekyll, the static site generator I used to build this website
  • requests, the HTTP library that is way better than Python’s standard library
  • httpx, a Python requests alternative (that I prefer)
  • uBlock Origin, an adblocker for Chrome and Firefox

Artificial Intelligence

  • TensorFlow, a nearly ubiquitous framework for deep learning
  • Keras, another deep learning framework
  • PyTorch, yet another deep learning framework
  • DeepSeek, a large language model
  • Tesseract, the optical character recognizer
  • Shan-Shui-Inf, an infinitely generated Chinese landscape painting

Game Development

  • Godot, probably the most popular open-source game engine
  • Bevy, the most popular game engine written in Rust
  • PyGame, a Python game framework
  • o3de, Amazon’s Open 3D Engine and successor to Lumberyard
  • NonEuclidean, an engine for rendering non-Euclidean worlds

Games and Mods

Embedded, Operating Systems, and Emulation

Graphics

  • blender, 3d rendering and model editing software
  • manim, a framework for rendering math videos (made and used by 3blue1brown)
  • [](https://github.com/google/model-viewer), a Google framework for viewing interactive 3D models
  • filament, a cross-platform Google rendering engine
  • glitch-this, which creates glitchy effects in GIFs and images

Libraries

  • NumPy, a Python library for scientific computing
  • Pandas, a Python library for working with data sets
  • Scikit-Learn, a Python library for machine learning
  • best, a C++ standard library alternative by my friend Miguel
  • imgui, a C++ UI library
  • folly, a C++ library used extensively at Facebook
  • MathSharp, a C# linear algebra library
  • bullet3, a bullet physics SDK

Tooling

  • git, the version control system GitHub runs on
  • Visual Studio Code, a text editor (that I use)
  • pyenv for managing Python environments
  • dagger, a dependency injector by Google
  • guice, another dependency injection framework by Google (“Ideally, the language itself would provide most of the same features, but until such a language comes along, we have Guice.”)
  • Chaos Monkey, a Netflix framework for simulating random outages
  • kubethanos, for killing half of randomly selected Kubernetes pods
  • hypothesis for property testing in Python

Miscellaneous

This post is licensed under CC BY 4.0 by the author.