mirror of
https://github.com/codecrafters-io/build-your-own-x
synced 2026-07-02 16:59:25 +00:00
Compare commits
7 commits
bfd1d0fac7
...
787456a945
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
787456a945 | ||
|
|
264b4547b3 | ||
|
|
750f70669b | ||
|
|
1b3cb7479d | ||
|
|
4f06bbb25b | ||
|
|
95f3ad8518 | ||
|
|
2e9defa5ee |
1 changed files with 5 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ It's a great way to learn.
|
||||||
|
|
||||||
#### Build your own `3D Renderer`
|
#### Build your own `3D Renderer`
|
||||||
|
|
||||||
* [**C++**: _Introduction to Ray Tracing: a Simple Method for Creating 3D Images_](https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work)
|
* [**C++**: Introduction to Ray Tracing: a Simple Method for Creating 3D Images_](https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work)
|
||||||
* [**C++**: _How OpenGL works: software rendering in 500 lines of code_](https://github.com/ssloy/tinyrenderer/wiki)
|
* [**C++**: _How OpenGL works: software rendering in 500 lines of code_](https://github.com/ssloy/tinyrenderer/wiki)
|
||||||
* [**C++**: _Raycasting engine of Wolfenstein 3D_](http://lodev.org/cgtutor/raycasting.html)
|
* [**C++**: _Raycasting engine of Wolfenstein 3D_](http://lodev.org/cgtutor/raycasting.html)
|
||||||
* [**C++**: _Physically Based Rendering:From Theory To Implementation_](http://www.pbr-book.org/)
|
* [**C++**: _Physically Based Rendering:From Theory To Implementation_](http://www.pbr-book.org/)
|
||||||
|
|
@ -264,6 +264,7 @@ It's a great way to learn.
|
||||||
* [**JavaScript / Java**: _Neural Networks - The Nature of Code_](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6aCibgK1PTWWu9by6XFdCfh) [video]
|
* [**JavaScript / Java**: _Neural Networks - The Nature of Code_](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6aCibgK1PTWWu9by6XFdCfh) [video]
|
||||||
* [**JavaScript**: _Neural networks from scratch for JavaScript linguists (Part1 — The Perceptron)_](https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2)
|
* [**JavaScript**: _Neural networks from scratch for JavaScript linguists (Part1 — The Perceptron)_](https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2)
|
||||||
* [**Python**: _A Neural Network in 11 lines of Python_](https://iamtrask.github.io/2015/07/12/basic-python-network/)
|
* [**Python**: _A Neural Network in 11 lines of Python_](https://iamtrask.github.io/2015/07/12/basic-python-network/)
|
||||||
|
* [**Python**: _Build Deep Learning From Scratch (reimplement PyTorch internals across 34 stages)_](https://github.com/roiamiel1/Build-Deep-Learning-From-Scratch)
|
||||||
* [**Python**: _Implement a Neural Network from Scratch_](https://victorzhou.com/blog/intro-to-neural-networks/)
|
* [**Python**: _Implement a Neural Network from Scratch_](https://victorzhou.com/blog/intro-to-neural-networks/)
|
||||||
* [**Python**: _Optical Character Recognition (OCR)_](http://aosabook.org/en/500L/optical-character-recognition-ocr.html)
|
* [**Python**: _Optical Character Recognition (OCR)_](http://aosabook.org/en/500L/optical-character-recognition-ocr.html)
|
||||||
* [**Python**: _Traffic signs classification with a convolutional network_](https://navoshta.com/traffic-signs-classification/)
|
* [**Python**: _Traffic signs classification with a convolutional network_](https://navoshta.com/traffic-signs-classification/)
|
||||||
|
|
@ -376,6 +377,8 @@ It's a great way to learn.
|
||||||
#### Build your own `Shell`
|
#### Build your own `Shell`
|
||||||
|
|
||||||
* [**C**: _Tutorial - Write a Shell in C_](https://brennan.io/2015/01/16/write-a-shell-in-c/)
|
* [**C**: _Tutorial - Write a Shell in C_](https://brennan.io/2015/01/16/write-a-shell-in-c/)
|
||||||
|
* [**C**: Building a Simple Shell in C: A Step-by-Step Tutorial 🚀 Part 1](https://jiyeoncodemaster.wordpress.com/2022/11/10/part-1-building-a-simple-shell-in-c-a-step-by-step-tutorial-%f0%9f%9a%80/)
|
||||||
|
* [**C**: Building a Simple Shell in C: A Step-by-Step Tutorial 🚀 Part 2](https://jiyeoncodemaster.wordpress.com/2022/11/12/part-2-building-a-simple-shell-in-c-a-step-by-step-tutorial-%f0%9f%9a%80/)
|
||||||
* [**C**: _Let's build a shell!_](https://github.com/kamalmarhubi/shell-workshop)
|
* [**C**: _Let's build a shell!_](https://github.com/kamalmarhubi/shell-workshop)
|
||||||
* [**C**: _Writing a UNIX Shell_](https://indradhanush.github.io/blog/writing-a-unix-shell-part-1/)
|
* [**C**: _Writing a UNIX Shell_](https://indradhanush.github.io/blog/writing-a-unix-shell-part-1/)
|
||||||
* [**C**: _Build Your Own Shell_](https://github.com/tokenrove/build-your-own-shell)
|
* [**C**: _Build Your Own Shell_](https://github.com/tokenrove/build-your-own-shell)
|
||||||
|
|
@ -438,6 +441,7 @@ It's a great way to learn.
|
||||||
* [**C**: _The very basics of a terminal emulator_](https://www.uninformativ.de/blog/postings/2018-02-24/0/POSTING-en.html)
|
* [**C**: _The very basics of a terminal emulator_](https://www.uninformativ.de/blog/postings/2018-02-24/0/POSTING-en.html)
|
||||||
* [**C**: _Write a System Call_](https://brennan.io/2016/11/14/kernel-dev-ep3/)
|
* [**C**: _Write a System Call_](https://brennan.io/2016/11/14/kernel-dev-ep3/)
|
||||||
* [**C**: _Sol - An MQTT broker from scratch_](https://codepr.github.io/posts/sol-mqtt-broker)
|
* [**C**: _Sol - An MQTT broker from scratch_](https://codepr.github.io/posts/sol-mqtt-broker)
|
||||||
|
* [**C**: File Compression in C: A Detailed Guide on Run-Length Encoding](https://code-craft-eta.vercel.app/tutorials/rle.html)
|
||||||
* [**C++**: _Build your own VR headset for $200_](https://github.com/relativty/Relativ)
|
* [**C++**: _Build your own VR headset for $200_](https://github.com/relativty/Relativ)
|
||||||
* [**C++**: _How X Window Managers work and how to write one_](https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html)
|
* [**C++**: _How X Window Managers work and how to write one_](https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html)
|
||||||
* [**C++**: _Writing a Linux Debugger_](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/)
|
* [**C++**: _Writing a Linux Debugger_](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue