

Changelog Master Feed
Changelog Media
Your one-stop shop for all Changelog podcasts. Weekly shows about software development, developer culture, open source, building startups, artificial intelligence, shipping code to production, and the people involved. Yes, we focus on the people. Everything else is an implementation detail.
Episodes
Mentioned books

Jun 27, 2018 • 1h 2min
Programmable infrastructure (Changelog Interviews #303)
Jerod Santo is riding solo talking with Kurt Mackey, co-founder of Fly. He talked to him about his work at Ars Technica, his prediction on tabs being a fad, and Kurt being a founding member of MongoHQ, which was later renamed to Compose and acquired by IBM. Jerod also talked to him about lighthouse scores, performance, and an interesting program Fly is instituting to compensate open source project maintainers.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Airbrake – Airbrake is an exception reporting service, currently providing error monitoring for 50,000 applications with support for 18 programming languages.
DigitalOcean – DigitalOcean is simplicity at scale. Whether your business is running one virtual machine or ten thousand, DigitalOcean gets out of your way so your team can build, deploy, and scale faster and more efficiently. New accounts get $100 in credit to use in your first 60 days.
GoCD – GoCD is an on-premise open source continuous delivery server created by ThoughtWorks that lets you automate and streamline your build-test-release cycle for reliable, continuous delivery of your product.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Featuring:Kurt Mackey – Website, GitHub, LinkedIn, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:
Kurt’s author profile on Ars
fly.io
fly on GitHub
flygit is like rawgit on fly
JS Party #26 – 🎊 TS Party! 🎊
JS Party #29 – Node’s survey, Ry’s regrets, Microsoft’s GitHub
Something missing or broken? PRs welcome!

Jun 22, 2018 • 1h 7min
GraphQL, when to use JavaScript, JS robotics (JS Party #31)
KBall and Tim are on location at Fluent/Velocity and had the chance to talk with Brian Douglas about GraphQL and GitHub’s recent changes, Aimee Knight about knowing when to use JavaScript over CSS, and Bryan Hughes about his start and robotics with JavaScript.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Hired – Salary and benefits upfront? Yes please. Our listeners get a double hiring bonus of $600! Or, refer a friend and get a check for $1,337 when they accept a job. On Hired companies send you offers with salary, benefits, and even equity upfront. You are in full control of the process. Learn more at hired.com/jsparty.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Featuring:Brian Douglas – Website, GitHub, XAimee Knight – Website, GitHub, XBryan Hughes – Website, GitHub, XKevin Ball – Website, GitHub, LinkedIn, XShow Notes:
GraphQL | A query language for your API
👋 Hello, GitHub | @natfriedman
JavaScript Jabber Archive | Devchat.tv
Johnny-Five: The JavaScript Robotics & IoT Platform
TypeScript - JavaScript that scales.
Something missing or broken? PRs welcome!

Jun 20, 2018 • 1h 15min
Computer Science without a computer (Changelog Interviews #302)
Adam Stacoviak and Jerod Santo talk with Tim Bell, the founder and creator of CS Unplugged, a collection of free teaching material that teaches computer science through engaging games and puzzles. They talk to him about where this program came from him, the need for computer science in today’s K-12 education programs, how CS Unplugged fits in, and how you can get involved.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Airbrake – Airbrake is an exception reporting service, currently providing error monitoring for 50,000 applications with support for 18 programming languages.
DigitalOcean – DigitalOcean is simplicity at scale. Whether your business is running one virtual machine or ten thousand, DigitalOcean gets out of your way so your team can build, deploy, and scale faster and more efficiently. New accounts get $100 in credit to use in your first 60 days.
GoCD – GoCD is an on-premise open source continuous delivery server created by ThoughtWorks that lets you automate and streamline your build-test-release cycle for reliable, continuous delivery of your product.
Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Featuring:Tim Bell – Website, GitHub, XAdam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:
CS Unplugged
University of Canterbury Computer Science Education Research
Tim Bell - Academic Staff - People - Computer Science and Software Engineering - University of Canterbury - New Zealand
Tim Bell (computer scientist) - Wikipedia
Modems Unplugged - Computer Science Unplugged
Data Representation - Computer Science Field Guide
uccser/cs-unplugged: CS Unplugged is a collection of free teaching material that teaches Computer Science through engaging games and puzzles that use cards, string, crayons and lots of running around.
uccser/cs-field-guide: An online interactive resource/textbook for high school students learning about computer science.
Three ways to get started with computer science and computational thinking
Topics - CS Unplugged
Computer Science Education Research Group | University of Canterbury
Something missing or broken? PRs welcome!

Jun 19, 2018 • 1h 12min
Do what every developer does: blame other people (JS Party #30)
Nick Nisi, Suz Hinton, and Jerod Santo talk about their debugging methods, the cool things that JavaScript can do but isn’t talked about much, and their opinions on Git history.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Hired – Salary and benefits upfront? Yes please. Our listeners get a double hiring bonus of $600! Or, refer a friend and get a check for $1,337 when they accept a job. On Hired companies send you offers with salary, benefits, and even equity upfront. You are in full control of the process. Learn more at hired.com/jsparty.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Featuring:Nick Nisi – Website, GitHub, Bluesky, Mastodon, XSuz Hinton – GitHub, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:
visionmedia/debug
Uniquify an array
let foo = [1, 2, 3, 3, 4, 5];
foo = [...new Set(foo)];
Destructuring assignment using regular expressions
const [, year, month, day ] = '2018-06-14'.match(/^(\d{1,4})-(\d{1,2})-(\d{1,2})$/)
How (and why!) to keep your Git commit history clean | GitLab
Something missing or broken? PRs welcome!

Jun 15, 2018 • 1h 12min
Growing Open Collective (Founders Talk #52)
Pia Mancini joined the show for the first episode back from a nearly 5 year hiatus. We talked about her work at DemocracyEarth, being a mother, her new role as CEO of Open Collective, their focus, supporting ad-hoc community formation all around the world, their revenue and growth plans, and their path to sustainability.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Hired – Salary and benefits upfront? Yes please. Our listeners get a double hiring bonus of $600! Or, refer a friend and get a check for $1,337 when they accept a job. On Hired companies send you offers with salary, benefits, and even equity upfront. You are in full control of the process. Learn more at hired.com/founderstalk.
Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Featuring:Pia Mancini – Website, GitHub, XAdam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XShow Notes:
My new role at Open Collective!
Team update
The Changelog #234: Open Collective and Funding Open Source with Pia Mancini
Sustain OSS
.NET Foundation
GatsbyJS raised a $3.8M seed round and is now a startup
Something missing or broken? PRs welcome!

Jun 15, 2018 • 3min
🔥 Founders Talk is back! (Founders Talk)
It’s been just shy of 5 years since I’ve published a new episode to this podcast. The break was planned actually. Long story short, I had to focus. If you want to hear the slightly longer explanation, you should listen.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Featuring:Adam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XShow Notes:Listen to Founders Talk #52: Growing Open Collective with Pia Mancini
I’m so excited to bring this show back! It’s been too long and I truly miss these conversations. If you’d like to suggest someone to be on the show, get in touch.
Something missing or broken? PRs welcome!

Jun 13, 2018 • 38min
Python at Microsoft (Changelog Interviews #301)
We talked with Steve Dower and Dan Taylor at Microsoft Build 2018 about the history of Python at Microsoft, the origination of IronPython, Python Tools for Visual Studio, flying under the radar to add support Python, fighting from within to support open source, and more.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
DigitalOcean – DigitalOcean is simplicity at scale. Whether your business is running one virtual machine or ten thousand, DigitalOcean gets out of your way so your team can build, deploy, and scale faster and more efficiently. New accounts get $100 in credit to use in your first 60 days.
OSCON – O’Reilly’s Open Source Convention combines the experience of the open source community with ideas and strategies for using open source tools and technologies. There’s no event quite like OSCON! When registration opens — save 20% on most passes by using the code CHANGELOG when you register.
Featuring:Steve Dower – Website, GitHub, XDan Taylor – GitHub, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:Topics
2:22 – The history of Python at Microsoft
3:15 – The origination of IronPython
4:05 – Python tools for Visual Studio
7:54 – What Microsoft is doing with Python
10:22 – Why Python is good for people new to programming
12:20 – Pythonic
13:52 – PEP 8
15:47 – Black
18:16 – Pylint
21:41 – CPython
26:01 – Opensource at Microsoft
28:29 – The future of Python
33:55 – The latest in Python
Links
IronPython
Python Visual Studio
Python Visual Studio Code extension
Black – the uncompromising Python code formatter
Pylint
CPython
Jupyter Notebooks
Visual Studio Team Services
Something missing or broken? PRs welcome!

Jun 8, 2018 • 1h 4min
Node's survey, Ry's regrets, Microsoft's GitHub (JS Party #29)
Big week! KBall, Nick, and JBall (nooch) dive deep in to the 2018 Node.js user survey results. What does it all mean?! They also review Ryan Dahl’s “10” regrets about Node and sound off on Microsoft’s assimilatio… err… acquisition of GitHub.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Featuring:Kevin Ball – Website, GitHub, LinkedIn, XNick Nisi – Website, GitHub, Bluesky, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:
2018 Node.js User Survey Report (web)
2018 Node.js User Survey Report (pdf)
Third Annual Node.js User Survey Data Now Available
2018 Node.js User Survey Report Shows Continued Rapid Growth
Node by Numbers 2017 — NodeSource
10 Things I Regret About Node.js - Ryan Dahl - JSConf EU 2018
ry/deno: A secure TypeScript runtime on V8
Spotlight #14: Our reactions to Microsoft buying GitHub
Something missing or broken? PRs welcome!

Jun 6, 2018 • 1h 34min
Corporate interests in open source and dev culture (Changelog Interviews #300)
Zed Shaw – creator of Mongrel, Learn Python the Hard Way, and more – joined the show to talk through a recent Twitter thread from Zed where he shared his thoughts on open source, making money in open source, corporate interests and involvement, developer culture, and more.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
OSCON – O’Reilly’s Open Source Convention combines the experience of the open source community with ideas and strategies for using open source tools and technologies. There’s no event quite like OSCON! When registration opens — save 20% on most passes by using the code CHANGELOG when you register.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Featuring:Zed Shaw – Website, GitHub, XAdam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:
PDF copy of Zed’s Twitter thread (because he’s testing his Twitter account as being private)
The original Twitter thread
The Changelog #34: Mongrel2 and High Performance Web Sites with Zed Shaw
Learn Code the Hard Way
Embrace, extend, and extinguish - Wikipedia
Something missing or broken? PRs welcome!

Jun 5, 2018 • 57min
Coming to React with Sara Vieira (The React Podcast #12)
Sara Vieira is easily one of the most entertaining people we’ve ever had on this show. She has been working with React over the past few years and has recently been traveling around Europe and giving free workshops on React in London and at React Finland.
Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Sponsors:Rollbar – We catch our errors before our users do because of Rollbar. Resolve errors in minutes, and deploy your code with confidence. Learn more at rollbar.com/changelog.
Fastly – Our bandwidth partner. Fastly powers fast, secure, and scalable digital experiences. Move beyond your content delivery network to their powerful edge cloud platform. Learn more at fastly.com.
Linode – Our cloud server of choice. Deploy a fast, efficient, native SSD cloud server for only $5/month. Get 4 months free using the code changelog2018. Start your server - head to linode.com/changelog
Featuring:Sara Vieira – Website, GitHub, XMichael Jackson – Website, GitHub, XMichael Chan – Website, GitHub, XShow Notes:
Make Frontend Shit Again
Awesome Talks
The destructured horse!
Something missing or broken? PRs welcome!