Skip to main content

Musings

Zach Saucier's thoughts

Blog refresh 2023

I first created my blog in 2014. For the next ~10 years, it stayed the same, only adding new posts through 2017 when I lost the ability to easily make new posts (note: always save source files to the cloud). Its design held up surprisingly well!

In the last ~1.5 years CSS-Tricks has basically died and Twitter has similarly taken a blow thanks to Elon. As a result, I have tech stuff that I want to explore and post about but not a great place to post it.

Additionally, in the last ~6 months I’ve been using Svelte a lot more and I figured now’s a good time as any to rebuild my blog. I should probably redo my personal site sometime…

In this post I’ll cover some of the key changes and cool new tech that I got to use in building this blog!

What I’ve been doing since 2017

In case you’re interested in what I’ve been doing since I last posted on this blog, here’s a partial lightning recap:

  • I’ve worked fulltime for GreenSock (GSAP), an agency called Rally Interactive, Stripe, and Mailchimp.
    • Here’s a Twitter thread about some of the work I created at Stripe:
      View tweet
  • I’ve freelanced for many individuals, startups, and companies including Retool.
  • I wrote a thread about my most recent interview process:
    • View tweet
  • Just Read reached 200,000 weekly users (now for the last ~5 years!).
  • I moved to New York City.
  • I celebrated my 5 year wedding anniversary!
  • I made new friends, got into rock climbing, and built a lot of little projects.

Now that that’s out of the way, onto the meat of this post!

My history with frameworks

I started programming for the web when jQuery was the tool to use. However, native JavaScript was quickly improving and I started using straight HTML + CSS + JS for everything that I built.

For the next several years, frameworks came and went on large scales but I never felt the need to use one for the projects I was building, which were relatively small in nature. I did use preprocessors like SCSS sometimes. And for medium sized projects I’d use either templating engines like Pug/Jade or a backend language like PHP for templating. For the Just Read website/server I used Node.js + Express.js which was fine but sticking close to my native roots.

I was never really drawn to any of the major frameworks. The most appealing was Vue due to its acceptance of using straight HTML + CSS + JS and just enhancing parts, but even then I didn’t really like the Vue-y parts of it.

At GreenSock (GSAP) we mainly used a (crappy) PHP-based CMS called Invision Power Board (now Invision Community). At Rally we used Nunjucks for templating and Contentful as the CMS for the major projects I worked on there. At Stripe we used Ruby on the backend, Liquid as the templating engine, and Contentful as the CMS.

That’s not to say that I never used React or the other frameworks. I used React at GreenSock, Rally, Stripe, and multiple freelance projects. I used Angular and Vue once or twice for little things. But I never really vibed with the big hype around React and the other big frameworks.

Svelte is great!

Around 2020, I started hearing more about Svelte, Solid.js, and other tools like them — what I consider the modern era of frameworks. However, due to my full time job and hobbies that didn’t involve the cool, new front-end web frameworks, I didn’t really give them a try.

When I was laid off by Stripe in late 2022, that suddenly changed: I had time to not only play with cool new tools like Rive and Spline but also to learn about Svelte and Solid.js! I also did freelance work that got me exposed to a wider variety of tools.

So far I’ve used Svelte for 3 medium-sized projects. It’s been lovely! There’s been very few Svelte-isms that have felt weird/bad and there’s always been a good reason for why they are what they are if you dive into the GitHub issues. Compared to React where it’s a completely different mental modal (useContext and all of the other hooks are rough to learn and use), I am thrilled.

In particular, Svelte’s way of handling data storage (called stores in Svelte) has been a breath of fresh air after getting familiar with it. You want to be notified when a variable changes in a different component that’s in a completely different component tree? No problem.

Building this blog

Going back to the subject of this blog, I built it from scratch using Svelte + SvelteKit. I originally started by forking Josh Collinsworth’s sveltekit-blog-starter but ended up changing how most all of it worked. Those changes included:

  • Moving the blog off of the top-level directory to /blog so that I can keep my personal website independent
  • Adding handling for nested directories of blog posts (2014, 2015, etc.) to better organize entries on the backend while keeping the same /blog/[slug] URL format
  • Adding recent posts functionality
  • Adding excerpt functionality
  • Adding the archive functionality
  • Adding a sitemap and robots.txt
  • Adding a table of contents to blog posts
  • Adding section heading link click functionality
  • Adding a tweet button to the bottom of blog posts
  • Twitter embeds
  • CodePen embeds
  • Adding blog post “draft” functionality
  • Making fairly big additions to the pagination functionality
  • Adding a sidebar and making it collapsible
  • Fixing the category (I renamed them to tags) counts
  • Making the page titles more consistent
  • Adding the (basic) search functionality
  • Improving some Markdown handling to add footnotes, labels for emojis (for accessibility), and preventing widows

As a bonus, SvelteKit comes with content transitions between pages out of the box! Yay for not having to use something like Barba.js to do this.

Cool new CSS features

Building the site from scratch also provided a time to touch up some bits, shave old CSS (bye bye browser prefixes), use a new serif font, and try out new CSS tools.

But perhaps my favorite change related to styles comes from using Svelte: components automatically come with scoped CSS (via scoped classed) to that component! 😮 So you don’t need CSS modules, Tailwind, or even cascade layers.

Of the new CSS features, using CSS nesting feels the most refreshing. Paired with using CSS variables, 99% of my use cases for CSS pre-processors are accounted for (variables within media queries are the missing 1%). Since this website doesn’t get much traffic, I’m not even providing a fallback since it’s pretty well supported.

The neatest CSS feature I used was the OKLCH color space. It made the blue used on the ribbon pop even more than before!

I’ve seen some weird flashes with the colors sometimes where it looks like it goes to the RGB color fallback, but that’s worth the tradeoff for me on this website.

Another color feature I used for the first time is color-mix. I used it to lighten and darken the CSS variables for different states. It’s not bad, but I wish there was something more like a true lighten/darken that used the color itself as the extreme. Some of the colors I tried got washed out a bit by the white or black that I mixed it with.

By converting my colors to CSS variables, I basically got a dark mode for free!

One of the nice-to-have features I used was query ranges for CSS media queries. It’s another feature I’ve long-awaited since media queries were first introduced. Oh, and I used the , operator of media queries for the first time!

And I tried out container queries for the first time. (Edit: I published an article about this also!)

I also tried using console.info to add a little surprise for those who look in the console. I will also write another article about this approach as I think it’s quite interesting.

Lastly, I used some position: sticky on the sidebar if the viewport height is tall enough. Not super new or the first time I’ve used the feature but still a nice addition.

Where my blog is going from here

I plan on writing short posts anytime that I make a little side project. I also plan on posting a few longer, more in-depth articles about some new technology. If that interests you, please make use of the RSS feed, the email signup in the sidebar, or following me on Twitter or Bluesky!