diff --git a/images/Profile2.png b/images/Profile2.png
new file mode 100644
index 0000000..130285c
Binary files /dev/null and b/images/Profile2.png differ
diff --git a/images/Profile3.png b/images/Profile3.png
new file mode 100644
index 0000000..4c0b6e9
Binary files /dev/null and b/images/Profile3.png differ
diff --git a/index.html b/index.html
index 88888f7..b871209 100644
--- a/index.html
+++ b/index.html
@@ -7,30 +7,31 @@
-
Nye Evans Portfolio
+
+
- Rosia E Evans
+
Portfolio
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.
+ Most of my work is software based, with Python and C++ along with some web-development experience in html, css, javascript and typescript.
-
+
Most of my current work 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 schools coding club for over 6 years and having tutored
+ 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 here.
@@ -50,8 +51,9 @@
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.
+ 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.
+
@@ -61,9 +63,10 @@
-
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.
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.
+
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.
+ 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.
+
@@ -73,7 +76,9 @@
-
"A project I created with a friend to help us gain a better understanding of pygame.
This was a basic tower defence game but featured a fully scalable and customisable
+
One of my first projects, this was created with a friend to help us gain a better understanding of python.
This was a basic tower defence game but featured a fully scalable and
+ level design system.
+
@@ -91,13 +96,13 @@
- Twitter
+ Twitter
 
Email
 
- Github
+ Github
 
- CV
+ CV
diff --git a/pages/siteTitle.js b/pages/siteTitle.js
new file mode 100644
index 0000000..dec1e7c
--- /dev/null
+++ b/pages/siteTitle.js
@@ -0,0 +1,29 @@
+//taken and reworked from here https://www.labnol.org/visitor-country-ip-address-200822
+//original code by Amit Agarwal
+
+
+const checkCountry = () => {
+ return new Promise((resolve, reject) => {
+ window
+ .fetch("https://ip2c.org/self")
+ .then((data) => data.text())
+ .then((data) => {
+ const [status, country] = String(data).split(";");
+ if (status !== "1") {
+ console.log("Unable to fetch country, defaulting to normal title");
+ }
+
+ if (country != "UK"){
+ document.title = "Rosia E Evans Portfolio"
+ document.getElementById("siteTitle").innerHTML = "Rosia E Evans"
+ document.getElementById("profileImage").src = "images/Profile3.png"
+ }else{
+ document.title = "Nye Evans Portfolio"
+ document.getElementById("siteTitle").innerHTML = "Nye Evans"
+ document.getElementById("profileImage").src = "images/Profile2.png"
+ }
+ })
+ })
+};
+
+checkCountry();