-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (112 loc) · 4.22 KB
/
Copy pathindex.html
File metadata and controls
118 lines (112 loc) · 4.22 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>gavinstrikes</title>
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
/>
</head>
<body>
<div class="noise_overlay"></div>
<div class="scanlines"></div>
<div class="site_header">
<h1 class="glitch">gavinstrikes</h1>
<p>incompetent cybersecurity researcher</p>
</div>
<div class="section">
<div class="section_label">about</div>
<table>
<tr>
<td class="row_label">location</td>
<td class="row_value">united states</td>
</tr>
<tr>
<td class="row_label">currently</td>
<td class="row_value" id="discord_status">...</td>
</tr>
</table>
</div>
<div class="section">
<div class="section_label">skills</div>
<span class="tag">javascript</span>
<span class="tag">tmux</span>
<span class="tag">linux</span>
<span class="tag">docker</span>
<span class="tag">rust (learning)</span>
</div>
<div class="section">
<div class="section_label">projects</div>
<div class="project_list">
<div class="project_item">
<a
href="https://github.com/GavinCoded/Proton-Mail-Electron"
class="project_name"
>proton mail electron</a
>
<span class="project_desc"
>electron desktop client for proton mail</span
>
</div>
<div class="project_item">
<a
href="https://github.com/GS-Music-Software/desktop-recode"
class="project_name"
>gs music</a
>
<span class="project_desc">offline music player</span>
</div>
<div class="project_item">
<a
href="https://github.com/GavinCoded/Hook-Scanner"
class="project_name"
>hook scanner</a
>
<span class="project_desc"
>scans dlls hooked to a process</span
>
</div>
<div class="project_item">
<a
href="https://github.com/GavinCoded/GNOME-Setup"
class="project_name"
>gnome themes</a
>
<span class="project_desc">my gnome rice and dotfiles</span>
</div>
<div class="project_item">
<span class="project_name">this site</span>
<span class="project_desc"
>basic html and css, i think it looks pretty ok
:-)</span
>
</div>
</div>
</div>
<div class="site_footer">
<a
href="https://discord.com/users/735581916887121943"
title="discord"
><i class="fa-brands fa-discord"></i
></a>
<a href="https://github.com/GavinCoded" title="github"
><i class="fa-brands fa-github"></i
></a>
<a href="https://www.youtube.com/@GavinStrikes" title="youtube"
><i class="fa-brands fa-youtube"></i
></a>
<a href="https://x.com/GavinStrikes" title="x"
><i class="fa-brands fa-x-twitter"></i
></a>
<a href="https://gavinstrikes.info/donate" title="donate"
><i class="fa-brands fa-bitcoin"></i
></a>
</div>
<script src="js/counter.js"></script>
<script src="js/status.js"></script>
<script src="js/oneko.js" data-cat="oneko.gif"></script>
</body>
</html>