Charlie Harding

Results 11 comments of Charlie Harding

Actually I think I misunderstood the form the output takes, as viewport widths are not converted to function calls by this module. I guess I'll have to go without.

How did you get viewport widths to work in the first place? I'm now getting the error "JSON value '30vw' of type NSString cannot be converted to a ABI33_0_0YGValue. Did...

If you only use exact and viewport values (as opposed to percentages), then why would calculating `calc(50vw + 5 px)` be any harder than calculating `50vw`? The output is in...

Hi @jimmykane, Just having a look at Quantified-Self.io, the privacy policy seems very lacking. I am concerned that registration is required (no such registration is needed to access dérive), and...

From a technical point of view, the image could be generated using code such as this: http://javascriptexamples.info/snippet/create-apngjs_qzb_javascript The time can easily be retrieved from the GPX parser: the code is...

While this would be awesome, it would not be possible by URL without paying for hosting. At the moment everything happens on the client side, so the tracks are stored...

When I tried it today, `incPaths.map(incPath => path.resolve(incPath, urlPath.dir));` did work instead of the `for` loop. I'm not really sure what caused the "FATAL ERROR: v8::ToLocalChecked Empty MaybeLocal."

Nice! Are there equivalents for sass, as well as css? At least from the readme it only mentions CSS.

I found https://www.npmjs.com/package/typed-scss-modules for SCSS 😃

@devversion has a function in the constructor been considered? ```ts constructor() { hostBinding('class.hidden', () => this.isHidden()); hostBinding('class.hidden', this.isHidden); // alternative: isHidden is a signal } ```