Jed Fox
Jed Fox
Ref: https://github.com/mastodon/mastodon/pull/22706#issuecomment-1401116403 I wasn’t aware that it was even possible to update user preferences from a third-party app, so this PR adds links both ways to show that it’s possible.
The first time I visited the Mastodon docs, I felt intimidated/confused by the amount of information in the sidebar. This PR helps remedy that by collapsing all of the sections...
**Is your feature request related to a problem? Please describe.** I would like to have a way to get into a new notebook with one click, ideally with a couple...
This app could use [Keybase](https://keybase.io) to mange trust, with a bot account following verified users to indicate their keys should be trusted.
Currently, if you save the file when there’s a syntax error in it, mprettier opens a notification that points out the error. However, when saving the document multiple times, the...
Currently, if some text is selected when formatting, that region is sliced out of the document and passed to Prettier. However, this can cause Prettier to fail if the selection...
This allows scripts like React to properly listen to the `error` event, allowing better debugging.
This makes more sense to me, especially because it reduces dependence on another proposal, and takes advantage of the `of` feature of enums.
Spec section: https://drafts.css-houdini.org/css-typed-om/#the-stylepropertymap Current implementation: ```ts interface StylePropertyMapReadOnly { (undefined or CSSStyleValue) get(USVString property); } ``` I think this should be: ```ts interface StylePropertyMapReadOnly { CSSStyleValue? get(USVString property); } ```...
The standard for names in Swift is camelCase, but most websites use kebab-case for URL components. I see three different ways to reconcile this: 1. Stick to camelCase URLs. This...