Compare commits

...

3 commits

4 changed files with 38 additions and 30 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View file

@ -41,7 +41,7 @@ import TimeLineElement from "../components/cv/TimeLine.astro";
<div class="time-line-container mb-10"> <div class="time-line-container mb-10">
<TimeLineElement <TimeLineElement
title="Health and Well-Being" title="Career Break: Health and Well-Being"
subtitle="From Mar 2017 to Present" subtitle="From Mar 2017 to Present"
/> />
<TimeLineElement <TimeLineElement
@ -72,19 +72,21 @@ import TimeLineElement from "../components/cv/TimeLine.astro";
<li>Go</li> <li>Go</li>
<li>x86 Assembly</li> <li>x86 Assembly</li>
<li>MASM</li> <li>MASM</li>
<li>Agile</li> <li>Emacs</li>
<li>Visual Studio</li>
<li>PyCharm</li>
<li>Eclipse</li>
<li>Git</li> <li>Git</li>
<li>CI/CD</li> <li>CI/CD</li>
<li>Linux</li> <li>Agile</li>
<li>Linux Server</li> <li>Kanban</li>
<li>SELinux</li>
<li>KVM</li>
<li>UX Research</li>
<li>UX Design</li>
<li>Jira</li> <li>Jira</li>
<li>Trello</li> <li>Trello</li>
<li>Asana</li>
<li>Notion</li>
<li>Linux</li>
<li>Linux Server</li>
<li>UX Research</li>
<li>Office Suite</li> <li>Office Suite</li>
<li>Emacs</li>
<li>Vim</li>
</ul> </ul>
</BaseLayout> </BaseLayout>

View file

@ -20,9 +20,10 @@ const last_posts = posts.slice(0, 3);
</div> </div>
<div class="py-2"> <div class="py-2">
<text class="text-lg"> <text class="text-lg">
I created this site to showcase my projects, and occasionally blog about I created this site to showcase my projects as well as occasionally blog about
their developement. Feel free to navigate the site via the sidebar, or continue developement and my journey toward earning my degree. Feel free to navigate
reading if youd like to know more about my recent work the site via the sidebar, or continue reading if youd like to know more about
my recent work!
</text> </text>
</div> </div>
<div class="mt-8"> <div class="mt-8">
@ -47,10 +48,18 @@ const last_posts = posts.slice(0, 3);
<div class="text-3xl w-full font-bold mb-2">Latest projects {"</>"}</div> <div class="text-3xl w-full font-bold mb-2">Latest projects {"</>"}</div>
</div> </div>
<div class="divider my-0"></div>
<HorizontalCard
title="Advent of Code 2022"
img="/project_images/advent_floristry.jpg"
desc="My first (very casual) attempt at Advent of Code"
url="https://codeberg.org/andyscott/advent-of-code/src/branch/main/2022"
badge="Happy Holidays"
/>
<HorizontalCard <HorizontalCard
title="2D Puzzle Solver" title="2D Puzzle Solver"
img="/project_images/2d_puzzle_solver.jpg" img="/project_images/2d_puzzle_solver.jpg"
desc="Uses breadth first search (BFS) for graph traversal to solve 2D puzzles" desc="Uses breadth first search (BFS) to solve 2D puzzles"
url="https://codeberg.org/andyscott/2D-Puzzle-Solver" url="https://codeberg.org/andyscott/2D-Puzzle-Solver"
badge="Graphs" badge="Graphs"
/> />
@ -62,14 +71,6 @@ const last_posts = posts.slice(0, 3);
url="https://codeberg.org/andyscott/OpenWeather-gRPC-API" url="https://codeberg.org/andyscott/OpenWeather-gRPC-API"
badge="gRPC" badge="gRPC"
/> />
<div class="divider my-0"></div>
<HorizontalCard
title="Hash Maps"
img="/project_images/hash_maps.jpg"
desc="Two hash map implementations featuring open addressing with quadratic probing and separate chaining"
url="https://codeberg.org/andyscott/HashMaps"
badge="Data Structures"
/>
<div> <div>
<div class="text-3xl w-full font-bold mb-5 mt-10">Latest posts</div> <div class="text-3xl w-full font-bold mb-5 mt-10">Latest posts</div>

View file

@ -3,24 +3,29 @@ import BaseLayout from "../layouts/BaseLayout.astro";
import HorizontalCard from "../components/HorizontalCard.astro"; import HorizontalCard from "../components/HorizontalCard.astro";
--- ---
<BaseLayout title="Active Projects"> <BaseLayout title="Latest Projects">
<div> <div>
<div class="text-3xl w-full font-bold mb-5">Active Projects</div> <div class="text-3xl w-full font-bold mb-5">Active Projects</div>
</div> </div>
<HorizontalCard <HorizontalCard
title="Advent of Code 2022" title="New Projects Coming Soon"
img="/project_images/advent_floristry.jpg" img="/project_images/coming_soon.png"
desc="An advent calendar of programming puzzles" desc="Currently focused on school"
url="https://codeberg.org/andyscott/advent-of-code" url="https://andyscott.me/projects"
badge="NEW"
/> />
<div class="divider my-0"></div> <div class="divider my-0"></div>
<div> <div>
<div class="text-3xl w-full font-bold mb-5 mt-10">All Projects</div> <div class="text-3xl w-full font-bold mb-5 mt-10">All Projects</div>
</div> </div>
<HorizontalCard
title="Advent of Code 2022"
img="/project_images/advent_floristry.jpg"
desc="My first (very casual) attempt at Advent of Code"
url="https://codeberg.org/andyscott/advent-of-code/src/branch/main/2022"
badge="Happy Holidays"
/>
<HorizontalCard <HorizontalCard
title="2D Puzzle Solver" title="2D Puzzle Solver"
img="/project_images/2d_puzzle_solver.jpg" img="/project_images/2d_puzzle_solver.jpg"