Skip to content

Latest commit

 

History

History
60 lines (49 loc) · 3.27 KB

README.md

File metadata and controls

60 lines (49 loc) · 3.27 KB

SamJulien.com

Hi, I'm Sam. This is the repo for my personal website.

This site was built using the egghead MDX Starter for Gatsby. I'm also using ConvertKit for my email list.

Backlog

Now that the site is launched, here's what's on my roadmap:

  • Download last few articles from the old Ghost site and convert them to MD
  • Update dependencies 😬
  • Migrate to double quotes (run Prettier on components)?
  • "Uses" page for useful stuff
  • Tags
  • Convert a Prism theme into the right JS format for React renderer
  • Move talks content to AirTable
  • Migrate "blog" to "writing" ✅
  • Add open graph images for Twitter ✅
  • Algolia search

Design Inspiration

Development References

I migrated this site from a very old Ghost instance. Here are some resources I found helpful in the process:

scp -r username@droplet_ip:/path/to/file /path/to/destination
for file in *.md; do
    dir=${file%%.*}
    mkdir -p "$dir"
    mv "$file" "$dir"
    mkdir "$dir"/images
done