-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (113 loc) · 5.94 KB
/
index.html
File metadata and controls
116 lines (113 loc) · 5.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TexelBox - Home</title>
<meta name="description" content="Personal website/portfolio - game development, computer graphics, programming, etc.">
<meta name="keywords" content="">
<meta name="author" content="Aaron Hornby">
<!-- source: https://realfavicongenerator.net/ -->
<!--- NOTE: I generated the favicons by using the basic-logo-optimized.svg -->
<!--- NOTE: I think I have to place this in the head of every page -->
<!--- NOTE: I needed to removed the leading '/' from the hrefs (index.html, browserconfig.xml) for chrome to render favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=69Pl5Xkg0Q">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png?v=69Pl5Xkg0Q">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png?v=69Pl5Xkg0Q">
<link rel="manifest" href="site.webmanifest?v=69Pl5Xkg0Q">
<link rel="mask-icon" href="safari-pinned-tab.svg?v=69Pl5Xkg0Q" color="#2b5797">
<link rel="shortcut icon" href="favicon.ico?v=69Pl5Xkg0Q">
<meta name="apple-mobile-web-app-title" content="texelbox.com">
<meta name="application-name" content="texelbox.com">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
</head>
<body>
<div id="site-page">
<header id="site-header">
<h1><img src="assets/images/exports/basic-logo-optimized.svg" alt="TexelBox logo"> TEXELBOX - HOME</h1>
</header>
<nav id="site-nav">
<input id="hidden-toggle" type="checkbox">
<label for="hidden-toggle"></label>
<menu>
<a href="">HOME</a></li>
<a href="education.html">EDUCATION</a></li>
<a href="projects.html">PROJECTS</a></li>
<a href="https://github.com/TexelBox" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.youtube.com/@TexelBox" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://www.linkedin.com/in/aaron-hornby" target="_blank"><i class="fab fa-linkedin"></i></a>
</menu>
</nav>
<main id="site-main">
<img id="headshot" src="assets/images/headshot-512x512.jpg" alt="headshot of Aaron Hornby">
<div class="panel">
<section>
<h1 class="text-center">Welcome</h1>
<p>
Hi, my name is Aaron Hornby.
I'm a recent graduate from the University of Calgary with a B.Sc. in Computer Science.
I also earned concentrations in "Computer Game Development" and "Computer Graphics".
My main interests are in game development and developing desktop graphics applications using C++/OpenGL, but I'm always curious about learning about any modern tech stack.
I'm currently in the process of finishing up several large projects: GitHub template repositories for C++ and OpenGL that allow for easier entry for developers and Farmyard Fling - a Unity2D Android vertical platformer.
I also desire to keep improving my developed products through several pillars of usability: minimalism, intuition, accessibility, and performance.
</p>
<h2 class="text-center">Contact</h2>
<p>
If you want to contact me with any professional inquiry, please reach out via LinkedIn.
My resume, email address, and phone number should be publicly available there.
This requirement is to hopefully reduce the amount of spam I receive.
If you want to discuss anything related to one of my projects or wish to share something cool you've built, please feel free to email me.
Thank you!
</p>
</section>
<aside>
<h3 class="text-center">Recommended Tech</h3>
<ul>
<li><h4>General:</h4>
<ul>
<li>Windows 10 / WSL Ubuntu 18.04+ + VcXsrv (platform)</li>
<li>Hyper (terminal) + Git Bash / WSL Bash (shell)</li>
<li>Git (version-control system)</li>
<li>GitHub (repository host)</li>
<li>C++ (primary language)</li>
<li>CMake (build-system generator)</li>
<li>Visual Studio 2017+ (IDE)</li>
<li>Visual Studio Code / Vim (text editor)</li>
</ul>
</li>
<li><h4>Graphics:</h4>
<ul>
<li>OpenGL 3.3+ Core + GLSL, GLFW, glad, GLM, stb, Dear ImGui (libraries)</li>
</ul>
</li>
<li><h4>Testing:</h4>
<ul>
<li>doctest (library)</li>
<li>AppVeyor + Travis CI (continuous integration)</li>
</ul>
</li>
<li><h4>GameDev/Media:</h4>
<ul>
<li>Unity (game engine)</li>
<li>Blender (modeling, rigging, animation)</li>
<li>Inkscape (vector art)</li>
<li>Audacity (audio editing)</li>
<li>OBS Studio (screen recording)</li>
<li>OpenShot Video Editor (video editing)</li>
<li>FFmpeg (media conversion)</li>
</ul>
</li>
</ul>
</aside>
</div>
</main>
<footer id="site-footer">
<h6><em>Copyright © 2019-2025 Aaron Hornby. All rights reserved.</em></h6>
</footer>
</div>
</body>
</html>