From 934011b72f2ed0cf7be8f80c9a94a3b806c246db Mon Sep 17 00:00:00 2001 From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Date: Sun, 9 Mar 2025 15:31:25 +0000 Subject: [PATCH] feat: 2025 theme --- .vscode/settings.json | 5 +- ...formance-considerations-tcp-game-server.md | 2 - jsconfig.json | 4 +- src/components/Article/Article.jsx | 51 ++++--- src/components/Footer/Footer.jsx | 50 +++---- src/components/Footer/Footer.module.css | 7 - src/components/Grid/Grid.jsx | 11 -- src/components/Grid/Grid.module.css | 5 - src/components/Header/Header.jsx | 7 +- src/components/Header/Header.module.css | 10 +- src/components/Resume/Resume.jsx | 75 ++++++----- src/components/Resume/Resume.module.css | 25 ---- .../StaticContentList/StaticContentList.jsx | 19 +++ src/layouts/DefaultLayout/DefaultLayout.jsx | 4 +- .../DefaultLayout/DefaultLayout.module.css | 9 -- src/lib/content.js | 14 +- src/pages/_document.js | 2 +- src/pages/about/index.js | 73 ++++++++++ src/pages/cv/index.js | 13 +- src/pages/index.js | 98 ++------------ src/pages/writing/index.js | 36 ++--- src/styles/font.css | 59 --------- src/styles/globals.css | 125 ------------------ src/styles/vars.css | 7 - 24 files changed, 227 insertions(+), 484 deletions(-) delete mode 100644 src/components/Grid/Grid.jsx delete mode 100644 src/components/Grid/Grid.module.css create mode 100644 src/components/StaticContentList/StaticContentList.jsx create mode 100644 src/pages/about/index.js delete mode 100644 src/styles/font.css delete mode 100644 src/styles/vars.css diff --git a/.vscode/settings.json b/.vscode/settings.json index 3c021ae..cdfed4b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -35,5 +35,8 @@ "[javascriptreact]": { "editor.defaultFormatter": "vscode.typescript-language-features" }, - "liveServer.settings.multiRootWorkspaceName": "www-aaronjy-2024" + "liveServer.settings.multiRootWorkspaceName": "www-aaronjy-2024", + "[css]": { + "editor.defaultFormatter": "vscode.css-language-features" + } } \ No newline at end of file diff --git a/content/writing/performance-considerations-tcp-game-server.md b/content/writing/performance-considerations-tcp-game-server.md index 381d9dc..4616f6f 100644 --- a/content/writing/performance-considerations-tcp-game-server.md +++ b/content/writing/performance-considerations-tcp-game-server.md @@ -4,8 +4,6 @@ pubdate: 2025-02-23T21:12:37.864Z desc: While writing a TCP game server in dotnet for a hobby project, I learned a few ways to improve the efficiency and scalability of the server while running into some performance issues. Here's what I learned! --- -# Performance considerations when writing a TCP game server in dotnet - While writing a TCP game server in dotnet for a hobby project (check it out [here](https://github.com/AaronJY/GServer)), I learned a few ways to improve the efficiency and scalability of the server while running into some performance issues. Here's what I learned! diff --git a/jsconfig.json b/jsconfig.json index b8d6842..3931e38 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -2,6 +2,8 @@ "compilerOptions": { "paths": { "@/*": ["./src/*"] - } + }, + "checkJs": true, + "jsx": "preserve" } } diff --git a/src/components/Article/Article.jsx b/src/components/Article/Article.jsx index 5242b93..7d19e4b 100644 --- a/src/components/Article/Article.jsx +++ b/src/components/Article/Article.jsx @@ -2,37 +2,32 @@ import { formatDate } from '@/lib/helpers' import { NextSeo } from 'next-seo' import Link from 'next/link' import React from 'react' -import * as feather from 'feather-icons' -function Article ({ attributes, html }) { +function Article({ attributes, html }) { return ( -
- +

{attributes.title}

+
+ -
- -

- - Go back -

- -

{attributes.title}

-

{attributes.desc}

- {attributes.pubdate &&

{formatDate(attributes.pubdate)}

} -
-
-
-
+ /> +
+ Back... + {attributes.pubdate &&

{formatDate(attributes.pubdate)}

} +
+
+ + + ) } diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index 00e45ac..b16009c 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -2,47 +2,29 @@ import React from 'react' import style from './Footer.module.css' -function Footer () { +function Footer() { return (
+ +
+ 2025 Aaron Yarborough +
- + ) } diff --git a/src/components/Footer/Footer.module.css b/src/components/Footer/Footer.module.css index 6afd290..e69de29 100644 --- a/src/components/Footer/Footer.module.css +++ b/src/components/Footer/Footer.module.css @@ -1,7 +0,0 @@ -.footer nav:first-child a { - text-transform: lowercase; -} - -.footer nav li { - margin-bottom: 0; -} diff --git a/src/components/Grid/Grid.jsx b/src/components/Grid/Grid.jsx deleted file mode 100644 index 9a2433f..0000000 --- a/src/components/Grid/Grid.jsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' - -import style from './Grid.module.css' - -function Grid ({ children }) { - return ( -
{children}
- ) -} - -export default Grid diff --git a/src/components/Grid/Grid.module.css b/src/components/Grid/Grid.module.css deleted file mode 100644 index 6b9bc90..0000000 --- a/src/components/Grid/Grid.module.css +++ /dev/null @@ -1,5 +0,0 @@ -.grid { - display: grid; - grid-template-columns: repeat(3, 1fr); - gap: 32px; -} \ No newline at end of file diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx index 8bd5112..017519f 100644 --- a/src/components/Header/Header.jsx +++ b/src/components/Header/Header.jsx @@ -7,9 +7,10 @@ function Header () { return (
) diff --git a/src/components/Header/Header.module.css b/src/components/Header/Header.module.css index de48d9b..65d48fd 100644 --- a/src/components/Header/Header.module.css +++ b/src/components/Header/Header.module.css @@ -1,9 +1,3 @@ -.header nav { - display: flex; - justify-content: center; - gap: 20px; -} - -.header a { - text-transform: lowercase; +.header { + margin-top: 20px; } \ No newline at end of file diff --git a/src/components/Resume/Resume.jsx b/src/components/Resume/Resume.jsx index d216210..d499d47 100644 --- a/src/components/Resume/Resume.jsx +++ b/src/components/Resume/Resume.jsx @@ -2,7 +2,7 @@ import React from 'react' import style from './Resume.module.css' -function Resume ({ +function Resume({ competencies, education, certifications, @@ -11,35 +11,20 @@ function Resume ({ }) { return (
-
-

Core competencies

- - -

Certifications

- - -

Languages

- - -

Education history

-

{education}

-
+ )} +
  • Competencies
  • +
  • Certifications
  • +
  • Languages
  • +
  • Education
  • +
    -

    Professional experience

    +

    Professional experience

    {experience.map((exp, i) => ( ))}
    +
    +

    Competencies

    + + +

    Certifications

    + + +

    Languages

    + + +

    Education

    +

    {education}

    +
    +
    ) } -export default Resume +export default Resume; -function WorkExperience ({ position, employer, start, end, children }) { +function WorkExperience({ position, employer, start, end, children }) { return (
    -

    +

    {position}
    {employer} diff --git a/src/components/Resume/Resume.module.css b/src/components/Resume/Resume.module.css index aa23271..e69de29 100644 --- a/src/components/Resume/Resume.module.css +++ b/src/components/Resume/Resume.module.css @@ -1,25 +0,0 @@ -.cv { - display: flex; - flex-direction: row; - gap: 25px; -} - -.cv > div:first-child { - flex: 1; -} - -.cv > div:last-child { - flex: 2; -} - -.cv .work-experience >div:first-child { - display: flex; - align-items: center; - justify-content: space-between; -} - -@media (max-width: 768px) { - .cv { - flex-direction: column; - } -} \ No newline at end of file diff --git a/src/components/StaticContentList/StaticContentList.jsx b/src/components/StaticContentList/StaticContentList.jsx new file mode 100644 index 0000000..b1dccd4 --- /dev/null +++ b/src/components/StaticContentList/StaticContentList.jsx @@ -0,0 +1,19 @@ +import { formatDate } from "@/lib/helpers"; +import Link from "next/link"; + +export default function StaticContentList({ entries, urlPrefix }) { + return ( + + + {entries.map((e) => ( + + + + + ))} + +
    {!!e.attributes.pubdate && {formatDate(e.attributes.pubdate)}} + {e.attributes.title} +
    + ) +} \ No newline at end of file diff --git a/src/layouts/DefaultLayout/DefaultLayout.jsx b/src/layouts/DefaultLayout/DefaultLayout.jsx index 4b13d13..8800832 100644 --- a/src/layouts/DefaultLayout/DefaultLayout.jsx +++ b/src/layouts/DefaultLayout/DefaultLayout.jsx @@ -10,11 +10,11 @@ function DefaultLayout ({ children }) {
    - +
    -
    {children}
    + <>{children}
    ) diff --git a/src/layouts/DefaultLayout/DefaultLayout.module.css b/src/layouts/DefaultLayout/DefaultLayout.module.css index 3a2e8ac..e69de29 100644 --- a/src/layouts/DefaultLayout/DefaultLayout.module.css +++ b/src/layouts/DefaultLayout/DefaultLayout.module.css @@ -1,9 +0,0 @@ -.layout { - display: flex; - flex-direction: column; - min-height: 100dvh; -} - -.layout main { - flex-grow: 1; -} \ No newline at end of file diff --git a/src/lib/content.js b/src/lib/content.js index 2718cf9..18d4ad3 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -52,11 +52,11 @@ export function getStaticEntryProps (contentPath, { params }) { return { props: { ...entry, attributes } } } -export function getStaticEntryListProps (contentPath, urlPrefix) { - const fun = fs.readdirSync(contentPath, { withFileTypes: true }) - const entries = fun.map((dirent) => +export function getStaticEntries(contentPath) { + const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true }); + return directoryItems.map((dirent) => getMarkdownEntry(`${dirent.path}/${dirent.name}`) - ).sort((a, b) => new Date(b.attributes.pubdate) - new Date(a.attributes.pubdate)) - - return { props: { entries, urlPrefix } } -} + ).sort((a, b) => + new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime() + ); +} \ No newline at end of file diff --git a/src/pages/_document.js b/src/pages/_document.js index d679015..91f23cc 100644 --- a/src/pages/_document.js +++ b/src/pages/_document.js @@ -4,7 +4,7 @@ export default function Document () { return ( - +
    diff --git a/src/pages/about/index.js b/src/pages/about/index.js new file mode 100644 index 0000000..0374c96 --- /dev/null +++ b/src/pages/about/index.js @@ -0,0 +1,73 @@ +import ExternalLink from "@/components/ExternalLink/ExternalLink"; +import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout"; + +export default function About() { + return ( + +

    About me

    +

    Where to find me

    +
    + +
      +
    • + + + Letterboxd + + {' '} + is a social platform for film lovers to rate, review, and discover + movies, akin to "Goodreads for film." +
    • +
    • + + + GitHub + + {' '} + is a web-based platform for version control and collaboration on + software development projects. Find out what I've been working + on here! +
    • +
    • + + + LinkedIn + + + , unfortunately. A social network for professionals. +
    • +
    +
    + +

    Tech I Like

    +
    +
      +
    • + Web Development: I primarily use Node.js with TypeScript + (or JavaScript for smaller projects) alongside Next.js to build websites + and applications. +
    • +
    • + Scripting: My preferred scripting languages are Python + and JavaScript, as I'm well-versed in them and they offer extensive + libraries that typically cover my needs. +
    • +
    • + API and Backend Development: For more robust API or backend + architecture, I often choose .NET Core with C# and ASP.NET. The strongly-typed + nature of C# and the structured framework of ASP.NET help maintain clean and + organised code. +
    • +
    • + Cloud Hosting: When possible, I opt for hosting on a + DigitalOcean droplet. If more extensive cloud services are required, I usually + opt for Google Cloud Platform (GCP), which I find more user-friendly than Azure + or AWS. I also self-host services on shared server hosting running Ubuntu Server, typically with Hetzner. +
    • +
    + +
    +
    + + ) +} diff --git a/src/pages/cv/index.js b/src/pages/cv/index.js index ccb192e..03dc443 100644 --- a/src/pages/cv/index.js +++ b/src/pages/cv/index.js @@ -7,7 +7,6 @@ import { NextSeo } from 'next-seo' import Resume from '@/components/Resume/Resume' export const Title = 'CV' -export const Description = 'Read about my professional experience as a software engineer, core competencies, and certifications.' function ResumePage ({ competencies, @@ -19,17 +18,13 @@ function ResumePage ({ return ( -
    -

    {Title} 💼

    -

    {Description}

    -
    +

    {Title}

    ({ ...exp, desc: MDConverter.makeHtml(exp.desc) })) return { + // @ts-ignore props: { ...data } } } diff --git a/src/pages/index.js b/src/pages/index.js index eb0770d..004db1d 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,21 +1,26 @@ import Head from 'next/head' import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' -import ExternalLink from '@/components/ExternalLink/ExternalLink' import Link from 'next/link' -import { Title as WritingTitle, Description as WritingDescription } from './writing' -import { Title as CvTitle, Description as CvDescription } from './cv' +import StaticContentList from '@/components/StaticContentList/StaticContentList' +import { getStaticEntries } from '@/lib/content' -export default function Home () { +export const getStaticProps = () => ({ + props: { + postEntries: getStaticEntries("content/writing") + } +}) + +export default function Home({ postEntries }) { return ( +

    Hello!

    -

    Hello! 👋🏻

    I'm Aaron, a Brit living in Newcastle-upon-tyne, UK. I work professionally as a Software Engineer, and study @@ -24,92 +29,13 @@ export default function Home () {

    I current work as a Lead Consultant at Hippo Digital, working on public sector project for the Department of Education. You can find out more about my work history on my CV.

    - -
    -
    - {WritingTitle} -

    {WritingDescription}

    - Read more... -
    - -
    - {CvTitle} -

    {CvDescription}

    - Read more... -
    -
    -

    Tech I Like

    -
      -
    • - Web Development: I primarily use Node.js with TypeScript - (or JavaScript for smaller projects) alongside Next.js to build websites - and applications. -
    • -
    • - Scripting: My preferred scripting languages are Python - and JavaScript, as I'm well-versed in them and they offer extensive - libraries that typically cover my needs. -
    • -
    • - API and Backend Development: For more robust API or backend - architecture, I often choose .NET Core with C# and ASP.NET. The strongly-typed - nature of C# and the structured framework of ASP.NET help maintain clean and - organised code. -
    • -
    • - Cloud Hosting: When possible, I opt for hosting on a - DigitalOcean droplet. If more extensive cloud services are required, I usually - opt for Google Cloud Platform (GCP), which I find more user-friendly than Azure - or AWS. I also self-host services on shared server hosting running Ubuntu Server, typically with Hetzner. -
    • -
    - +

    Recent posts

    +
    -
    -

    Where to find me

    - -
      -
    • - - - Letterboxd - - {' '} - is a social platform for film lovers to rate, review, and discover - movies, akin to "Goodreads for film." -
    • -
    • - - - GitHub - - {' '} - is a web-based platform for version control and collaboration on - software development projects. Find out what I've been working - on here! -
    • -
    • - - - LinkedIn - - - , unfortunately. A social network for professionals. -
    • -
    -
    - -
    -

    About this site

    -

    www.aaronjy.me is a static site (i.e. a bunch of HTML, JS, CSS and image files) written in JavaScript using Next.js. Tacit is being used as a micro CSS framework, and various smaller bits of custom CSS have been applied on top.

    -

    The site is hosted inside a Google Cloud Storage bucket with a load balancer sat in front of it. The load balancer is required as Cloud Storage doesn't support a) custom domains, b) HTTPS out of the box or c) a global CDN solution.

    -

    One of the biggest benefits of a website made of simple static files and assets is that I can deploy it easily, almost anywhere, and for very little money.

    - -
    ) } diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js index a0b633d..63ad507 100644 --- a/src/pages/writing/index.js +++ b/src/pages/writing/index.js @@ -1,45 +1,33 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import React from 'react' -import Link from 'next/link' -import { getStaticEntryListProps } from '@/lib/content' +import { getStaticEntries } from '@/lib/content' import { NextSeo } from 'next-seo' -import { formatDate } from '@/lib/helpers' +import StaticContentList from '@/components/StaticContentList/StaticContentList' -export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/') +export const getStaticProps = () => ({ + props: { + postEntries: getStaticEntries("./content/writing") + } +}) export const Title = 'Writing' -export const Description = 'A collection of writing and musings on various topics that interest me, as well as technical writing.' -export default function Writing ({ entries, urlPrefix }) { +export default function Writing ({ postEntries }) { + return ( -
    -

    {Title} ✍🏻

    -

    {Description}

    -
    +

    {Title}

    - {entries.map((e) => ( -
    -

    - {e.attributes.title} -

    - {!!e.attributes.pubdate &&

    {formatDate(e.attributes.pubdate)}

    } - -

    {e.attributes.desc}

    - Read more -
    - ))} +
    ) diff --git a/src/styles/font.css b/src/styles/font.css deleted file mode 100644 index a1a4cf7..0000000 --- a/src/styles/font.css +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Typography Scale CSS - * Generated with Type Scale Generator - */ - - @import url('./vars.css'); - - :root { - --base-size: 17px; - --scale-ratio: 1.067; - --body-font: "Inter"; - --body-weight: 400; - --body-line-height: 1.5; - --body-letter-spacing: normal; - --body-color: var(--color-default); - - --heading-font: var(--body-font); - --heading-weight: 700; - --heading-line-height: 1.25; - --heading-letter-spacing: normal; - --heading-color: var(--color-primary); -} - -/* Base styles */ -body { - font-family: var(--body-font); - font-size: var(--base-size); - line-height: var(--body-line-height); - letter-spacing: var(--body-letter-spacing); - color: var(--body-color); -} - -/* Type scale */ -.smallest { font-size: 0.878rem; } -.caption { font-size: 0.937rem; } -.body { font-size: 1rem; } -h6 { font-size: 1.067rem; } -h5 { font-size: 1.138rem; } -h4 { font-size: 1.215rem; } -h3 { font-size: 1.296rem; } -h2 { font-size: 1.383rem; } -h1 { font-size: 1.476rem; } - -/* Headings */ -h6, h5, h4, h3, h2, h1 { - font-family: var(--heading-font); - font-weight: var(--heading-weight); - line-height: var(--heading-line-height); - letter-spacing: var(--heading-letter-spacing); - color: var(--heading-color); -} - -a { - color: var(--color-primary); -} - -h2 a { - color: var(--heading-color); -} \ No newline at end of file diff --git a/src/styles/globals.css b/src/styles/globals.css index d10509f..e69de29 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -1,125 +0,0 @@ -@import url('./vars.css'); -@import url('./font.css'); - -html, body { - margin: 0; -} - -body { - position: relative; - background-color: var(--color-bg); -} - -body::after { - content: ''; - position: absolute; - bottom: 2vh; - right: 0; - width: 100vw; - height: 100%; - opacity: 0.2; - background-repeat: no-repeat; - background-position: bottom; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='360' preserveAspectRatio='none' viewBox='0 0 1440 360'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1038%26quot%3b)' fill='none'%3e%3cpath d='M -47.398109710771735%2c191 C 48.6%2c178 240.6%2c108.8 432.60189028922827%2c126 C 624.6%2c143.2 720.6%2c282.4 912.6018902892283%2c277 C 1104.6%2c271.6 1200.6%2c93.6 1392.6018902892283%2c99 C 1584.6%2c104.4 1863.12%2c292.6 1872.6018902892283%2c304 C 1882.08%2c315.4 1526.52%2c185.6 1440%2c156' stroke='rgba(122%2c 122%2c 122%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -191.9102853036337%2c280 C -95.91%2c256.8 96.09%2c173.2 288.0897146963663%2c164 C 480.09%2c154.8 576.09%2c246.8 768.0897146963663%2c234 C 960.09%2c221.2 1056.09%2c108.2 1248.0897146963662%2c100 C 1440.09%2c91.8 1689.71%2c189.6 1728.0897146963662%2c193 C 1766.47%2c196.4 1497.62%2c132.2 1440%2c117' stroke='rgba(122%2c 122%2c 122%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -851.6383122526047%2c117 C -755.64%2c157.8 -563.64%2c331.2 -371.63831225260463%2c321 C -179.64%2c310.8 -83.64%2c67.8 108.36168774739537%2c66 C 300.36%2c64.2 396.36%2c296.4 588.3616877473953%2c312 C 780.36%2c327.6 898.03%2c143.4 1068.3616877473953%2c144 C 1238.69%2c144.6 1365.67%2c280.8 1440%2c315' stroke='rgba(122%2c 122%2c 122%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1038'%3e%3crect width='1440' height='360' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e"); - z-index: -1; -} - -ul { - margin-left: 0; - list-style: inside; - list-style-type: circle; -} - -ul li:not(:last-child) { - margin-bottom: 10px; -} - -article { - border: none; - background: none; -} - -article img { - border: 1px solid var(--color-default); -} - -pre { - background-color: var(--color-default); - border-radius: 5px; - padding: 18px; -} - -pre code { - color: var(--color-bg); -} - -code:not(pre > code) { - background-color: var(--color-default); - color: var(--color-bg) -} - -.row { - display: flex; - align-items: center; -} - -.icon { - display: inline-flex; -} - -.icon-left { - margin-right: 5px; -} - -.row { - display: flex; - flex-direction: row; - gap: 1.5rem; -} - -.box { - flex-grow: 1; - /* border: 1px solid var(--color-default); */ - /* padding: 1.2rem; */ - display: flex; - align-items: left; - justify-content: center; - flex-shrink: 0; - flex-basis: 0; - flex-direction: column; - background-color: var(--color-bg-secondary); - border-radius: 0.8rem; - padding: 1.25rem 1.5rem; -} - -.box-title { - font-weight: 600; - color: var(--heading-color); -} - -.box-text { - margin: 0.8rem 0; -} - -.sidebar { - position: sticky; - top: 0; - width: 100%; - height: 100%; -} - -@media (max-width: 768px) { - .sidebar { - position: relative; - } -} - -@media only screen and (max-width: 640px) { - - - .row { - flex-direction: column; - } -} - - diff --git a/src/styles/vars.css b/src/styles/vars.css deleted file mode 100644 index ad050d0..0000000 --- a/src/styles/vars.css +++ /dev/null @@ -1,7 +0,0 @@ -:root { - --color-default: #00212c; - --color-primary: #3777FF; - --color-tertiary: grey; - --color-bg: #ffffff; - --color-bg-secondary: #f2f4ff; - } \ No newline at end of file