Skip to content

Commit

Permalink
updated a bunch of bits!
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexBeesley committed Dec 25, 2023
1 parent 8ecc0b3 commit b48a99b
Show file tree
Hide file tree
Showing 7 changed files with 336 additions and 20 deletions.
6 changes: 3 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { BrowserRouter as Router, Routes, Route, BrowserRouter } from "react-rou
import {useState, useEffect} from "react";
import { Helmet } from "react-helmet";
import Home from "./Pages/Home";
import Dotnetandcsharp from "./Pages/dotnet-and-csharp";
import Dotnetandcsharp from "./Pages/DotNetAndCsharp";
import WebDev from "./Pages/WebDev";
import DevOps from "./Pages/devops";
import MachineLearning from "./Pages/machinelearning";
import DevOps from "./Pages/DevOps";
import MachineLearning from "./Pages/MachineLearning";
import ErrorPage from "./Pages/ErrorPage";
import Nav from "./Components/nav";
import DarkModeToggle from "./Components/darkmodetoggle";
Expand Down
2 changes: 1 addition & 1 deletion src/Components/darkmodetoggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function DarkModeToggle () {
data = JSON.parse(data);
}
const [toggle, setToggle] = useState(
() => data || false
() => data || true
);

useEffect(() => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function Home() {
<div className={Styles.col2}>
<Card title="About me">
<p>
I am a 22-year-old .NET Developer Intern at <a className={Styles.inlineLink} href="https://www.thepensionsregulator.gov.uk/" target="_blank" title="TPR">The Pensions Regulator</a>. As a self-taught programmer, I have a passion for new and emerging technologies. My interest in computing began at the age of 12 when my parents gifted me one of the very first editions of the <a className={Styles.inlineLink} href="https://www.raspberrypi.org/" target="_blank" title="What is a Raspberry Pi?">Raspberry Pi</a>, which came out in February 2012. The Raspberry Pi was signed by the Raspberry Pi Foundation's CEO and founder, David Breben. At that time, there was limited support for the device, and even getting it to boot off an SD Card preloaded with Raspbian, a Linux flavor for the Pi based on the Debian distro, was a challenge for a 12-year-old. However, I embraced the challenge and enjoyed delving into the basics of Linux to make the most out of my Pi. This experience deeply inspired the direction of my academic career in the following years.
I am a 23-year-old Junior .NET Developer at <a className={Styles.inlineLink} href="https://www.thepensionsregulator.gov.uk/" target="_blank" title="TPR">The Pensions Regulator</a>. As a self-taught programmer, I have a passion for new and emerging technologies. My interest in computing began at the age of 12 when my parents gifted me one of the very first editions of the <a className={Styles.inlineLink} href="https://www.raspberrypi.org/" target="_blank" title="What is a Raspberry Pi?">Raspberry Pi</a>, which came out in February 2012. The Raspberry Pi was signed by the Raspberry Pi Foundation's CEO and founder, David Breben. At that time, there was limited support for the device, and even getting it to boot off an SD Card preloaded with Raspbian, a Linux flavor for the Pi based on the Debian distro, was a challenge for a 12-year-old. However, I embraced the challenge and enjoyed delving into the basics of Linux to make the most out of my Pi. This experience deeply inspired the direction of my academic career in the following years.
</p>
<p>
In 2016, I taught myself basic Python and dabbled in HTML, CSS, and basic web development. I achieved an A grade in GCSE Computer Science and decided to fully focus on my passion. The following year, I pursued a BTEC in IT, during which I developed a strong interest in Artificial Intelligence and Machine Learning. The seemingly infinite potential of these cutting-edge technologies captivated me, and I decided to pursue a degree in <a className={Styles.inlineLink} href="https://www.brighton.ac.uk/courses/study/computer-science-with-artificial-intelligence-bsc-hons.aspx" target="_blank" title="Course overview">Computer Science with AI at Brighton University</a>. Over the course of my two years at university, I deepened my understanding of fundamental computing principles such as Binary Logic, Data Representation, Networking, the Software Development Cycle, and Cybersecurity. I also gained hands-on experience with technologies like Java, <a className={Styles.inlineLink} href="https://www.tensorflow.org/" target="_blank" title="What is TensorFlow?">TensorFlow</a>, and SQL.
Expand Down
Loading

0 comments on commit b48a99b

Please sign in to comment.