Joe Pea

Results 1897 comments of Joe Pea

> The idea is to enable tool-less deployment, not tool-less development. Please consider how many people are discluded if we think this way. There are a lot of buildless developers.

Same issue here. Looks like @peakchen90 doesn't have time for this. `vue-beautify2` plugin works though! (says "no longer maintained", but at least it works).

No more password reset for me too, it just shows ``` Password Recovery - reset instructions sent to ``` with nothing after the "to", and no email.

This is nice! I coincidentally wrote this request in - https://github.com/shoelace-style/shoelace/discussions/2045 for better type support, but I missed this issue was already open and closed just 2 hours ago! 🎉

Here's a similar feature in VSCode: ![](https://i.ytimg.com/vi/cX0tFiFwVz8/maxresdefault.jpg)

Hmm, sometimes Threejs helpers are incorrect. Let me see if I can reproduce that.

@rubenvincenten How would you mix it a certain amount? Can you update it to have the signature `someColor.blendWith(other, amount)` where `amount` is a number between 0 and 100?

Ah, here we go: ```js function(color1, color2, amount) { amount = (amount === 0) ? 0 : (amount || 50); var rgb1 = tinycolor(color1).toRgb(); var rgb2 = tinycolor(color2).toRgb(); var p...

Ah, I see here how example.ts outputs WAT: https://github.com/zksecurity/wasmati/blob/bd399f0236b65ec201202673e8f974a14b001bf6/examples/example.ts#L173C40-L177 Does wasmati itself convert only into bytecode directly? Do we need to do things a certain way to be compatible with...