Joe Pea

Results 1860 comments of Joe Pea

Run `pkgutil --packages | grep ntfstool` to find the package name, then use `pkgutil --files` installed by the package (which you can then remove). You can also run `kmutil find...

I agree that defaulting to `.js`, `.jsx`, `.mjs`, and `.cjs` is not great because it introduces a variety of issues that clash with JavaScript tools and workflows. (And namely Flow...

I would like this, because for example, if a 3rd-party type definition is not accurate, I would like to augment the class in order to quickly fix it for my...

Hmmm, HTML is case insensitive, so in HTML `fooBar=""`, `FOOBAR=""`, and `fOoBaR=""` set the same attribute: ```js document.body.setAttribute('FoObAr', '123') console.log(document.body.attributes.foobar.value) // 123 document.body.setAttribute('FOOBAR', '456') console.log(document.body.attributes.foobar.value) // 456 ``` EDIT: the...

I overlooked this was a PR hah. About the change, I think it might be fine. At least for me, in my projects I've been writing all attributes lowercase, and...

(deleted previous comment, opens pandora's SSR box). But changes to syntax may require some changes to SSR.

Decorators are non-experimental now in TypeScript 5. Can this please be fixed? 🙏 --- A workaround for this is to escape the ampersand, like this: `\@foo`. This will leave the...

This would be a nice feature. For now the workaround is to create a second account with the bsky.app username but it requires a second email address. For example: -...

Another good reason to have this feature would be that, if people mentioned you with your old `bsky.social` username before you migrated to a custom domain username, we'd want those...

This would be really great. It has been a pain to write code that depends on the realtime value of some element's bounding client rect, and the *only* simple way...