-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuildx.html
255 lines (255 loc) · 27.5 KB
/
buildx.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="lulzx">
<meta name="description" content="Hello, world!">
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
<meta property="og:url" content="http://lulzx.github.io">
<meta property="og:title" content="Build your own X">
<meta property="og:site_name" content="Build your own X">
<meta property="og:description" content="Hello, world!">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Build your own X">
<meta name="twitter:description" content="Hello, world!">
<meta name="twitter:creator" content="Build your own X">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/paper.min.css">
<title>Build your own X</title>
</head>
<body>
<h1>Build your own X</h1>
<h2>Table of contents</h2>
<ul>
<li><a href="#build-your-own-3d-renderer">3D Renderer</a></li>
<li><a href="#build-your-own-blockchain--cryptocurrency">Blockchain / Cryptocurrency</a></li>
<li><a href="#build-your-own-bot">Bot</a></li>
<li><a href="#build-your-own-database">Database</a></li>
<li><a href="#build-your-own-docker">Docker</a></li>
<li><a href="#build-your-own-front-end-framework--library">Front-end Framework / Library</a></li>
<li><a href="#build-your-own-game">Game</a></li>
<li><a href="#build-your-own-git">Git</a></li>
<li><a href="#build-your-own-neural-network">Neural Network</a></li>
<li><a href="#build-your-own-network-stack">Network Stack</a></li>
<li><a href="#build-your-own-operating-system">Operating System</a></li>
<li><a href="#build-your-own-programming-language">Programming Language</a></li>
<li><a href="#build-your-own-regex-engine">Regex Engine</a></li>
<li><a href="#build-your-own-shell">Shell</a></li>
<li><a href="#build-your-own-template-engine">Template Engine</a></li>
<li><a href="#build-your-own-web-server">Web Server</a></li>
</ul>
<h2>Tutorials</h2>
<h4>Build your own <code>3D Renderer</code></h4>
<ul>
<li><a href="https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work"><strong>C++</strong>: <em>Introduction to Ray Tracing: a Simple Method for Creating 3D Images</em></a></li>
<li><a href="https://github.com/ssloy/tinyrenderer/wiki"><strong>C++</strong>: <em>How OpenGL works: software rendering in 500 lines of code</em></a></li>
<li><a href="https://avik-das.github.io/build-your-own-raytracer/"><strong>Java + JavaScript</strong>: <em>Build your own 3D renderer</em></a></li>
<li><a href="http://blog.rogach.org/2015/08/how-to-create-your-own-simple-3d-render.html"><strong>Java</strong>: <em>How to create your own simple 3D render engine in pure Java</em></a></li>
</ul>
<h4>Build your own <code>Blockchain / Cryptocurrency</code></h4>
<ul>
<li><a href="https://beta.observablehq.com/@galletti94/functional-blockchain"><strong>ATS</strong>: <em>Functional Blockchain</em></a></li>
<li><a href="https://medium.freecodecamp.org/from-what-is-blockchain-to-building-a-blockchain-within-an-hour-4e738efc819d"><strong>Ethereum</strong>: <em>From “What is Blockchain?†to building a blockchain in less than an hour</em></a></li>
<li><a href="https://jeiwan.cc/posts/building-blockchain-in-go-part-1/"><strong>Go</strong>: <em>Building Blockchain in Go</em></a></li>
<li><a href="https://github.com/adjoint-io/nanocoin"><strong>Haskell</strong>: <em>A simple cryptocurrency implementation, written to illustrate the basic components of a Proof-of-Work based public distributed ledger</em></a></li>
<li><a href="https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa"><strong>Java</strong>: <em>Creating Your First Blockchain with Java</em></a></li>
<li><a href="https://github.com/conradoqg/naivecoin"><strong>JavaScript</strong>: <em>A cryptocurrency implementation in less than 1500 lines of code</em></a></li>
<li><a href="https://github.com/nambrot/blockchain-in-js"><strong>JavaScript</strong>: <em>Build your own Blockchain in Javascript</em></a></li>
<li><a href="https://medium.com/digital-alchemy-holdings/learn-build-a-javascript-blockchain-part-1-ca61c285821e"><strong>JavaScript</strong>: <em>Learn & Build a Javascript Blockchain</em></a></li>
<li><a href="https://www.youtube.com/watch?v=zVqczFZr124&list=PLzvRQMJ9HDiTqZmbtFisdXFxul5k0F-Q4"><strong>JavaScript</strong>: <em>Creating a blockchain with Javascript</em></a> [video]</li>
<li><a href="https://hackernoon.com/learn-blockchains-by-building-one-117428612f46"><strong>Python</strong>: <em>Learn Blockchains by Building One</em></a></li>
<li><a href="http://ecomunsing.com/build-your-own-blockchain"><strong>Python</strong>: <em>Build your own blockchain: a Python tutorial</em></a></li>
<li><a href="https://lhartikk.github.io/"><strong>TypeScript</strong>: <em>Naivecoin: a tutorial for building a cryptocurrency</em></a></li>
</ul>
<h4>Build your own <code>Bot</code></h4>
<ul>
<li><a href="https://wiki.haskell.org/Roll_your_own_IRC_bot"><strong>Haskell</strong>: <em>Roll your own IRC bot</em></a></li>
<li><a href="https://medium.com/@SeloSlav/how-to-make-a-scary-russian-twitter-bot-with-java-b7b62768a3ac"><strong>Java</strong>: <em>How To Make a Scary Russian Twitter Bot With Java</em></a></li>
<li><a href="https://tutorials.botsfloor.com/creating-a-simple-facebook-messenger-ai-bot-with-api-ai-in-node-js-50ae2fa5c80d"><strong>Node.js</strong>: <em>Creating a Simple Facebook Messenger AI Bot with API.ai in Node.js</em></a></li>
<li><a href="https://medium.freecodecamp.org/easily-set-up-your-own-twitter-bot-4aeed5e61f7f"><strong>Node.js</strong>: <em>Why you should have your own Twitter bot, and how to build one in less than 30 minutes</em></a></li>
<li><a href="https://www.sohamkamani.com/blog/2016/09/21/making-a-telegram-bot/"><strong>Node.js</strong>: <em>How to make a responsive telegram bot</em></a></li>
<li><a href="https://discordjs.guide/"><strong>Node.js</strong>: <em>Create a Discord bot</em></a></li>
<li><a href="https://medium.com/@joeldg/an-advanced-tutorial-a-new-crypto-currency-trading-bot-boilerplate-framework-e777733607ae"><strong>PHP</strong>: <em>Let’s write a cryptocurrency bot</em></a></li>
<li><a href="https://blog.hartleybrody.com/fb-messenger-bot/"><strong>Python</strong>: <em>Step-by-Step Instructions for Building a Basic Facebook Chat Bot</em></a></li>
<li><a href="https://www.fullstackpython.com/blog/build-first-slack-bot-python.html"><strong>Python</strong>: <em>How to Build Your First Slack Bot with Python</em></a></li>
<li><a href="http://pythonforengineers.com/build-a-reddit-bot-part-1/"><strong>Python</strong>: <em>Build a Reddit Bot</em></a></li>
<li><a href="https://www.youtube.com/watch?v=krTUf7BpTc0"><strong>Python</strong>: <em>How To Make A reddit Bot</em></a> [video]</li>
<li><a href="https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/"><strong>Python</strong>: <em>How To Create a Telegram Bot Using Python</em></a></li>
<li><a href="https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607"><strong>Python</strong>: <em>Create a Twitter Bot in Python Using Tweepy</em></a></li>
<li><a href="https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1"><strong>R</strong>: <em>Build A Cryptocurrency Trading Bot with R</em></a></li>
</ul>
<h4>Build your own <code>Database</code></h4>
<ul>
<li><a href="https://cstack.github.io/db_tutorial/"><strong>C</strong>: <em>Let's Build a Simple Database</em></a></li>
<li><a href="http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/"><strong>C++</strong>: <em>Implementing a Key-Value Store</em></a></li>
<li><a href="https://www.codeproject.com/Articles/1029838/Build-Your-Own-Database"><strong>C#</strong>: <em>Build Your Own Database</em></a></li>
<li><a href="http://aosabook.org/en/500L/an-archaeology-inspired-database.html"><strong>Clojure</strong>: <em>An Archaeology-Inspired Database</em></a></li>
<li><a href="http://aosabook.org/en/500L/dagoba-an-in-memory-graph-database.html"><strong>JavaScript</strong>: <em>Dagoba: an in-memory graph database</em></a></li>
<li><a href="http://aosabook.org/en/500L/dbdb-dog-bed-database.html"><strong>Python</strong>: <em>DBDB: Dog Bed Database</em></a></li>
</ul>
<h4>Build your own <code>Docker</code></h4>
<ul>
<li><a href="https://blog.lizzie.io/linux-containers-in-500-loc.html"><strong>C</strong>: <em>Linux containers in 500 lines of code</em></a></li>
<li><a href="https://www.youtube.com/watch?v=Utf-A4rODH8"><strong>Go</strong>: <em>Building a container from scratch in Go</em></a> [video]</li>
<li><a href="https://github.com/Fewbytes/rubber-docker"><strong>Python</strong>: <em>A workshop on Linux containers: Rebuild Docker from Scratch</em></a></li>
<li><a href="https://github.com/tonybaloney/mocker"><strong>Python</strong>: <em>A proof-of-concept imitation of Docker, written in 100% Python</em></a></li>
<li><a href="https://github.com/p8952/bocker"><strong>Shell</strong>: <em>Docker implemented in around 100 lines of bash</em></a></li>
</ul>
<h4>Build your own <code>Front-end Framework / Library</code></h4>
<ul>
<li><a href="https://jasonformat.com/wtf-is-jsx/"><strong>JavaScript</strong>: <em>WTF is JSX (Let's Build a JSX Renderer)</em></a></li>
<li><a href="https://github.com/hexacta/didact"><strong>JavaScript</strong>: <em>A DIY guide to build your own React</em></a></li>
<li><a href="https://vimeo.com/album/3930691"><strong>JavaScript</strong>: <em>Reverse Engineering React</em></a></li>
<li><a href="https://www.youtube.com/watch?v=_MAD4Oly9yg"><strong>JavaScript</strong>: <em>Building React From Scratch</em></a> [video]</li>
<li><a href="https://blog.javascripting.com/2016/10/05/building-your-own-react-clone-in-five-easy-steps/"><strong>JavaScript</strong>: <em>Building Your Own React Clone in Five Easy Steps</em></a></li>
<li><a href="https://medium.com/@sweetpalma/gooact-react-in-160-lines-of-javascript-44e0742ad60f"><strong>JavaScript</strong>: <em>Gooact: React in 160 lines of JavaScript</em></a></li>
<li><a href="https://github.com/jsrebuild/build-your-own-vuejs"><strong>JavaScript</strong>: <em>Build your own Vuejs</em></a></li>
<li><a href="https://zapier.com/engineering/how-to-build-redux/"><strong>JavaScript</strong>: <em>Build Yourself a Redux</em></a></li>
<li><a href="https://www.jamasoftware.com/blog/lets-write-redux/"><strong>JavaScript</strong>: <em>Let’s Write Redux!</em></a></li>
<li><a href="https://egghead.io/lessons/react-redux-implementing-store-from-scratch"><strong>JavaScript</strong>: <em>Redux: Implementing Store from Scratch</em></a></li>
<li><a href="https://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/"><strong>JavaScript</strong>: <em>Build Your own Simplified AngularJS in 200 Lines of JavaScript</em></a></li>
<li><a href="https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060"><strong>JavaScript</strong>: <em>How to write your own Virtual DOM</em></a></li>
</ul>
<h4>Build your own <code>Game</code></h4>
<ul>
<li><a href="https://handmadehero.org/"><strong>C</strong>: <em>Handmade Hero</em></a></li>
<li><a href="https://nesdoug.com/"><strong>C</strong>: <em>How to Program an NES game in C</em></a></li>
<li><a href="https://www.youtube.com/playlist?list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg"><strong>C</strong>: <em>Chess Engine In C</em></a> [video]</li>
<li><a href="https://www.youtube.com/playlist?list=PLSkJey49cOgTSj465v2KbLZ7LMn10bCF9"><strong>C</strong>: <em>Let's Make: Dangerous Dave</em></a> [video]</li>
<li><a href="https://www.youtube.com/playlist?list=PLT6WFYYZE6uLMcPGS3qfpYm7T_gViYMMt"><strong>C</strong>: <em>Learn Video Game Programming in C</em></a>
[video]</li>
<li><a href="https://www.youtube.com/playlist?list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW"><strong>C</strong>: <em>Coding A Sudoku Solver in C</em></a> [video]</li>
<li><a href="https://www.youtube.com/playlist?list=PLkTXsX7igf8erbWGYT4iSAhpnJLJ0Nk5G"><strong>C</strong>: <em>Coding a Rogue/Nethack RPG in C</em></a> [video]</li>
<li><a href="https://dashgl.com/"><strong>C</strong>: <em>Tutorial For a Brickout Clone</em></a></li>
<li><a href="https://dashgl.com/Invaders/"><strong>C</strong>: <em>A tutorials for a basic Invaders game made in C with GTK: and OpenGL</em></a></li>
<li><a href="https://dashgl.com/Astroids/"><strong>C</strong>: <em>Astroids Tutorial written in C using GTK with OpenGL and DashGL for matrix manipulation</em></a></li>
<li><a href="https://www.youtube.com/playlist?list=PLMZ_9w2XRxiZq1vfw1lrpCMRDufe2MKV_"><strong>C++</strong>: <em>How To Make Minecraft in C++/ OpenGL</em></a> [video]</li>
<li><a href="https://learnopengl.com/In-Practice/2D-Game/Breakout"><strong>C++</strong>: <em>Breakout</em></a></li>
<li><a href="http://lazyfoo.net/tutorials/SDL/"><strong>C++</strong>: <em>Beginning Game Programming v2.0</em></a></li>
<li><a href="http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/"><strong>C#</strong>: <em>Learn C# by Building a Simple RPG</em></a></li>
<li><a href="https://roguesharp.wordpress.com/"><strong>C#</strong>: <em>Creating a Roguelike Game in C#</em></a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_breakout_game_Phaser"><strong>JavaScript</strong>: <em>2D breakout game using Phaser</em></a></li>
<li><a href="http://www.lessmilk.com/tutorial/flappy-bird-phaser-1"><strong>JavaScript</strong>: <em>How to Make Flappy Bird in HTML5 With Phaser</em></a></li>
<li><a href="https://auth0.com/blog/developing-games-with-react-redux-and-svg-part-1/"><strong>JavaScript</strong>: <em>Developing Games with React, Redux, and SVG</em></a></li>
<li><a href="https://github.com/SSYGEN/blog/issues/30"><strong>Lua</strong>: <em>BYTEPATH</em></a></li>
<li><a href="https://github.com/thoughtbot/write-yourself-a-roguelike"><strong>Ruby</strong>: <em>Write Yourself a Roguelike</em></a></li>
<li><a href="https://leanpub.com/developing-games-with-ruby/read"><strong>Ruby</strong>: <em>Developing Games With Ruby</em></a></li>
</ul>
<h4>Build your own <code>Git</code></h4>
<ul>
<li><a href="http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/"><strong>Haskell</strong>: <em>Reimplementing “git clone†in Haskell from the bottom up</em></a></li>
<li><a href="http://gitlet.maryrosecook.com/docs/gitlet.html"><strong>JavaScript</strong>: <em>Gitlet</em></a></li>
<li><a href="https://kushagragour.in/blog/2014/01/build-git-learn-git/"><strong>JavaScript</strong>: <em>Build GIT - Learn GIT</em></a></li>
<li><a href="https://benhoyt.com/writings/pygit/"><strong>Python</strong>: <em>Just enough of a Git client to create a repo, commit, and push itself to GitHub</em></a></li>
<li><a href="https://robots.thoughtbot.com/rebuilding-git-in-ruby"><strong>Ruby</strong>: <em>Rebuilding Git in Ruby</em></a></li>
</ul>
<h4>Build your own <code>Network Stack</code></h4>
<ul>
<li><a href="http://beej.us/guide/bgnet/html/multi/index.html"><strong>C</strong>: <em>Beej's Guide to Network Programming</em></a></li>
<li><a href="http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/"><strong>C</strong>: <em>Let's code a TCP/IP stack</em></a></li>
<li><a href="https://medium.com/geckoboard-under-the-hood/how-to-build-a-network-stack-in-ruby-f73aeb1b661b"><strong>Ruby</strong>: <em>How to build a network stack in Ruby</em></a></li>
</ul>
<h4>Build your own <code>Neural Network</code></h4>
<ul>
<li><a href="https://www.codeproject.com/Articles/11285/Neural-Network-OCR"><strong>C#</strong>: <em>Neural Network OCR</em></a></li>
<li><a href="https://made2591.github.io/posts/neuralnetwork"><strong>Go</strong>: <em>Build a multilayer perceptron with Golang</em></a></li>
<li><a href="https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go/"><strong>Go</strong>: <em>How to build a simple artificial neural network with Go</em></a></li>
<li><a href="https://www.datadan.io/building-a-neural-net-from-scratch-in-go/"><strong>Go</strong>: <em>Building a Neural Net from Scratch in Go</em></a></li>
<li><a href="https://www.youtube.com/watch?v=ntKn5TPHHAk&feature=youtu.be"><strong>Java</strong>: <em>Neural Networks: Perceptron</em></a> [video]</li>
<li><a href="https://franpapers.com/en/machine-learning-ai-en/2017-neural-network-implementation-in-javascript-by-an-example/"><strong>JavaScript</strong>: <em>Neural Network implementation in Javascript, by an example</em></a></li>
<li><a href="https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2"><strong>JavaScript</strong>: <em>Neural networks from scratch for Javascript linguists (Part1 — The Perceptron)</em></a></li>
<li><a href="https://itnext.io/you-can-build-a-neural-network-in-javascript-even-if-you-dont-really-understand-neural-networks-e63e12713a3"><strong>JavaScript</strong>: <em>You can build a neural network in JavaScript even if you don’t really understand neural networks</em></a></li>
<li><a href="https://medium.freecodecamp.org/how-to-create-a-neural-network-in-javascript-in-only-30-lines-of-code-343dafc50d49"><strong>JavaScript</strong>: <em>How to create a Neural Network in JavaScript in only 30 lines of code</em></a></li>
<li><a href="http://aosabook.org/en/500L/optical-character-recognition-ocr.html"><strong>Python</strong>: <em>Optical Character Recognition (OCR)</em></a></li>
</ul>
<h4>Build your own <code>Operating System</code></h4>
<ul>
<li><a href="http://joebergeron.io/posts/post_two.html"><strong>Assembly</strong>: <em>Writing a Tiny x86 Bootloader</em></a></li>
<li><a href="https://tuhdo.github.io/os01/"><strong>C</strong>: <em>Operating Systems: From 0 to 1</em></a></li>
<li><a href="https://littleosbook.github.io/"><strong>C</strong>: <em>The little book about OS development</em></a></li>
<li><a href="https://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel"><strong>C</strong>: <em>Kernel 101 –Let’s write a Kernel</em></a></li>
<li><a href="https://github.com/jserv/mini-arm-os"><strong>C</strong>: <em>Build a minimal multi-tasking kernel for ARM from scratch</em></a></li>
<li><a href="https://github.com/cfenollosa/os-tutorial"><strong>C</strong>: <em>How to create an OS from scratch</em></a></li>
<li><a href="https://danluu.com/malloc-tutorial/"><strong>C</strong>: <em>Malloc tutorial</em></a></li>
<li><a href="https://blog.holbertonschool.com/hack-the-virtual-memory-c-strings-proc/"><strong>C</strong>: <em>Hack the virtual memory</em></a></li>
<li><a href="http://3zanders.co.uk/2017/10/13/writing-a-bootloader/"><strong>C++</strong>: <em>Writing a Bootloader</em></a></li>
<li><a href="https://os.phil-opp.com/first-edition/"><strong>Rust</strong>: <em>Writing an OS in Rust</em></a></li>
</ul>
<h4>Build your own <code>Programming Language</code></h4>
<ul>
<li><a href="http://www.craftinginterpreters.com/"><strong>C</strong>: <em>Crafting interpreters: A handbook for making programming languages</em></a></li>
<li><a href="http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/"><strong>C</strong>: <em>Baby's First Garbage Collector</em></a></li>
<li><a href="http://www.buildyourownlisp.com/"><strong>C</strong>: <em>Build Your Own Lisp: Learn C and build your own programming language in 1000 lines of code</em></a></li>
<li><a href="https://www.slideshare.net/jserv/jit-compiler"><strong>C</strong>: <em>Implement a minimal interpreter, Compiler (x86/Arm) and JIT compiler from scratch</em></a></li>
<li><a href="http://maplant.com/gc.html"><strong>C</strong>: <em>Writing a Simple Garbage Collector in C</em></a></li>
<li><a href="https://gnuu.org/2009/09/18/writing-your-own-toy-compiler/"><strong>C++</strong>: <em>Writing Your Own Toy Compiler Using Flex</em></a></li>
<li><a href="https://www.youtube.com/watch?v=HxaD_trXwRE"><strong>Go</strong>: <em>Lexical Scanning in Go</em></a> [video]</li>
<li><a href="http://alephnullplex.github.io/cradle/"><strong>Haskell</strong>: <em>Let's Build a Compiler</em></a></li>
<li><a href="http://dev.stephendiehl.com/fun/"><strong>Haskell</strong>: <em>Write You a Haskell</em></a></li>
<li><a href="https://github.com/jamiebuilds/the-super-tiny-compiler"><strong>JavaScript</strong>: <em>The Super Tiny Compiler</em></a></li>
<li><a href="https://norasandler.com/2017/11/29/Write-a-Compiler.html"><strong>OCaml</strong>: <em>Writing a C Compiler</em></a></li>
<li><a href="https://beautifulracket.com/"><strong>Racket</strong>: <em>Beautiful Racket: How to make your own programming languages with Racket</em></a></li>
<li><a href="https://www.destroyallsoftware.com/screencasts/catalog/a-compiler-from-scratch"><strong>Ruby</strong>: <em>A Compiler From Scratch</em></a></li>
<li><a href="http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html"><strong>Python</strong>: <em>A Python Interpreter Written in Python</em></a></li>
<li><a href="http://khamidou.com/compilers/lisp.py/"><strong>Python</strong>: <em>lisp.py: Make your own Lisp interpreter</em></a></li>
<li><a href="http://effbot.org/zone/simple-iterator-parser.htm"><strong>Python</strong>: <em>Simple Iterator-based Parsing</em></a></li>
<li><a href="http://effbot.org/zone/simple-top-down-parsing.htm"><strong>Python</strong>: <em>Simple Top-Down Parsing in Python</em></a></li>
</ul>
<h4>Build your own <code>Regex Engine</code></h4>
<ul>
<li><a href="https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html"><strong>C</strong>: <em>A Regular Expression Matcher</em></a></li>
<li><a href="https://swtch.com/~rsc/regexp/regexp1.html"><strong>C</strong>: <em>Regular Expression Matching Can Be Simple And Fast</em></a></li>
<li><a href="https://nickdrane.com/build-your-own-regex/"><strong>JavaScript</strong>: <em>Build a Regex Engine in Less than 40 Lines of Code</em></a></li>
<li><a href="https://perl.plover.com/Regex/article.html"><strong>Perl</strong>: <em>How Regexes Work</em></a></li>
<li><a href="https://rcoh.svbtle.com/no-magic-regular-expressions"><strong>Scala</strong>: <em>No Magic: Regular Expressions</em></a></li>
</ul>
<h4>Build your own <code>Shell</code></h4>
<ul>
<li><a href="https://brennan.io/2015/01/16/write-a-shell-in-c/"><strong>C</strong>: <em>Tutorial - Write a Shell in C</em></a></li>
<li><a href="https://github.com/kamalmarhubi/shell-workshop"><strong>C</strong>: <em>Let's build a shell!</em></a></li>
<li><a href="https://indradhanush.github.io/blog/writing-a-unix-shell-part-1/"><strong>C</strong>: <em>Writing a UNIX Shell - Part I</em></a></li>
<li><a href="https://www.jstorimer.com/blogs/workingwithcode/7766107-a-unix-shell-in-ruby"><strong>Ruby</strong>: <em>A Unix Shell in Ruby</em></a></li>
</ul>
<h4>Build your own <code>Template Engine</code></h4>
<ul>
<li><a href="http://krasimirtsonev.com/blog/article/Javascript-template-engine-in-just-20-line"><strong>JavaScript</strong>: <em>JavaScript template engine in just 20 lines</em></a></li>
<li><a href="http://alexmic.net/building-a-template-engine/"><strong>Python</strong>: <em>Approach: Building a toy template engine in Python</em></a></li>
<li><a href="http://aosabook.org/en/500L/a-template-engine.html"><strong>Python</strong>: <em>A Template Engine</em></a></li>
<li><a href="http://bits.citrusbyte.com/how-to-write-a-template-library/"><strong>Ruby</strong>: <em>How to write a template engine in less than 30 lines of code</em></a></li>
</ul>
<h4>Build your own <code>Web Server</code></h4>
<ul>
<li><a href="https://www.codeproject.com/Articles/859108/Writing-a-Web-Server-from-Scratch"><strong>C#</strong>: <em>Writing a Web Server from Scratch</em></a></li>
<li><a href="https://www.codementor.io/ziad-saab/let-s-code-a-web-server-from-scratch-with-nodejs-streams-h4uc9utji"><strong>Node.js</strong>: <em>Let's code a web server from scratch with NodeJS Streams</em></a></li>
<li><a href="http://station.clancats.com/writing-a-webserver-in-pure-php/"><strong>PHP</strong>: <em>Writing a webserver in pure PHP</em></a></li>
<li><a href="http://aosabook.org/en/500L/a-simple-web-server.html"><strong>Python</strong>: <em>A Simple Web Server</em></a></li>
<li><a href="https://ruslanspivak.com/lsbaws-part1/"><strong>Python</strong>: <em>Let’s Build A Web Server.</em></a></li>
<li><a href="https://defn.io/2018/02/25/web-app-from-scratch-01/"><strong>Python</strong>: <em>Web application from scratch</em></a></li>
<li><a href="http://joaoventura.net/blog/2017/python-webserver/"><strong>Python</strong>: <em>Building a basic HTTP Server from scratch in Python</em></a></li>
<li><a href="http://blog.honeybadger.io/building-a-simple-websockets-server-from-scratch-in-ruby/"><strong>Ruby</strong>: <em>Building a simple websockets server from scratch in Ruby</em></a></li>
</ul>
<h4>Uncategorized</h4>
<ul>
<li><a href="http://aosabook.org/en/500L/the-same-origin-policy.html"><strong>Alloy</strong>: <em>The Same-Origin Policy</em></a></li>
<li><a href="https://www.youtube.com/watch?v=ZjwvMcP3Nf0&list=PLU94OURih-CiP4WxKSMt3UcwMSDM3aTtX"><strong>C</strong>: <em>Building a software and hardware stack for a simple computer from scratch</em></a> [video]</li>
<li><a href="https://viewsourcecode.org/snaptoken/kilo/"><strong>C</strong>: <em>Build Your Own Text Editor</em></a></li>
<li><a href="http://dranger.com/ffmpeg/ffmpeg.html"><strong>C</strong>: <em>How to Write a Video Player in Less Than 1000 Lines</em></a></li>
<li><a href="https://github.com/jamesroutley/write-a-hash-table"><strong>C</strong>: <em>Learn how to write a hash table in C</em></a></li>
<li><a href="http://www.code-in-c.com/writing-svg-library-c/"><strong>C</strong>: <em>Writing an SVG Library</em></a></li>
<li><a href="https://github.com/relativty/Relativ"><strong>C++</strong>: <em>Build your own VR headset for $100</em></a></li>
<li><a href="http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/"><strong>C++</strong>: <em>How to write an emulator (CHIP-8 interpreter)</em></a></li>
<li><a href="https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/"><strong>C++</strong>: <em>Writing a Linux Debugger</em></a></li>
<li><a href="http://www.lofibucket.com/articles/64k_intro.html"><strong>C++</strong>: <em>How a 64k intro is made</em></a></li>
<li><a href="https://www.sohamkamani.com/blog/2017/09/13/how-to-build-a-web-application-in-golang/"><strong>Go</strong>: <em>Build a web application in Go</em></a></li>
<li><a href="https://www.youtube.com/watch?v=dhWL4DC7Krs"><strong>Java</strong>: <em>Build a Flashlight App</em></a> [video]</li>
<li><a href="https://levelup.gitconnected.com/understand-javascript-promises-by-building-a-promise-from-scratch-84c0fd855720"><strong>JavaScript</strong>: <em>Learn JavaScript Promises by Building a Promise from Scratch</em></a></li>
<li><a href="https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/"><strong>Python</strong>: <em>How to Build a Kick-Ass Mobile Document Scanner in Just 5 Minutes</em></a></li>
<li><a href="http://aosabook.org/en/500L/a-continuous-integration-system.html"><strong>Python</strong>: <em>Continuous Integration System</em></a></li>
<li><a href="https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8"><strong>Python</strong>: <em>Building a Facial Recognition Pipeline with Deep Learning in Tensorflow</em></a></li>
<li><a href="https://www.datacamp.com/community/tutorials/recommender-systems-python"><strong>Python</strong>: <em>Recommender Systems in Python: Beginner Tutorial</em></a></li>
<li><a href="http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html"><strong>Ruby</strong>: <em>A Pedometer in the Real World</em></a></li>
<li><a href="https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html"><strong>Rust</strong>: <em>Let's build a browser engine</em></a></li>
<li><a href="https://github.com/EmilHernvall/dnsguide/blob/master/README.md"><strong>Rust</strong>: <em>Building a DNS server in Rust</em></a></li>
</ul>
</body>
</html>