mirror of
https://codeberg.org/andyscott-pages/andyscott-dot-me.git
synced 2024-11-08 21:30:50 -05:00
Update projects page and reorganize skills on cv
This commit is contained in:
parent
07d104cd5e
commit
2aeea9f6fc
4 changed files with 32 additions and 21 deletions
BIN
public/project_images/coming_soon.png
Normal file
BIN
public/project_images/coming_soon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -72,15 +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>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>Jira</li>
|
||||
<li>Trello</li>
|
||||
<li>Office Suite</li>
|
||||
<li>Emacs</li>
|
||||
</ul>
|
||||
</BaseLayout>
|
||||
|
|
|
@ -47,10 +47,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 +70,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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue