Marko Zabreznik
Marko Zabreznik
I would like Dash to include the MDN section "[Add-ons](https://developer.mozilla.org/en-US/Add-ons)". I did look into making the docset myself since the docs are available in the same format as the [kapeli...
1. Is there a way to run multiple SQL Statements and get multiple result sets within a single call? ExecuteSql supported this https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_ExecuteSql.html 2. Is there a way to get...
Looks like the new electon built in pdf viewer works great but there is a issue with loading pdf's with GET parameters. Looking at the dev tools I can see...
When there is a faulty value while in scale mode, there is a faulty fallback: https://github.com/bjornd/jvectormap/blob/master/src/data-series.js#L115 `attrs[cc] = this.elements[cc].element.style.initial[this.params.attribute];` where it should be `attrs[cc] = this.elements[cc].element.shape.style.initial[this.params.attribute];` as jvm.Region does not...
As this is a webextension there should not be any reason to limit it to Chrome, so I went ahead and did a port and built/signed a firefox version based...
Uploading a image with the extension .jpeg but that is actually a gif makes imagemagic puke. See enclosed gif. 
Images that are smaller then the wanted size get scaled up. It would be nice to have some a option to upload the full image in that case. This is...
`menu.py` importing has a catch all that hides all errors making you think the plugin is not working when your code is at fault https://github.com/borgstrom/django-simple-menu/blob/master/menu/menu.py#L75 My snippet: ``` try: __import__(menu_module,...
Is there a plan to replace `uuid` with `crypto.randomUUID()` ? Even the library itself [recommends](https://www.npmjs.com/package/uuid) it in cases you only need UUIDv4.