Joe Pea

Results 1897 comments of Joe Pea

> I'm curious how Ember compares Me too! I updated the OP to make it more clear what a framework has to do to get 100%. Wanna give it a...

Oh ok. I'm guessing this means the byte code would need to be generated after decorator application instead of before (as far as for the initializer function) (the byte code...

Yeah, specificity and cascade are already an "issue" for many people. It is often the case that people don't intend to change specificity when they modify a selector, they only...

I hit this. I'm able to reproduce it by navigating with the directory explorer. When clicking on folders, it inserts an extra slash `/` in the URL, and when this...

Oops, n00b mistake, the directory listing in my reproduction is 3rd party from https://github.com/wesbos/vite-plugin-list-directory-contents, so that part not something to fix in Vite, but it exposed the Vite issue.

As a workaround, you can use an interface instead like this: ```ts interface StringOrNumberSum { (a: number, b: number): number (a: string, b: string): string } export class Summer {...

I'm having the issue too. It puts a rectangle around the dock's, after removing the dock's own background. ![Image](https://github.com/user-attachments/assets/c42c3b9b-b564-44b8-8b92-31de697014fb) (the blur is incorrect whenever I take a screenshot, so the...

Hello! Sorry for the lag! Interesting problem. Its a matter of expressing everything you need in `Variable`s, and running it multiple times for the for each set of conditions. Have...

I'm not very familiar with this space, as I'm using Kiwi via lume/autolayout as a high level layout system for UI. But I found this as a starting point: https://developers.google.com/optimization/lp/lp_example

I looked over the docs and code to get more familiar with kiwi, and found that this, ```js // Create edit variables var left = new kiwi.Variable() var width =...