Adam Pietrasiak

Results 87 comments of Adam Pietrasiak

What about `cmd + shit + p` -> `Disable package` > `Vintageous` and then enabling it back if needed. It's not very fast, but it's not that bad.

My use case is rendering video projects in a video editing app which is based on canvas and WebGL In general, the flow is: prepare the WebGL stage and render...

Sadly, I'm still having the same issue after updating:

It's https://statek.dev/docs Please note that I've added artificial padding to menu elements to compensate font offset. It has bigger top padding now. You can disable CSS rule that adds that:...

Yes! It works now! Thank you so much! https://statek.dev/docs Btw, could you tell a bit more about how did you fix it? Seems you've used some gf-tools, what was the...

> I was working on the concept from last 2 years, but actual production and submission/review/approval took around 6 months. More time is spent in kerning, testing and variations. Wow!...

For me, this issue can be closed as issue seems to be resolved (sadly, it's still not updated on google fonts so I have to self-host it)

Looks very promising. I think it would be great to use it.

I thought I'll share my solution ```ts export type Empty = null | undefined; export function isEmpty(value: any): value is Empty { return [null, undefined].includes(value); } export function removeEmptyElementsFromArray(array: Array):...