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">
<TimeLineElement
title="Health and Well-Being"
title="Career Break: Health and Well-Being"
subtitle="From Mar 2017 to Present"
/>
<TimeLineElement
@ -72,19 +72,21 @@ import TimeLineElement from "../components/cv/TimeLine.astro";
<li>Go</li>
<li>x86 Assembly</li>
<li>MASM</li>
<li>Agile</li>
<li>Emacs</li>
<li>Visual Studio</li>
<li>PyCharm</li>
<li>Eclipse</li>
<li>Git</li>
<li>CI/CD</li>
<li>Linux</li>
<li>Linux Server</li>
<li>SELinux</li>
<li>KVM</li>
<li>UX Research</li>
<li>UX Design</li>
<li>Agile</li>
<li>Kanban</li>
<li>Jira</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>Emacs</li>
<li>Vim</li>
</ul>
</BaseLayout>

View file

@ -20,9 +20,10 @@ const last_posts = posts.slice(0, 3);
</div>
<div class="py-2">
<text class="text-lg">
I created this site to showcase my projects, and occasionally blog about
their developement. Feel free to navigate the site via the sidebar, or continue
reading if youd like to know more about my recent work
I created this site to showcase my projects as well as occasionally blog about
developement and my journey toward earning my degree. Feel free to navigate
the site via the sidebar, or continue reading if youd like to know more about
my recent work!
</text>
</div>
<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>
<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
title="2D Puzzle Solver"
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"
badge="Graphs"
/>
@ -62,14 +71,6 @@ const last_posts = posts.slice(0, 3);
url="https://codeberg.org/andyscott/OpenWeather-gRPC-API"
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 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";
---
<BaseLayout title="Active Projects">
<BaseLayout title="Latest Projects">
<div>
<div class="text-3xl w-full font-bold mb-5">Active Projects</div>
</div>
<HorizontalCard
title="Advent of Code 2022"
img="/project_images/advent_floristry.jpg"
desc="An advent calendar of programming puzzles"
url="https://codeberg.org/andyscott/advent-of-code"
badge="NEW"
title="New Projects Coming Soon"
img="/project_images/coming_soon.png"
desc="Currently focused on school"
url="https://andyscott.me/projects"
/>
<div class="divider my-0"></div>
<div>
<div class="text-3xl w-full font-bold mb-5 mt-10">All Projects</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
title="2D Puzzle Solver"
img="/project_images/2d_puzzle_solver.jpg"