-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (70 loc) · 3.78 KB
/
index.html
File metadata and controls
90 lines (70 loc) · 3.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>vmarcelo Projects</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>vmarcelo Projects</h1>
<p class="subtitle">Mainly focused on projects using Go</p>
<h2>Game Development</h2>
<div class="project">
<a href="https://github.com/Vmarcelo49/FGEngine" target="_blank">FGEngine</a>
<div class="description">Fighting game engine built with Ebiten for creating 2D fighting games</div>
<div class="play-buttons">
<a href="./fgengine/game.html" class="play-btn game" target="_blank">Play Game on Browser</a>
<a href="./fgengine/editor.html" class="play-btn editor" target="_blank">Open Editor on Browser</a>
</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/CardGame" target="_blank">CardGame</a>
<div class="description">Almost abandoned card game project, written in Go, i need to study more to finish this project</div>
</div>
<h2>Modding</h2>
<div class="project">
<a href="https://github.com/Vmarcelo49/HigurashiDaybreakModelConversion" target="_blank">HigurashiDaybreakModelConversion</a>
<div class="description">Collection of tools and research for converting Higurashi Daybreak game models</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/higurashi-daybreak-in-go" target="_blank">higurashi-daybreak-in-go</a>
<div class="description">Go implementation for extracting Higurashi Daybreak Kai .DAT files</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/daybreakWidescreen" target="_blank">daybreakWidescreen</a>
<div class="description">Patcher/mod for Higurashi Daybreak Kai to enable true widescreen support</div>
</div>
<h2>Translation Projects</h2>
<div class="project">
<a href="https://github.com/Vmarcelo49/ZTD_PTBR" target="_blank">ZTD_PTBR</a>
<div class="description">Brazilian Portuguese translation for Zero Escape: Zero Time Dilemma</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/umineko-catbox-ptbr" target="_blank">umineko-catbox-ptbr</a>
<div class="description">Brazilian Portuguese translation for Umineko Catbox switch</div>
</div>
<h2>Archive & Learning</h2>
<div class="project">
<a href="https://github.com/Vmarcelo49/higurashi-daybreak-in-go-old" target="_blank">higurashi-daybreak-in-go-old</a>
<div class="description">Archived Go port of Perl script for Higurashi Daybreak .DAT file manipulation</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/School-Days" target="_blank">School-Days</a>
<div class="description">Found this project of a port of the School Days visual novel engine, tried to port it to ebiten but no success so far</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/SDL-adventures" target="_blank">SDL-adventures</a>
<div class="description">Asteroids clone in C++ using SDL2 - a learning project for both C++ and SDL2 , dont read the code its awful i was young</div>
</div>
<div class="project">
<a href="https://github.com/Vmarcelo49/CCCaster" target="_blank">CCCaster</a>
<div class="description">Tried to vibe code some improvements to the caster like ipv6 hosting, nothing seemed to came out of it</div>
</div>
<div class="github-link">
<a href="https://github.com/Vmarcelo49" target="_blank">🔗 View All Projects on GitHub</a>
</div>
</div>
</body>
</html>