Deleted user

Results 132777 comments of Deleted user

the sprite isnt a direct rip but it is a nigh-copy of "justice" from sanabi, along with literally using the name, and yeah the sprite doesnt fit in at ALL,...

I meant this whitespace can be used for video content or it could be centered when suggestions are removed ![image](https://github.com/user-attachments/assets/8a319043-ee9f-41d5-93c6-d91c5f7a2dfb)

@javiergcim how can i turn off eye exposure in makeup? i cannot find a single setting for this. makeup is the only shader i can run on my macbook air...

I came across this documentation that recommends getting rid of `*.js.map` files, this will also produce missing sourcemap warnings. https://webdev.dartlang.org/angular/guide/deployment#remove-unneeded-build-files

How can i be able to solve this command 'firebase.dataConnect.executeOperationAtCursor' not found.

Personally, I don't feel that the non-closure/block use cases of this are really strong enough to warrant adding this, and the closure/block use case can be fixed with `clone` blocks....

What about validation of [JSON schema's `patternProperties` regex](https://json-schema.org/understanding-json-schema/reference/object.html#pattern-properties) in TypeScript interfaces for the parsed object? This is a PERFECT application of the regex-validated string feature. Possible syntax using a `matchof`...

(CC @Igmat) It occurs to me that there's a leaning towards using regex tests as type literals in #6579, i.e. ```typescript type CssColor = /^#([0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/i; const color: CssColor = '#000000';...