-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (46 loc) · 4.57 KB
/
index.html
File metadata and controls
67 lines (46 loc) · 4.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href=".github/favicon.ico">
<link rel="stylesheet" href="./style.css">
<title>Waib's Code Compendium</title>
</head>
<body>
<h2>👋🏻 Hello there,</h2>
<h3 class="subtitle">welcome to my code compendium.</h3>
<img
class="banner"
src="https://github.com/thiagowaib/code-compendium/blob/main/.github/banner.jfif?raw=true"
width="100%">
<quote>In each subdirectory is stored a project exploring a certain subject, that was not big enough for its own repository. A complete list can be found below</quote>
<br>
<h1>📚 Project List</h1>
<h3><b><a href="https://github.com/thiagowaib/code-compendium/tree/main/unect-cap-js" target="_blank"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" height="25px"/> • Javascript Crash Course by Unect</a></b></h3>
A crash course built for teaching Javascript for trainees joining <a href="unect.com.br" target="_blank">Unect Jr</a>. <i>(pt-BR)</i>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/unect-cap-reactjs" target="_blank"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" height="25px"/> • ReactJs Crash Course by Unect</a></b></h3>
A crash course built for teaching React Js for trainees joining <a href="unect.com.br" target="_blank">Unect Jr</a>. <i>(pt-BR)</i>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/jwt-auth" target="_blank"><img src="https://atitudereflexiva.files.wordpress.com/2021/11/jwt_icon.png" height="25px"/> • JWT Authenticator with Login System</a></b></h3>
A JWT Authenticator example with login, built with the help of <a href="https://www.youtube.com/watch?v=mbsmsi7l3r4" target="_blank">this tutorial</a>. <i>(en)</i>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/mandelbrot-set" target="_blank"><img src="https://github.com/thiagowaib/code-compendium/blob/main/.github/p5js.png?raw=true" height="25px"/> • Mandelbrot Set with p5.js</a></b></h3>
Mandelbrot Set rendering, built with the help of <a href="https://www.youtube.com/watch?v=6z7GQewK-Ks" target="_blank">this tutorial</a>. <i>(en)</i>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/face-cv" target="_blank"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" height="25px"/> <img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/tensorflow/tensorflow-original.svg" height="25px"/> • Face Detection and Recognition</a></b></h3>
Face Detection and Recognition algorithm built with <a href="https://justadudewhohacks.github.io/face-api.js/docs/index.html" target="_blank">face-api.js</a>. <i>(en)</i>
<b><a class="demo" href="https://thiagowaib.github.io/code-compendium/face-cv/" target="_blank">▶️ Check out this Demo</a></b>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/boid-sim" target="_blank"><img src="https://github.com/thiagowaib/code-compendium/blob/main/.github/p5js.png?raw=true" height="25px"/> • Boid Simulation</a></b> </h3>
Boids (flock) Simulation built with <a href="https://p5js.org" target="_blank">p5.js</a>. <i>(en)</i>
<b><a class="demo" href="https://thiagowaib.github.io/code-compendium/boid-sim/" target="_blank">▶️ Check out this Demo</a></b>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/yt-download" target="_blank"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg?raw=true" height="25px"/> • Youtube Downloader</a></b> </h3>
Youtube Audio & Video downloader script, built with <a href="https://pytube.io/en/latest/user/install.html" target="_blank">pytube</a>. <i>(en)</i>
<h3> <b><a href="https://github.com/thiagowaib/code-compendium/tree/main/qrcode-gen" target="_blank"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg?raw=true" height="25px"/> • QR Code Generator</a></b> </h3>
QR Code Generator script, built with <a href="https://github.com/lincolnloop/python-qrcode" target="_blank">qrcode</a>. <i>(en)</i>
<p onclick="handleReturn()">↑ Back to top ↑</p>
<script>
const handleReturn = () => {
scrollTo(top)
}
</script>
</body>
</html>