-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.html
More file actions
83 lines (67 loc) · 2.83 KB
/
aboutme.html
File metadata and controls
83 lines (67 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About Me</title>
<link rel="stylesheet" href="style.css" />
</head>
<header>
<a href='index.html'>
<img src="icons/logo.png" alt="Website Logo" class="logo">
</a>
<a href="https://github.com/AndrewWhatling" target="_blank">
<img src="icons/github.svg" alt="Github link" class="github">
</a>
<a href="https://www.linkedin.com/in/andrew-whatling-2704a6259" target="_blank">
<img src="icons/linkedin.svg" alt="Linkedin link" class="linkedin">
</a>
</header>
<body>
<div class="container about-container">
<div class="about-text box">
<h2>About Me</h2>
<p>
<br>
Hey there! I'm Andrew. I am currently in my final year of studying Visual Effects at the University
of Hertfordshire, and I aspire to work in R&D within the Visual Effects industry.
My key area of interest is in the development of Proprietary software, especially when it
comes to Rendering. Alongside this I love creating new tools and solutions to solve problems
artists are experiencing. The work I do enables artists to do what they do best, while minimising
the friction they experience with the tools and software they work with on a daily basis.
<br><br>
</p>
<p>
My main DCC of choice is Houdini, and I'm familiar with Nuke and Maya. I'm most confident in
Python and VEX, and I'm currently learning C++. I have experience in offline rendering development,
DCC tool development, HDA Development, and performance optimization. I really enjoy diving straight
into the puzzles that this industry presents, and I love the mixture of creativity and technical
innovation that Visual Effects is so well known for.
</p>
<p>
<br>
Outside of work, I enjoy listening to music, trying out silly coding ideas, going to the gym,
researching new things, ricing linux, and hanging out with my friends/colleagues.
</p>
</div>
<div class="about-photo">
<img src="images/profile/pfp.jpg" alt="Photo of me" />
</div>
</div>
</body>
<footer>
<div class="software-logo-container">
<img src="icons/houdini.svg" alt="Houdini Logo" class="software-logo">
<img src="icons/maya.svg" alt="Maya Logo" class="software-logo">
<img src="icons/nuke.svg" alt="Nuke Logo" class="software-logo">
</div>
<p>
Contact available at: Andrew-whatling-vfx@hotmail.com
</p>
<div class="software-logo-container">
<img src="icons/python.svg" alt="Python Logo" class="software-logo">
<img src="icons/cpp3.svg" alt="C++ Logo Logo" class="software-logo">
<img src="icons/unreal-engine.svg" alt="Unreal-Engine Logo" class="software-logo">
</div>
</footer>
</html>