Portfolio/index.html

155 lines
7.4 KiB
HTML
Raw Normal View History

<!doctype html>
2021-01-07 10:35:57 +00:00
<HTML>
<header>
2021-09-17 23:22:11 +01:00
<link rel = "stylesheet" href = "pages\basic.css">
2021-01-07 10:35:57 +00:00
<link rel = "stylesheet" href = "pages\mainpage.css">
<link rel = "stylesheet" href = "pages\effects.css">
<link rel = "icon" href = "images\Icon.ico">
2021-01-07 10:35:57 +00:00
<meta charset="UTF-8">
2021-06-18 16:44:06 +01:00
<script src = "scripts\autoScroll.js" type = "module"></script>
<title>Nye Evans Portfolio</title>
2021-01-07 10:35:57 +00:00
</header>
<body>
<div id = "introScreenSpace">
2021-09-17 23:22:11 +01:00
<h1 id = "Title">
2021-07-09 00:57:24 +01:00
<div id = "siteTitle">Nye "Ro" Evans</div>
<div class = "subTitle">Portfolio</div>
2021-01-07 10:35:57 +00:00
</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++ along with some web-development experience in HTML, CSS, JavaScript and TypeScript.
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;">
<div class = "profileImage orangeBorder" style = "margin: 0 auto;">
<img src = "images/Profile3.png" alt = "me" style = "border-radius: 2px; object-fit: cover; width: 100%; height:100%">
</div>
2021-01-07 10:35:57 +00:00
</div>
<div class = "textBox" style = "margin-bottom: 5vh;">
Most of my experience relates to personal projects, however I have previously done work experience at JBA Consulting writing a
program to convert their SQL databases to Excel spreadsheets. I also often teach Python and HTML, having taught many students at my school's 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 larger projects here:
2021-09-16 15:03:14 +01:00
<div style = "font-size: 60%;">hover over, or click, a project to find out more</div>
2021-01-07 10:35:57 +00:00
</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 = "gallery">
<div class = "galleryItem">
2021-09-16 15:03:14 +01:00
<a href = "./pages/gallery/epq-project/epq-project.html" class = "galleryImageContainer galleryLink">
<img src = "./pages/gallery/epq-project/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
2021-09-16 15:03:14 +01:00
</a>
<img src = "./images/popup-tongue.png" class = "popupTongue">
</div>
2021-09-16 15:03:14 +01:00
<div class = "galleryPopup">
<img src = "./pages/gallery/epq-project/projectHeaderImage.png" class = "popupImage" style = "object-position: center;">
<div class = "popupTextContainer">
<p class = "galleryTitle">VR physics engine</p>
<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. 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>
</div>
2021-09-16 15:03:14 +01:00
</div>
<div class = "galleryItem">
2021-09-16 15:03:14 +01:00
<a href = "./pages/gallery/mind-map/mind-map.html" class = "galleryImageContainer galleryLink">
<img src = "./pages/gallery/mind-map/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
</a>
<img src = "./images/popup-tongue.png" class = "popupTongue">
</div>
2021-09-16 15:03:14 +01:00
<div class = "galleryPopup">
<img src = "./pages/gallery/mind-map/projectHeaderImage.png" class = "popupImage" style = "object-position: center;">
<div class = "popupTextContainer">
2021-09-16 15:03:14 +01:00
<p class = "galleryTitle">Unity based Mind Map software</p>
2021-09-16 15:03:14 +01:00
<p class = "galleryCaption">A project done as my final piece for my A-level computer science course. <br> <br> This was a program designed to create mind maps, it could have nodes made, and linked, have images added and
included a pen tool to allow the user to draw notes on top of the mind maps. It also had a fully functional undo and redo system and the ability to save and load files.
</p>
</div>
2021-09-16 15:03:14 +01:00
</div>
2021-05-08 17:00:29 +01:00
<div class = "galleryItem">
2021-09-16 15:03:14 +01:00
<a href = "./pages/gallery/cat-tower-defence/cat-tower-defence.html" class = "galleryImageContainer galleryLink">
<img src = "./pages/gallery/cat-tower-defence/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
</a>
<img src = "./images/popup-tongue.png" class = "popupTongue">
</div>
2021-09-16 15:03:14 +01:00
<div class = "galleryPopup">
<img src = "./pages/gallery/cat-tower-defence/projectHeaderImage.png" class = "popupImage" style = "object-position: center;">
<div class = "popupTextContainer">
2021-09-16 15:03:14 +01:00
<p class = "galleryTitle">Tower defence game</p>
2021-09-16 15:03:14 +01:00
<p class = "galleryCaption">One of my first projects, this was created with a friend to help us gain a better understanding of python. <br><br> This was a basic tower defence game but featured a fully scalable
level design system.
</p>
</div>
2021-09-16 15:03:14 +01:00
</div>
2021-01-07 10:35:57 +00:00
<div class = "galleryItem">
2021-09-16 15:03:14 +01:00
<a href = "./pages/gallery/aardvark-work/aardvark-work.html" class = "galleryImageContainer galleryLink">
<img src = "./pages/gallery/aardvark-work/projectHeaderImage.png" class = "galleryImage" style = "object-position: center;">
</a>
<img src = "./images/popup-tongue.png" class = "popupTongue">
</div>
2021-09-16 15:03:14 +01:00
<div class = "galleryPopup">
<img src = "./pages/gallery/aardvark-work/projectHeaderImage.png" class = "popupImage" style = "object-position: center;">
<div class = "popupTextContainer">
2021-09-16 15:03:14 +01:00
<p class = "galleryTitle">Work on Aardvark XR</p>
2021-09-16 15:03:14 +01:00
<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.<br><br>
Over the course of its release I have attended its first hackathon and continued to support it long afterwards, having worked both on my own and with other developers to create apps
for the system to help it gain traction.
</p>
</div>
2021-09-16 15:03:14 +01:00
</div>
</div>
2021-09-17 23:22:11 +01:00
<div id="galleryOutroLink">
<a href = "pages/AllProjects.html">See all my projects here</a>
</div>
2021-01-07 10:35:57 +00:00
<div class = "textBox" id= "outroText">
I hope you like my work! If you ever want to contact me, my Email, Github and Social Medias can be found below.
2021-01-07 10:35:57 +00:00
</div>
<div id = "socialBar">
2021-04-21 23:31:43 +01:00
<a href = "https://twitter.com/Wi__Ro" 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;
<a href="https://github.com/Wil-Ro" target="_blank">Github</a>
&NonBreakingSpace;
<a href = "https://dev.to/willowro" target="_blank">Dev.to</a>
2021-01-15 21:20:36 +00:00
&NonBreakingSpace;
<a href = "./pages/CVPage.html">CV</a>
2021-01-07 10:35:57 +00:00
</div>
</body>
</HTML>