Pete LePage

Thoughts on web development, life, and photography.

Slides from connect.tech

Baseline ✅ - New web features ready to use across browsers today. Knowing what new features and APIs you can safely use can be a challenge, will it work in the browsers you need to support? Baseline helps with that, giving developers a way to know whether a feature is ready to use. We’ll dive into how to use Baseline to identify which features you can confidently use in your site and which ones you’ll need to do more work to support and cover some of the key features now included in Baseline, and how they...

GitHub SSH and 2-factor auth

I hate that using SSH & 2-factor auth means I have to auth even for for a git pull. But there’s an easier way! Change the remote used for fetch to the HTTPS url. First, verify that both push/fetch are using SSH by running git remote -v it should output something like: origin git@github.com:petele/squoosh.git (fetch)origin git@github.com:petele/squoosh.git (push) Then use git remote set-url origin to set the remote URL for fetch to the HTTPS url. Your repo will now push via SSH and pull via...