Gnarly Learnings from April 2023

Engineering Insights

Ethan Fertsch
#
Min Read
Published On
March 13, 2025
Updated On
March 24, 2025
Gnarly Learnings from April 2023

At the Gnar we are always 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.

CSS Supports Trigonometry Functions

Trig functions in CSS make it easier to rotate objects and let us avoid using magic numbers. For example, sin(60 degrees) expresses the developer's intent more clearly than 0.866025.

Action Mailer Now Supports *_deliver Callbacks

Three callbacks (before_deliver, after_deliver, around_deliver) have been added to Action Mailer. You may have strong feelings about callbacks and I probably tend to agree with you, but sometimes they are the right tool to reach for. The described use cases for this include updating an Active Record model's delivered_atwhich is especially useful when dealing with async deliveries), handling delivery errors, and executing tasks that require a delivery provider's message_id.

Useful Tips for Using GitHub Copilot

Like any other tool, GitHub Copilot has a learning curve. This article from GitHub developer advocate Rizel Scarlett gives us a few tips to quickly improve the quality of Copilot suggestions. One thing I didn't realize: Copilot uses your open tabs to provide context for the questions you ask! That tip in and of itself really helped me make better use of the tool in my day-to-day work.

CSS text-wrap: balance

Chrome Canary now includes a new experimental CSS feature, text-wrap: balance, that evaluates line breaks to balance blocks of text. As developers, we often look for solutions that help to keep text consistent regardless of final font size, screen size, and language, which are often unknown. This property aims to mitigate those concerns, though it is not without its challenges. It is currently limited to four wrapped lines (and under) and presents some performance considerations due to the iterative technique used to perform the wrapping.

TypeScript's infer

TypeScript's Conditional types have allowed developers to build internal type logic based on types provided to the conditional-Model<string> might have subtle differences in signature from Model<number>. Now, TypeScript has given us infer, allowing us to identify and refer to dynamic type values from within a Conditional type. It sounds like a lot - and it kind of is, the uses for this are pretty niche! - but once you wrap your head around it, you'll have a powerful new TypeScript tool in your arsenal.

Contributors:

Learn more about how The Gnar builds software.

Related Insights

See All Articles
Engineering Insights
Why Your AI Coding Agent Keeps Making Bad Decisions (And How to Fix It)

Why Your AI Coding Agent Keeps Making Bad Decisions (And How to Fix It)

AI coding agents making bad decisions? The frustration comes from two fixable problems: assumptions and code quality. Here's how to get consistently good results.
Product Insights
From Dashboards to Decisions: Why Traditional BI Can't Keep Up

From Dashboards to Decisions: Why Traditional BI Can't Keep Up

Stop waiting days for dashboards. Learn how BI2AI uses LLMs and RAG to eliminate the analyst bottleneck and turn complex data into instant executive decisions.
Product Insights
Are Your Legacy Systems Bleeding You Money?

Are Your Legacy Systems Bleeding You Money?

Technical debt now accounts for 40% of IT balance sheets, with companies paying a 10-20% surcharge on every new initiative just to work around existing problems. Meanwhile, organizations with high technical debt deliver new features 25-50% slower than competitors. Features on your six-month roadmap? They're shipping them in three weeks.
Previous
Next
See All Articles