Portfolio/index.html

104 lines
5.4 KiB
HTML
Raw Normal View History

2021-01-07 10:35:57 +00:00
<HTML>
<header>
<link rel = "stylesheet" href = "pages\mainpage.css">
<link rel = "icon" href = "images\Icon.ico">
2021-01-07 10:35:57 +00:00
<meta charset="UTF-8">
<script src = "pages\gallery.js" type = "module"></script>
<title>Nye Evans Portfolio</title>
</header>
<body>
<div id = "introScreenSpace">
<h1>
Nye Evans
<div style = "font-size: 30%; padding-top: 10;">Portfolio</div>
</h1>
</div>
<div class = "textBox">
2021-01-15 21:20:36 +00:00
An aspiring software developer who specialises in C++, C# and Python, with an intrest in lower level langauges like Assembly;
Most of my work is software based, with Python and C++, although I sometimes try game design with smalls groups of friends, in Unity, Unreal Engine and additionally, some solo level design in Source.
2021-01-15 21:20:36 +00:00
2021-01-07 10:35:57 +00:00
</div>
2021-01-15 21:20:36 +00:00
<div style = "text-align: center;">
2021-01-07 10:35:57 +00:00
<img src = "images\ProfilePlaceholder.png" class = "profileImage orangeBorder">
</div>
<div class = "textBox" style = "margin-bottom: 5vh;">
2021-02-03 11:45:23 +00:00
Most of my current work experience relates to personal projects, however I have previously done work experience at jba consulting writing a
2021-01-15 21:20:36 +00:00
program to convert their sql databases to excel spreadsheets. I also often teach Python and HTML, having taught many students at my schools coding club for over 6 years and having tutored
GCSE students briefly. You can see my full CV <a href = "pages/CVPage.html">here</a>.
2021-01-07 10:35:57 +00:00
</div>
<div class = "textBox" id = "galleryHeader">
check out my projects here:
<div style = "font-size: 60%;">click a project to find out more</div>
</div>
<!-- gallery slides defined here, originally we had one slide and just changed its values but loading images is slow, easier to load them before hand and just hide or show them-->
<div class = "programGallery">
<p class = "galleryTitle">VR interaction system and physics engine</p>
<a href = "./pages/gallery/epq-project/epq-project.html" class = "galleryLink">
<img src = "./pages/gallery/epq-project/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
</a>
<p class = "galleryCaption">A project done for my EPQ, during post-16, where I aimed to create a virtual reality environment where the user could grab and interact with objects in a semi-physics based
environment.<br><br>This system was my introduction to Unreal Engine and mainly used its \"Blueprint\" visual language, however I later used C++ to try and add my own physics
to it.</p>
<button class = "galleryLeftArrow" onClick = "window.parent.lastSlide();"></button>
<button class = "galleryRightArrow" onClick = "window.parent.nextSlide();"></button>
</div>
<div class = "programGallery">
<p class = "galleryTitle">Work on Aardvark XR</p>
<a href = "./pages/gallery/aardvark-work/aardvark-work.html" class = "galleryLink">
<img src = "./pages/gallery/aardvark-work/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
2021-01-07 10:35:57 +00:00
</a>
<p class = "galleryCaption">Aardvark is a web-based virtual reality system which allows users to create and share web apps which are overlayed on top of the users vr experience, completely separate from the program they are currently running.
This allows for an incredibly flexible in-vr toolset that can be accessed within any virtual reality program. <br><br>Over the course of its release I have attended its first hackathon and added to its development in multiple
ways whether through designing 3D models for other developers apps or creating my own.</p>
2021-01-07 10:35:57 +00:00
<button class = "galleryLeftArrow" onClick = "window.parent.lastSlide();"></button>
<button class = "galleryRightArrow" onClick = "window.parent.nextSlide();"></button>
</div>
<div class = "programGallery">
<p class = "galleryTitle">Tower defence game</p>
<a href = "./pages/gallery/cat-tower-defence/cat-tower-defence.html" class = "galleryLink">
<img src = "./pages/gallery/cat-tower-defence/projectHeaderImage.png" class = "galleryImage" style = "object-position: top;">
</a>
<p class = "galleryCaption">"A project I created with a friend to help us gain a better understanding of pygame. <br><br> This was a basic tower defence game but featured a fully scalable and customisable</p>
<button class = "galleryLeftArrow" onClick = "window.parent.lastSlide();"></button>
<button class = "galleryRightArrow" onClick = "window.parent.nextSlide();"></button>
</div>
2021-01-07 10:35:57 +00:00
<div class = "textBox" id= "outroText">
2021-01-15 21:20:36 +00:00
I hope you like my work! If you ever want to contact me, my twitter, email and github can be found below.
2021-01-07 10:35:57 +00:00
</div>
<div id = "socialBar">
2021-01-15 21:20:36 +00:00
<!-- please dont follow me if you see this, i want this to be a work only twitter account,
2021-01-07 10:35:57 +00:00
<a href = "https://twitter.com/Wi__Ro" target="_blank" style = "color:#ffd256;">Twitter</a>
-->
2021-01-15 21:20:36 +00:00
<a href = "pages/NoTwitter.html" target="_blank">Twitter</a>
2021-01-07 10:35:57 +00:00
&NonBreakingSpace;
2021-01-15 21:20:36 +00:00
<a href="mailto:WillowRo@outlook.com" target="_blank">Email</a>
2021-01-07 10:35:57 +00:00
&NonBreakingSpace;
2021-01-15 21:20:36 +00:00
<a href="https://github.com/WillowRo" target="_blank">Github</a>
&NonBreakingSpace;
<a href = "pages/CVPage.html">CV</a>
2021-01-07 10:35:57 +00:00
</div>
</body>
</HTML>