-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
320 lines (314 loc) · 11 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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="/todofavicon.ico">
<meta name="description" content="Home page of Nuno Das Neves">
<title>Nuno Das Neves dot com</title>
<style>
@font-face {
font-family: 'Roboto';
src: url('fonts/Roboto/Roboto-Regular.ttf');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'RobotoSlab';
src: url('fonts/RobotoSlab/RobotoSlab-Light.ttf');
font-weight: 300;
font-style: normal;
}
/*
@font-face {
font-family: 'Lora';
src: url('fonts/Lora/Lora-Regular.ttf');
font-weight: 400;
font-style: normal;
}*/
:root {
--color-bg: rgb(29, 29, 32);
--color-li-bg: rgb(41, 38, 37);
--color-font: rgb(218, 218, 218);
--color-tag: rgb(168, 168, 168);
--color-date: rgb(168, 168, 168);
--color-a: rgb(168, 242, 255);
--color-a-visited: rgb(71, 122, 218);
--color-card-title: rgb(168, 242, 255);
--font-family-sans-serif: 'Roboto', Helvetica, 'Open Sans', sans-serif;
/*--font-family-serif: 'Lora', "Times New Roman", Times, serif;*/
--font-family-h3: 'RobotoSlab', "Times New Roman", Times, serif;
}
@media (prefers-color-scheme: light) {
:root {
--color-bg: rgb(218, 218, 224);
--color-li-bg: rgb(236, 232, 230);
--color-font: rgb(31, 30, 30);
--color-tag: rgb(139, 139, 139);
--color-date: rgb(139, 139, 139);
--color-a: rgb(60, 117, 223);
--color-a-visited: rgb(34, 66, 126);
--color-card-title: rgb(60, 117, 223);
}
}
html,
body {
margin: 0;
padding: 0;
letter-spacing: 0;
font-weight: 400;
font-style: normal;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--color-bg);
font-size: 18px;
line-height: 1.4;
color: var(--color-font);
font-family: var(--font-family-sans-serif);
}
ul,li {
margin: 0;
padding: 0;
margin-left: 20px;
}
a {
color: var(--color-a);
text-decoration: none;
}
a:visited {
color: var(--color-a-visited);
}
p {
margin: 0;
padding: 0;
}
h1,h2,h3,h4,h5 {
margin: 0;
padding: 0;
font-family: var(--font-family-sans-serif);
}
h2 {
font-size: 16pt;
}
h3 {
font-family: var(--font-family-h3);
}
.title {
display: flex;
margin: 20px 0;
}
.title-text {
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 20px 0;
}
.photo {
}
.actual-photo {
border-radius: 50%;
width: 100px;
height: 100px;
background-image: url("images/photo.jpg");
background-size: cover;
background-repeat: no-repeat;
}
.content {
margin: auto;
max-width: fit-content;
padding: 0 10pt;
}
.projects-title {
padding: 10pt;
}
.cards {
display: flex;
flex-direction: column;
}
.cards > div {
border-radius: 8px;
list-style:none;
margin-bottom: 20px;
padding: 15pt 25pt;
background-color: var(--color-li-bg);
}
.cards > div > h3 > a:visited {
color: var(--color-card-title);
}
.tags {
font-family: var(--font-family-sans-serif);
font-size: 12pt;
color: var(--color-tag);
}
.card-images {
padding-top: 10px;
display: flex;
justify-content: center;
flex-flow: wrap;
}
.card-images > img {
padding: 8px;
}
.date {
float: right;
color: var(--color-date);
font-size: 12pt;
}
</style>
</head>
<body>
<div class=content>
<div class=title>
<div class=photo>
<div class=actual-photo></div>
</div>
<div class=title-text>
<h1>Nuno Das Neves</h1>
<h3>Software Engineer</h3>
</div>
</div>
<div class=projects-title>
<h2>Projects</h2>
</div>
<div class=cards>
<div id="plantorium">
<p class=date>November 2023</p>
<h3><a target=_blank href="https://nunodasneves.itch.io/plantorium">Plantorium</a></h3>
<div class=tags>Godot game engine</div>
<p>
A cozy plant-raising game. Made in 2 weeks for <a href="https://itch.io/jam/seattle-indies-slow-jam-2023">Seattle Indies Slow Jam 2023</a>.<br>
Created in collaboration with <a href="https://www.vrundatambe.com/">Vrunda Tambe</a> (art) and <a href="https://www.drrocketmusic.com/">Nick Carver</a> (music).<br>
<a href="https://nunodasneves.itch.io/plantorium">Play on itch.io</a>
</p>
<div class=card-images>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/Vri0Thb5MV0" title="Plantorium Trailer" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div id="netherweird">
<p class=date>March 2023</p>
<h3><a target=_blank href="https://nunodasneves.com/games/dreaminvaders/">Netherweird</a></h3>
<div class=tags>javascript</div>
<p>
An experimental tower defense / realtime strategy mashup.<br>
Created in collaboration with Damian Maldonado.<br>
<a href="games/dreaminvaders/">Play here</a>
</p>
<div class=card-images>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/JBcb0YNFs5g" title="Netherweird trailer" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<p>Some tips:</p>
<ul>
<li>The goal is to destroy the enemy Tower while defending your own</li>
<li>Spend yellow crystals to spawn units, which march down the bridges connecting your Tower to your enemy's</li>
<li>Wining a skirmish gives control of the floating Dreamer in the respective lane, which generates additional crystals</li>
<li>Capture souls (orbs) by destroying enemy units or damaging the enemy Tower</li>
<li>Spend souls to unlock stronger units, additional Dreamers, and static defense</li>
</ul>
</div>
<div id="webgame">
<p class=date>15 November 2022</p>
<h3><a target=_blank href="https://nunodasneves.com/games/webgame/">Web Game</a></h3>
<div class=tags>javascript</div>
<p>
A platformer / roguelite about collecting food and outsmarting enemies.<br>
Created in roughly 2 days, in collaboration with <a href="http://fordacious.github.io/">Lachlan Ford</a>.<br>
<a href="games/webgame/">Play here</a>
<div class=card-images>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/CMfStamd888" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<p>How to play:</p>
<ul>
<li>You are the (small) yellow circle. Bring food (green circles) to grow your nest (large yellow circle).</li>
<li>Watch out for enemies (red circles). Once your nest is big enough, you win!</li>
<li>Move around the webs with WASD. Jump using spacebar.</li>
<li>Create new webs using left mouse click. Cut webs with R (very useful!)</li>
<li>Pick up and throw food (and small enemies!) with E.</li>
</ul>
</p>
</div>
<div id="bombsearcher">
<p class=date>15 December 2022</p>
<h3><a target=_blank href="https://github.com/NunoDasNeves/bombsearcher">Bombsearcher</a></h3>
<div class=tags>C SDL OpenGL DearImgui stb</div>
<p>
A game about searching for bombs.<br>
<a target=_blank href="https://github.com/NunoDasNeves/bombsearcher/releases/tag/v1.0">Download for Windows or Linux</a>
</p>
<div class=card-images>
<video controls width=250><source src="videos/bombsearcher.mp4" type="video/mp4"></video>
</div>
</div>
<div id="pathofagni">
<p class=date>18 November 2022</p>
<h3><a target=_blank href="https://www.lexaloffle.com/bbs/?pid=121011">Path of Agni</a></h3>
<div class=tags>pico-8 lua</div>
<p>
A game about escaping a dungeon, one room at a time.<br>
<a target=_blank href="https://www.lexaloffle.com/bbs/?pid=121011">Play on lexaloffle.com</a>
</p>
<div class=card-images>
<img src="images/pathofagni_2.gif">
<img src="images/pathofagni_1.gif">
</div>
<!--<iframe src="https://www.lexaloffle.com/bbs/widget.php?pid=pathofagni" allowfullscreen width="621"
height="513" style="border:none; overflow:hidden"></iframe>-->
</div>
<!--div class=card><a href="https://nunodasneves.com/spite-and-malice-web" target="_blank">Spite and Malice</a>: A multiplayer
browser-based version of the classic card game <a
href="https://en.wikipedia.org/wiki/Spite_and_Malice">Spite and Malice</a>
</div-->
<div id="swampbubblepopper">
<p class=date>18 April 2021</p>
<h3><a target=_blank href="https://nunodasneves.itch.io/swamp-bubble-popper">Swamp Bubble Popper</a></h3>
<div class=tags>javascript</div>
<p>
A game about popping bubbles. In a swamp.<br>
<a target=_blank href="https://nunodasneves.itch.io/swamp-bubble-popper">Play on itch.io</a>
</p>
<div class=card-images>
<img src="images/sbp.png">
</div>
</div>
<div id="2drigidbodysimulator">
<p class=date>October 2020</p>
<h3><a target=_blank href="https://github.com/NunoDasNeves/rigid-body-sim">rigid body sim</a></h3>
<div class=tags>C/C++ opengl 2d</div>
<p>
2D rigid body simulator
made with <a target=_blank href="https://github.com/NunoDasNeves/sdl-game-starter">sdl game starter</a>
</p>
<div class=card-images>
<img src="images/rigid-body-sim.gif">
</div>
</div>
<div>
<p class=date>Jan 2020</p>
<h3><a target=_blank href="https://github.com/NunoDasNeves/sdl-game-starter">sdl game starter</a></h3>
<div class=tags>C/C++ SDL</div>
<p>
C/C++ platform layer for making games with SDL on Windows or Linux - based on code from <a target=_blank href="https://handmadehero.org/faq">Handmade Hero</a>
</p>
</div>
<div>
<p class=date>September 2019</p>
<h3><a target=_blank href="https://github.com/NunoDasNeves/slp-to-mp4">slp to mp4</a></h3>
<div class=tags>python automation dolphin ffmpeg</div>
<p>
Convert <a target=_blank href="https://en.wikipedia.org/wiki/Super_Smash_Bros._Melee">Super Smash Bros Melee</a> replays
(recorded with <a target=_blank href="https://slippi.gg/">Project Slippi</a>) to video
</p>
</div>
<div>
<p class=date>November 2018</p>
<h3><a target=_blank href="https://nunodasneves.github.io/interactive-algorithms/">interactive algorithms</a></h3>
<div class=tags>vue javascript diagrams visualization</div>
<p>
A visualization of <a target=_blank href="https://en.wikipedia.org/wiki/Convolutional_code">convolutional codes</a>
and the <a target=_blank href="https://en.wikipedia.org/wiki/Viterbi_algorithm">Viterbi algorithm</a> (and Google
<a target=_blank href="https://en.wikipedia.org/wiki/PageRank">pagerank</a>, kinda)
</p>
</div>
</div>
</div>
</body>
</html>