Gnarly Learnings from November 2022

  • November 28, 2022
  • Ethan Fertsch
  • 3 min read

We love reading, watching, and listening in order to keep our skills sharp and our perspectives fresh. Here are some of the resources we learned from this month.

Embedding with Sidekiq 7.0

Mike Perham, the creator of Sidekiq, wrote a blog post discussing one of the features of the newly released Sidekiq 7.0: embedding! Prior to version 7.0, an entirely separate Sidekiq process was required for background job processing. Now, Sidekiq can be embedded within another process, making for simpler deployments and less total memory usage. There are some drawbacks though, which are mostly around the limited number of threads that can be run with embedded processes. 

rubyfmt

A recent tweet mentioned that 100% of Stripe’s Ruby codebase was autoformatted using rubyfmt, a newcomer to the autoformatting space. We love using tools like Prettier that help to keep our JavaScript code styles clean and consistent but the Rubyists on the team have yet to find something comparable. Could this be it??? 🤞

The State of Frontend 2022

You don’t have to scroll far to see the reason why I thought this front-end-focused article was interesting: 3,703 surveys, 125 countries, 19 front-end experts. This report provides some interesting insight into the developer’s favorite (and least favorite) frameworks, libraries, static-site generators, hosting services, and more.

Anchor Links and Sticky Headers

Easily add smooth scrolling to internal anchors with the CSS property scroll-behavior. You may still need to reach for scrollTo for complete browser support. This is a great way to progressively enhance your project while still being able to keep accessibility concerns in mind with the CSS “prefers-reduced-motion” fallback.

Generator Functions in JavaScript

This mind-bending JS blog article describes an aspect of the language that I had never directly come across: Generator functions. This post dives deep into when you might want to use these low-level features, but also stresses that you may not need to, coming at the reader with a genuine interest in making them more fully aware of the tools at your disposal. A great read for those looking to work with large data sets or those who just want to better understand the tools they work with. 

react-use

The react-use library is a collection of React hooks, sometimes referred to as “the lodash of hooks”. There are all sorts of helpful hooks in this npm package from common use cases such as setting the page title/favicon and throttling/debouncing to less common use cases such as vibration controls, geolocation tracking, and video/audio playback. If you’ve ever wondered, “I wish there was an easy way to [know when a user is idle|check network state|detect a long press/click|etc]” then chances are this package can help!

The State of GraphQL 2022

Yeah, that’s right, two “The State of…” articles in this issue. 😉 It’s just that time of year. This one, in particular, stood out because not only was it chock full of cool things about GraphQL, but it was also a joy to interact with from a UX perspective. The report contains information on demographics, features, libraries, usage, and more. I’ve just recently started interacting with Shopify’s GraphQL API and the biggest takeaway from this survey is that I have only scratched the surface! 

Contributors:

Learn more about how The Gnar builds software.

Interested in building with us?