Daniel Talks Code
@danieltalkscode.com
Senior engineer at Squarespace. Learning frontend in public. Testing, accessibility, JavaScript.
Proud to announce TechConf.Directory, a directory of tech conferences around the globe. I've found it quite difficult to find conferences. That is true no more! I've made all the data fully open and available via a fully queryable API as well. techconf.directory #Conferences #Tech #Programming
TechConf.Directory - An index of technology conferences and speakers
TechConf.Directory lists technology conferences of all varieties and technology speakers. You can filter and explore a range of conferences to find what suits you and your criteria. You can also disco...
techconf.directory
Also, run ESLint with --report-unused-disable-directives to get notified of obsolete eslint-ignore comments.
Lil’ TypeScript tip: Instead of using `@ts-ignore` for stuff you don’t feel like fixing rn, use `@ts-expect-error`. When you do fix the issue, `@ts-expect-error` will *itself* become an error (which you can fix by deleting the comment). That way, you avoid stale ignores that aren’t needed anymore.
Tomorrow (April 9th) is CSS Naked Day. Are you ready? css-naked-day.org
💡 Reminder to add this git setting to your bash rc file: git config --global branch.sort -committerdate `git branch -l` lists alphabetically by default, so it's hard to find recent branches. This sorts by date instead!