Compare commits

..

No commits in common. "867c51ae95b5ddf50c06ebf2808bfdcb5098bdcb" and "7dfc7a5642be8bdbdac4b9c414e9f6757f09156c" have entirely different histories.

4 changed files with 30 additions and 38 deletions

Binary file not shown.

Before

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="Career Break: Health and Well-Being" title="Health and Well-Being"
subtitle="From Mar 2017 to Present" subtitle="From Mar 2017 to Present"
/> />
<TimeLineElement <TimeLineElement
@ -72,21 +72,19 @@ 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>Emacs</li> <li>Agile</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>Agile</li>
<li>Kanban</li>
<li>Jira</li>
<li>Trello</li>
<li>Asana</li>
<li>Notion</li>
<li>Linux</li> <li>Linux</li>
<li>Linux Server</li> <li>Linux Server</li>
<li>SELinux</li>
<li>KVM</li>
<li>UX Research</li> <li>UX Research</li>
<li>UX Design</li>
<li>Jira</li>
<li>Trello</li>
<li>Office Suite</li> <li>Office Suite</li>
<li>Emacs</li>
<li>Vim</li>
</ul> </ul>
</BaseLayout> </BaseLayout>

View file

@ -20,10 +20,9 @@ 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 as well as occasionally blog about I created this site to showcase my projects, and occasionally blog about
developement and my journey toward earning my degree. Feel free to navigate their developement. Feel free to navigate the site via the sidebar, or continue
the site via the sidebar, or continue reading if youd like to know more about reading if youd like to know more about my recent work
my recent work!
</text> </text>
</div> </div>
<div class="mt-8"> <div class="mt-8">
@ -48,18 +47,10 @@ 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) to solve 2D puzzles" desc="Uses breadth first search (BFS) for graph traversal to solve 2D puzzles"
url="https://codeberg.org/andyscott/2D-Puzzle-Solver" url="https://codeberg.org/andyscott/2D-Puzzle-Solver"
badge="Graphs" badge="Graphs"
/> />
@ -71,6 +62,14 @@ 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,29 +3,24 @@ import BaseLayout from "../layouts/BaseLayout.astro";
import HorizontalCard from "../components/HorizontalCard.astro"; import HorizontalCard from "../components/HorizontalCard.astro";
--- ---
<BaseLayout title="Latest Projects"> <BaseLayout title="Active 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
title="New Projects Coming Soon"
img="/project_images/coming_soon.png"
desc="Currently focused on school"
url="https://andyscott.me/projects"
/>
<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"
/>
<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"