-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (100 loc) · 4.33 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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<!-- Browser standards -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" sizes="any" href="/favicon.svg">
<link rel="icon" type="image/png" sizes="256x256" href="/favicon.png">
<!-- CSS -->
<link rel="stylesheet" href="main.css" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="twemoji.css" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<!-- SEO -->
<title>sys-256 | Bram</title>
<meta name="description" content="Hi there! Click the link above to view my website, my projects or contact me!">
<meta name="author" content="sys-256 (Bram)">
<meta name="keywords" content="bram, Bram, sys-256, sys-256.me">
<meta property="og:title" content="sys-256 | Bram">
<meta property="og:description"
content="Hi there! Click the link above to view my website, my projects or contact me!">
<meta property="og:url" content="https://sys-256.me">
<meta property="og:locale" content="en_US">
<meta property="og:image" content="/favicon.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="sys-256.me">
<!-- Twitter -->
<meta name="twitter:title" content="sys-256 | Bram">
<meta name="twitter:description"
content="Hi there! Click the link above to view my website, my projects or contact me!">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="/favicon.png">
</head>
<body>
<div class="main">
<div class="hi-there">
<h1><span class="hi-there-hi">Hi there!</span></h1>
<h3 class="hi-there-text">
Hey, welcome to my website! I'm Bram, online commonly known as sys-256. I like coding in
TypeScript, Python, and a bit of C/C++ sometimes. My passion is coding full-stack web applications,
particularly with SQL-powered databases.<br><br>
I've recently taken an interest in GUI applications and machine learning, so hit me up if you've
got a project you think I'd be interested in! I decided to create this website as I wanted to have a
nice-looking portfolio and a place to show ways to contact me.
</h3>
</div>
<div class="projects">
<h1>Projects</h1>
<a href="//github.com/sys-256/Duino-JS" target="_blank" rel="noopener noreferrer">
<h3>Duino-JS, a JavaScript miner to mine Duino-Coin.</h3>
</a>
<a href="//github.com/bunkercoin/bunkertip" target="_blank" rel="noopener noreferrer">
<h3>BunkerTip, the official Bunkercoin tipbot.</h3>
</a>
<a href="//github.com/sys-256/boiurl" target="_blank" rel="noopener noreferrer">
<h3>boiurl, a simple, minimalistic URL shortener.</h3>
</a>
<a href="//github.com/sys-256/barbdb" target="_blank" rel="noopener noreferrer">
<h3>BarbDB, a database engine written in Golang.</h3>
</a>
<a href="//github.com/sys-256/sys-256.me" target="_blank" rel="noopener noreferrer">
<h3>sys-256.me, this website!</h3>
</a>
</div>
<div class="contact">
<h1>Contact</h1>
<h2>
<i class="fa-brands fa-discord"></i>
<a href="//discord.com/users/832540286923177994/" target="_blank" rel="noopener noreferrer">
Discord: sys256
</a>
<br><br>
<i class="fa-solid fa-comments"></i>
<a href="//matrix.to/#/@sys-256:matrix.org" target="_blank" rel="noopener noreferrer">
Matrix: @sys-256 on matrix.org
</a>
<br><br>
<i class="fa-brands fa-github"></i>
<a href="//github.com/sys-256/" target="_blank" rel="noopener noreferrer">
GitHub: sys-256
</a>
<br><br>
<i class="fa-brands fa-steam"></i>
<a href="//steamcommunity.com/id/sys-256/" target="_blank" rel="noopener noreferrer">
Steam: sys-256
</a>
</h2>
</div>
<footer>
<h3>© sys-256 (Bram) - 2021-2023</h3>
<h4>Handmade with <i class="twemoji twemoji-sparkling-heart"></i> at <i
class="twemoji twemoji-house-with-garden"></i> by me, no frameworks were used.</h4>
</footer>
</div>
</body>
</html>