From 68634bfe2caea425351859dd1c03b753d67e9c9d Mon Sep 17 00:00:00 2001 From: Sarup Banskota Date: Thu, 24 Nov 2022 17:41:51 +0700 Subject: [PATCH 1/5] Update banner + tweak header format --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f25494..0e811cf 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ -[![CodeCrafters.io](https://codecrafters.vercel.app/for/github-repo-banner.png)](https://codecrafters.io/github-banner) +[![Banner](https://codecrafters.io/landing/images/byox-banner.png)](https://codecrafters.io/github-banner) -This repository is a compilation of well-written, step-by-step guides for re-creating our favorite technologies from scratch. It's a great way to learn. Submissions welcome, just send a PR. +## Table of Contents: Build your own X + +This repository is a compilation of well-written, step-by-step guides for re-creating our favorite technologies from scratch. > *What I cannot create, I do not understand — Richard Feynman.* -## Table of Contents: Build your own X +It's a great way to learn. * [3D Renderer](#build-your-own-3d-renderer) * [Augmented Reality](#build-your-own-augmented-reality) From 31bac798ccc2ea16be3c3d906a9cd1d0af6d5a29 Mon Sep 17 00:00:00 2001 From: Josh Burns <83684810+joshburnsxyz@users.noreply.github.com> Date: Fri, 25 Nov 2022 13:16:07 +1100 Subject: [PATCH 2/5] add link to git plugin tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0e811cf..59cf793 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,7 @@ It's a great way to learn. * [**JavaScript**: _Build GIT - Learn GIT_](https://kushagra.dev/blog/build-git-learn-git/) * [**Python**: _Just enough of a Git client to create a repo, commit, and push itself to GitHub_](https://benhoyt.com/writings/pygit/) * [**Python**: _Write yourself a Git!_](https://wyag.thb.lt/) +* [**Python**: _Build your own Git plugin with python_](https://www.joshburns.xyz/posts/byo_git_plugin_tutorial) * [**Ruby**: _Rebuilding Git in Ruby_](https://robots.thoughtbot.com/rebuilding-git-in-ruby) #### Build your own `Network Stack` From 8e628eb428a55ea4909de4af9a82e99db346ed83 Mon Sep 17 00:00:00 2001 From: Sarup Banskota Date: Sat, 26 Nov 2022 17:57:18 +0700 Subject: [PATCH 3/5] Update banner to use GIF --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e811cf..7e6e16c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Banner](https://codecrafters.io/landing/images/byox-banner.png)](https://codecrafters.io/github-banner) +[![Banner](https://codecrafters.io/landing/images/byox-banner.gif?v=1)](https://codecrafters.io/github-banner) ## Table of Contents: Build your own X From b5e5bb677ba6502eb521612924febec239ae8b82 Mon Sep 17 00:00:00 2001 From: Josh Burns <83684810+joshburnsxyz@users.noreply.github.com> Date: Sun, 27 Nov 2022 17:55:46 +1100 Subject: [PATCH 4/5] moved git plugin tutorial to uncategorised --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59cf793..0a1b142 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,6 @@ It's a great way to learn. * [**JavaScript**: _Build GIT - Learn GIT_](https://kushagra.dev/blog/build-git-learn-git/) * [**Python**: _Just enough of a Git client to create a repo, commit, and push itself to GitHub_](https://benhoyt.com/writings/pygit/) * [**Python**: _Write yourself a Git!_](https://wyag.thb.lt/) -* [**Python**: _Build your own Git plugin with python_](https://www.joshburns.xyz/posts/byo_git_plugin_tutorial) * [**Ruby**: _Rebuilding Git in Ruby_](https://robots.thoughtbot.com/rebuilding-git-in-ruby) #### Build your own `Network Stack` @@ -433,6 +432,7 @@ It's a great way to learn. * [**Python**: _Building a simple Generative Adversial Network (GAN) using Tensorflow_](https://blog.paperspace.com/implementing-gans-in-tensorflow/) * [**Python**: _Learn ML Algorithms by coding: Decision Trees_](https://lethalbrains.com/learn-ml-algorithms-by-coding-decision-trees-439ac503c9a4) * [**Python**: _JSON Decoding Algorithm_](https://github.com/cheery/json-algorithm) +* [**Python**: _Build your own Git plugin with python_](https://www.joshburns.xyz/posts/byo_git_plugin_tutorial) * [**Ruby**: _A Pedometer in the Real World_](http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html) * [**Ruby**: _Creating a Linux Desktop application with Ruby_](https://iridakos.com/tutorials/2018/01/25/creating-a-gtk-todo-application-with-ruby) * [**Rust**: _Let's build a browser engine_](https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html) From 85d6aacb3a26ca2d154672c16118ae7219df351f Mon Sep 17 00:00:00 2001 From: Ishuah E Kariuki Date: Tue, 29 Nov 2022 17:04:38 +0300 Subject: [PATCH 5/5] Add link to Golang terminal emulator article --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ebfb8e4..41c4a3f 100644 --- a/README.md +++ b/README.md @@ -397,6 +397,7 @@ It's a great way to learn. * [**C#**: _C# Networking: Create a TCP chater server, TCP games, UDP Pong and more_](https://16bpp.net/tutorials/csharp-networking) * [**C#**: _Loading and rendering 3D skeletal animations from scratch in C# and GLSL_](https://www.seanjoflynn.com/research/skeletal-animation.html) * [**Clojure**: _Building a spell-checker_](https://bernhardwenzel.com/articles/clojure-spellchecker/) +* [**Go**: _Build A Simple Terminal Emulator In 100 Lines of Golang_](https://ishuah.com/2021/03/10/build-a-terminal-emulator-in-100-lines-of-go/) * [**Go**, _Let's Create a Simple Load Balancer_](https://kasvith.github.io/posts/lets-create-a-simple-lb-go/) * [**Java**: _How to Build an Android Reddit App_](https://www.youtube.com/playlist?list=PLgCYzUzKIBE9HUJU-upNvl3TRVAo9W47y) [video] * [**JavaScript**: _Build Your Own Module Bundler - Minipack_](https://github.com/ronami/minipack)