Tom MacWright

Results 366 comments of Tom MacWright

This would not be a simple change: vector tiles only work well in Mapbox GL, and raster tiles work well in Leaflet, which is what this project is based on....

The clean solution to this is that we disable Cloudflare's WAF. There are threads about this, https://community.cloudflare.com/t/disable-waf-on-domain-and-subdomain/384737 - basically we want Cloudflare's proxing but not the WAF, and it'd be...

I'm not sure if we should port over simplestyle support at all in the first revision; Mapbox abandoned it, no other organizations adopted it. It was a nice and semi-standardized...

High-level wise, it's far out of scope for this project to be the first implementation of a new style spec. In terms of the specific proposal: per [previous discussions](https://github.com/mapbox/geojson-coordinate-properties/issues/6), I...

Okay, well - my position is that I'll implement an "improved / better-liked style spec" if one exists. But probably won't write another spec of that sort, or throw a...

Yes, looks like the [changelog mentions updating to node v14 but not the move to native esm](https://github.com/documentationjs/documentation/blob/master/CHANGELOG.md#1400-alpha0-2022-08-05). You'll need to use `import` for 14.x

[jsondiffpatch](https://github.com/benjamine/jsondiffpatch) does this with an [LCS](https://en.wikipedia.org/wiki/Longest_common_subsequence_problem) algorithm

This is the method that calculates how to sort non-makable recipes: https://github.com/tmcw/flair/blob/304ac4609ac00fde8156ea0e9a6607d354c6c07a/front/src/Main.elm#L556-L564 It takes into account how many ingredients the recipe has, not just which are available - so, for...

I really dislike the JSDoc style here, in large part because, despite representing a list, it doesn't actually require any kind of order. So properties of an object might be...

Yep, that's where I'm thinking too - from #2 - > In Flow files, interpret 'documentation types' as Flow syntax, and in TypeScript, the same. In normal javascript files, the...