Jayen Ashar

Results 32 comments of Jayen Ashar

Hi Graham, Is the new version in docker hub? I'm having trouble figuring out where to put static files for / so that they are served from apache directly. I...

I've used react to build `/`, and I'm using django only for `/rest` and `/admin` (though both of those use `/static`). Looks like I need to move the `/static` react...

Hi @antofthy OOM = Out Of Memory, and the oom-killer is a linux thing that kills processes when the system is out of memory. My issue with the oom-killer is...

i believe the config file is distribution-dependent. i don't believe earlyoom supports a config file directly. so, your distribution's package maintainer probably has created `/etc/default/earlyoom` as well as the service...

The alternative doesn't work for loading images in an ``. Any way to tell capacitor to send the Referer? Here is the code I wrote for the alternative. It shows...

you can try https://github.com/capacitor-community/http as a replacement for window.XMLHttpRequest

I was able to do it with `document.getElementsByClassName("label")[0].click();` Not the most elegant, but pretty simple.

so apparently an array *is* supported, but it's not documented. `_geocode` converts it to an array if the documented object is provided. ```js if (key === 'proximity' && self.options[key] &&...

this is an issue with this example code @andrewharvey gave for https://github.com/mapbox/mapbox-gl-geocoder/issues/364#issuecomment-644495347 as it ends up re-geocoding after selecting a result. ``` geocoder._inputEl.addEventListener('focus', function () { geocoder._geocode(geocoder._inputEl.value); }); ```

as a user, after i select a result, i expect: - the soft keyboard to be closed (any touch screen but especially on mobile) - the results to not be...