Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> **⚠️ This repository has been archived.** Development has moved to the [websites-monorepo](https://github.com/taearls/websites-monorepo). The portfolio app lives at [`apps/portfolio/`](https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio) in the monorepo.

---

Comment on lines +1 to +4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify that the monorepo and portfolio subdirectory URLs are accessible

echo "Checking main monorepo URL..."
main_status=$(curl -s -o /dev/null -w "%{http_code}" https://github.com/taearls/websites-monorepo)
echo "Main monorepo status: $main_status"

echo "Checking portfolio subdirectory URL..."
portfolio_status=$(curl -s -o /dev/null -w "%{http_code}" https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio)
echo "Portfolio subdirectory status: $portfolio_status"

# Summary
echo ""
echo "=== Verification Summary ==="
if [ "$main_status" = "200" ] && [ "$portfolio_status" = "200" ]; then
    echo "✓ Both URLs are accessible"
else
    echo "✗ One or more URLs are inaccessible"
    echo "  Main monorepo: $main_status"
    echo "  Portfolio path: $portfolio_status"
fi

Repository: taearls/portfolio

Length of output: 299


Fix the archive notice—the referenced monorepo URLs do not exist.

Both URLs in the archive notice return 404 errors:

  • https://github.com/taearls/websites-monorepo → 404
  • https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio → 404

Users following these links will encounter errors. Obtain the correct monorepo repository URLs and update the archive notice before merging.

🤖 Prompt for AI Agents
In `@README.md` around lines 1 - 4, The archive notice starting with "**⚠️ This
repository has been archived.**" contains two broken links to the monorepo and
the portfolio app; locate that exact notice in README.md and replace the two
URLs (`https://github.com/taearls/websites-monorepo` and
`https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio`) with
the correct monorepo and app URLs (verify by finding the actual repo and app
path on GitHub), update the markdown link targets so they return 200, and keep
the same link text/formatting so the notice remains unchanged except for
corrected URLs.

# About Me

I'm a fullstack developer and musician based in Chicago, IL. Outside of tech, I'm also a [musician](https://www.cuckooandthebirds.com) and an avid fan of Star Trek.
Expand All @@ -12,4 +16,4 @@ This repository is the source code for my tech portfolio, built lovingly with [R

1. The first [iteration](https://github.com/taearls/portfolio-nuxt) of this website was built with [Nuxt](https://nuxtjs.org) and [Vue](https://vuejs.org). I pivoted away from this stack because I was fascinated by Rust-based web frameworks.

2. The second [iteration](https://github.com/taearls/portfolio-rs) was built with [Yew](https://yew.rs), a Rust-based web framework with React-inspired APIs. I pivoted away from this stack because over the course of a year, it seemed that this project was slow to progress and I wanted to stay sharp on the technologies I use in my day-to-day professional work.
2. The second [iteration](https://github.com/taearls/portfolio-rs) was built with [Yew](https://yew.rs), a Rust-based web framework with React-inspired APIs. I pivoted away from this stack because over the course of a year, it seemed that this project was slow to progress and I wanted to stay sharp on the technologies I use in my day-to-day professional work.
Loading