-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (165 loc) · 6.18 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/css/home.css" />
<template id="head"></template>
</head>
<body>
<template id="header"></template>
<main>
<hero-section style="--background-image: url('/images/bg.jpg')">
<img slot="image" src="images/portrait.png" alt="Foreground Image" />
</hero-section>
<div class="main-grid">
<section class="skills">
<h2>Personal Interests</h2>
<div class="skills-container">
<picture>
<img src="images/beach.jpg" />
</picture>
<div class="skills-text">
<p>Solving problems using <strong>machine learning</strong></p>
<p>Typesafe programming with <strong>Scala</strong></p>
<p>Setting up <strong>data pipelines</strong> that scale</p>
<p>Anything that satisfies my <strong>curiosity</strong></p>
<p>
<strong>Traveling</strong>, having a beer or two, and great
music
</p>
</div>
</div>
</section>
<section class="recent-articles">
<h2>Recent articles</h2>
<p>
<a href="/articles/scala3py4/"
>Scala 3 is Python 4 ... or is it? (part 1)
</a>
</p>
</section>
<section class="experience">
<h2>Select Projects</h2>
<div class="experience-container">
<picture>
<img src="images/side.jpg" />
</picture>
<div class="experience-text">
<p><strong>Modelling glucose</strong> levels for T1DM patients</p>
<p><strong>AI photo booth</strong> at a large music festival</p>
<p>Creating data science <strong>learning material</strong></p>
<p>
<strong>Data analysis</strong> in manufacturing, sociology,
finance and more
</p>
</div>
</div>
</section>
<section class="projects">
<h2>Projects</h2>
<div class="projects-container">
<project-card>
<img src="images/personal-web34.jpg" slot="image" />
<section slot="caption">
<h3>
The story of my personal website and accidental static site
generator
</h3>
<p>
How I started building my personal website with
<a
href="https://developer.mozilla.org/en-US/docs/Web/API/Web_components"
>
web components
</a>
, vanilla JS' "framework" but accidentally made a static site
generator along the way.
</p>
<a class="button" href="https://github.com/ChidiRnweke/blog">
Learn more.
</a>
</section>
</project-card>
<project-card>
<img src="images/squishlink.jpg" slot="image" />
<section slot="caption">
<h3>SquishLink</h3>
<p>Functors, Applicatives, Monads, and Monoids.</p>
<p>
SquishLink has it all. It's a link shortener made with pure
functional Scala.
<a href="https://chidinweke.be/squish">here</a>.
</p>
<a
class="button"
href="https://github.com/ChidiRnweke/SquishLink-backend"
>
Learn more.
</a>
</section>
</project-card>
<project-card>
<img src="images/squishlink_rs.png" slot="image" />
<section slot="caption">
<h3>Rust implementation of SquishLink</h3>
<p>
Less monads, more ownership and a fraction of the memory
usage.
</p>
<p>
Following the trend of rewriting everything in Rust, I rewrote
SquishLink. Check it out, the live version is actually the
Rust version.
</p>
<a
class="button"
href="https://github.com/ChidiRnweke/squishlink_rs"
>
Learn more.
</a>
</section>
</project-card>
<project-card>
<img src="images/adversarial.jpg" slot="image" />
<section slot="caption">
<h3>Adversarial attack on a neural network.</h3>
<p>
I tried to fool a neural network into thinking all images in
the training set were airplanes. It worked.
</p>
<p>
It's a novel general purpose attack that can be used on any
neural network if you have access to the gradients.
</p>
<a
class="button"
href="https://github.com/ChidiRnweke/computer-vision-exercises-and-labs/blob/master/assignment3/AdversarialAttack.ipynb"
>
Learn more.
</a>
</section>
</project-card>
<project-card>
<img src="images/beach34.jpg" slot="image" />
<section slot="caption">
<h3>... And much more.</h3>
<p>
If you're Interested in more projects, you can check out my
GitHub profile.
</p>
<p>
I have a lot of projects there that I'm proud of. Some of them
are even finished. I keep even projects that I'm not so proud
of there, to remind myself of how far I've come.
</p>
<a class="button" href="https://github.com/ChidiRnweke/">
Learn more.
</a>
</section>
</project-card>
</div>
</section>
</div>
</main>
<template id="footer"></template>
</body>
</html>