Listen

Listened to Modernizing the Monolith with Moti Rafalin and Amir Rapson
Post details
Java Applications became the go-to preference of most developers because of the write-once-run-anywhere advantage it gave over other languages. And it didn’t take much time for Java to become the language for the enterprise. Consequently, most enterprises are still running legacy Java Monoliths on their infrastructure. Breaking up a monolith is not an easy process–nor

 Listen

Listened to Free Heroku EOL, Stable Diffusion 2.0, Twitter SRE explains why it stays up, Git Notes & Joel Lord (Changelog News)
Post details
Heroku’s free plans officially reach EOL, Swyx explains the mixed reaction to Stable Diffusion 2.0, a real Twitter SRE explains how it continues to stay up even with ~80% gone, Tyler Cipriani tells us about one of Git’s coolest, most unloved features & we chat with Joel Lord about brewing beer with IoT & JavaSC...

 Listen

Listened to Some spice and odd takes on events and open-source with Alistair Hey by Tech: Off-topic
Post details
Mike (https://twitter.com/ukmadlz) and Jim (https://twitter.com/secondej) have our usual chat and pseudo spicy takes, this episode with guest Alistair Hey (https://twitter.com/alistair_hey), and cover: Modern Frontends Live!! https://dylanbeattie.net/2022/11/22/modern-frontends-2022.html / https://www.cassie.codes/posts/modern-frontends/ / https://dev.to/thisisjofrank/my-experience-of-modern-frontends-conference-1cgg Going through a lovely bit of MongoDB marketing fluff https://www.theregister.com/2020/11/25/mongodb_marketing_movie_dross/ Black Friday. Really. Is it a thing anymore here "The backend shouldn't exist" - Conversation with bootcamp mentees Hive to replace Twitter (and mastodon) https://www.businessinsider.com/twitter-competitor-hive-social-run-by-24-year-old-founder-2022-11?r=US&IR=T Linux Foundation pays Linus 1.6 mill a year And the usual off-topic tangents.

 Note

Been meaning to subscribe to The Changelog's subscriber programme, changelog++ for some time now, as I love the various podcasts + content they produce, and I've listened to 203(!) of their podcasts since my records began in August 2016(!).

I now am, and it feels great to support the folks who create the great content we consume 😻

 Listen

Listened to How Pinterest delivers software at scale with Nishant Roy, Engineering Manager at Pinterest Ads (Go Time #257)
Post details
Nishant Roy, Engineering Manager at Pinterest Ads, joins Johnny & Jon to detail how they’ve managed to continue shipping quality software from startup through hypergrowth all the way to IPO. Prepare to learn a lot about Pinterest’s integration and deployment pipeline, observability stack, Go-based services and more...

 Repost

Reposted a post on Twitter
Post details

 Repost

I've 100% worked at this company before 🙃

Quoted a post on Twitter
Post details

 Repost

Reposted a post on Twitter
Post details

 Note

Fun JS bug of the day introduced by a linting change, that lost me a good amount of time trying to work out what was going wrong:

-  const tokenSet = await client.oauthCallback(redirect, params, { code_verifier });
+  const tokenSet = await client.oauthCallback(redirect, params, { codeVerifier })

Silently changed the meaning of the code here, and needed to be fixed with:

-  const tokenSet = await client.oauthCallback(redirect, params, { codeVerifier }).catch((err) => {
+  const tokenSet = await client.oauthCallback(redirect, params, { code_verifier: codeVerifier }).catch((err) => {

Funnily enough, I've had this lead to dangerous logging in the past, but didn't spot this at first. That'll teach me!

 Note

Love to be told "we tried to deliver your package but no one was in" without any of the security cameras or our very sensitive guard dog triggering, while both me and Anna Dodson are working from home 🙃