Jesse Skinner

@jesseskinner.toot.cafe.ap.brid.gy

I'm a software engineer, coding since the '80s and building web apps since 2001. I offer fixed quotes with flexible scope. I still help clients that emailed me […] 🌉 bridged from ⁂ https://toot.cafe/@JesseSkinner, follow @ap.brid.gy to interact

To make nodejs date-related tests work in multiple time zones, here's a little trick (hack?) You can set process.env.TZ to set a specific timezone. eg. const tz = process.env.TZ beforeEach(() => { process.env.TZ = 'America/New York' }) afterEach(() => { process.env.TZ = tz }) #nodejs #tdd

I wonder if one day "If you could pass the salt, that would be great." will be shortened to "Pass the salt would be great." and eventually "Begreat pass the salt." or something, the same way that saying "please" comes from "if it pleases you" but now we just say "please pass the salt".

TIL you can show a notification from inside a terminal (Ghostty, and a few others) with the following command: echo -e "\033]777;notify;Title;Hello, world\033\\\" This is the so-called OSC 777 protocol. It even works over SSH! Very useful in scripts to notify you of completion.