Voile
Voile
Example fiddle: https://jsfiddle.net/t9onha6p/ The request URL sent out is ``` https://sampleserver6.arcgisonline.com/arcgis/rest/services/Earthquakes_Since1970/MapServer/0/query?returnGeometry=true&where=%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27%20AND%20%271%27%20%3D%20%271%27&outSR=4326&outFields=*&inSr=4326&geometry=%7B%22xmin%22%3A-126.5625%2C%22ymin%22%3A36.59788913307022%2C%22xmax%22%3A-123.75%2C%22ymax%22%3A38.82259097617713%2C%22spatialReference%22%3A%7B%22wkid%22%3A4326%7D%7D&geometryType=esriGeometryEnvelope&spatialRel=esriSpatialRelIntersects&geometryPrecision=6&resultType=tile&f=json ``` Which has 2329 characters.
I think escaping `'` and other characters according to RFC 3986 is perfectly fine: it's better to overestimate request URL length than to underestimate it. In the former case you're...
This is a **MASSIVE** issue because the window width threshold used for mobile detection would treat iPad Pro as desktop, making various touch-related interactions unusable on iPad Pro. Hence it's...
@Alexufo I don't think the most common use for iPad Pro is to use it as a hybrid device (it's not even the *default* use case), so my point was...
Showing "chance next second" is kinda pointless IMO because golden cookie is a [homogenous Poisson process](https://en.wikipedia.org/wiki/Poisson_point_process) which is memoryless, aka the notion that the chance is instantaneous is misleading. A...
> I know it's not always possible to avoid reference solutions, but it's possible more often than not I strongly disagree with this. In particular, you seem to have ignored...
If you have nothing to add to this topic perhaps you shouldn't leave a comment showing off-topic support anyway (that kind of thing belongs to Discord or somewhere else). I...
> Having a reference solution, authors rely too much on a technique of randomly spraying RNG and feeding whatever it generates into ref solution, then into a users solution, and...
This mostly has to do with stdout flushing, and is universal across languages. If you manually flush stdout whenever control enters user function, it works fine again.