Profile

User's avatar
npub1a2rp...6tz3
npub1a2rp...6tz3
Don’t let anyone tell you otherwise. The Web is the most successful computing platform in history, and it’s all thanks to OOP. Herein lies a philosophical look at why it’s crucial to become an expert on the many object-oriented APIs in #WebDev and how understanding class hierarchies and instance efficiency allows you to build user-considerate, high-quality applications. Also: monkey patching is NOT a dirty word! 😄 Enlighten yourself:
RE: A quick rundown on Invoker Commands by @npub1dpjj...e0jl We've written about this a lot on the blog and will no doubt have more to say now that the need to polyfill this is quickly starting to fade. It's truly exciting to have a web-native API which can solve the “wire up a click to perform a task” problem. #WebDev #HTML #JavaScript View quoted note →
By Russ Weakley: How does the Shadow DOM appear in the accessibility tree? Browsers flatten the shadow tree when building the accessibility tree. Flattening removes the accessibility boundary of the shadow root and exposes the internal nodes as if they were normal children in the accessibility tree, not the DOM tree. #HTML #WebDev #Accessibility
Perhaps it’s time to embrace real web open standard .js files which don’t require any build steps or tooling to execute properly, all while utilizing the power combo of JSDoc + tsc to gain all of the benefits of type hints in IDEs and type checking in CI. Let’s dive into some examples! #WebDev #JavaScript