-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (75 loc) · 4.57 KB
/
index.html
File metadata and controls
93 lines (75 loc) · 4.57 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
<!-- Filename: index.html -->
<!-- Purpose: Personal home page -->
<!-- Created by George Bișoc (GeoB99) -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang = "en">
<head>
<meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8">
<title>GeoB99 - Homepage</title>
<link href = "StyleSheet.css" rel = "StyleSheet" type = "text/css">
<link rel = "icon" href = "images/Homepage-pic.png">
</head>
<body>
<!-- Top title -->
<div id = "Header-Top">
<h1>GeoB99's Homepage</h1>
<br>
<h2>Welcome!</h2>
</div>
<!-- Add a separator -->
<hr id = "thick">
<br>
<div>
<h1> <u>Introduction</u></h1>
<p>
Hello! I'm a 27 years old guy living in Italy whom goes by the alias as GeoB99 around the Internet. I'm a self-taught coder with C being the programming language of interest
and choice for me, but I also have some bits of expertise in C++, Lua (a scripting language) and web development languages (HTML and CSS). I'm also a multilingual person which I speak
the following languages: English, Italian and Romanian (whose third language being my mother tongue).
Apart from coding I do also have several hobbies such as listening to music and whatnot. As main education I studied automotive engineering and worked as an automotive technician. As my current career I work as a
CNC machinist whose my job is to operate CNC machines for the production of heating elements thorough the analysis and execution of technical drawing sketches.
</p>
<h1> <u>Work & Contributions</u></h1>
<p>
The first contribution I've made in terms of coding is writing some scripts written in the Lua language for a 2D top-down shooter game called CS2D in 2015. At that time I began dwelling
and exploring the realm of coding. I programmed the first simple software in C, a CLI (Command Line Interface) calculator.
</p>
<p>
In 2017 I discovered a project going by the name as ReactOS and in the same year I contributed for the first time translating some built-in software programs of the project in Romanian and
Italian. Later on I began learning how to use the Windows API, understanding the inner architecture and internals of Windows Server 2003 and whatnot. I've been a maintainer for a little while
for On-Screen Keyboard and developed a built-in program for the project for the first time -- the <a href="https://github.com/reactos/reactos/tree/master/base/applications/utilman">Accessibility Utility Manager</a>.
Currently my main area of interest is NT kernel development and NTDLL APITESTs testcases infrastructure. Speaking of which, I publish tutorial articles regarding NT kernel development internals.
You can find my commit contributions <a href = "https://github.com/reactos/reactos/commits?author=GeoB99">in this page</a>.
</p>
<h1> <u>Contact</u></h1>
<p>
You can reach me via Discord, <b>geob99</b>. I'll make sure to answer your replies in time but in case I can't, please be patient as I'm busy with my real life stuff.
I reserve the right to block anyone who spams me useless crap so be wise what you're trying to post to me.
</p>
<h1> <u>Miscellaneous sites</u></h1>
<!-- Move with a newline so the border of the table won't touch the underlined header subtitle -->
<br>
<table>
<tr>
<th>Link</th>
<th>Description</th>
</tr>
<tr>
<th><a href = "pages/tutorials/ros-tutorials.html">ReactOS Tutorials</a></th>
<th>Section for hosting tutorials regarding ReactOS development</th>
</tr>
<tr>
<th><a href = "pages/doc/documentation.html">Documentation Internals</a></th>
<th>A small knowledge base of documentation internals of Windows</th>
</tr>
<tr>
<th><a href = "pages/nt-dev/nt-dev-intro.html">Introduction to the NT kernel development</a></th>
<th>Articles and guidelines on getting you versed into the development of ReactOS' NT kernel</th>
</tr>
</table>
</div>
<footer>
<p>© GeoB99's Homepage, 2020-2026 | HTML 4.01 powered | <a href = "https://github.com/GeoB99">GitHub</a></p>
</footer>
</body>
</html>