Gian-Carlo Pascutto

Results 103 comments of Gian-Carlo Pascutto

GTX 670, GTX 750 (non-Ti), and GTX 1070 tunings attached. One of the GEMV tunings took ages (or hung) on the latter two, but curiously enough not on the (older)...

Intel HD530 (desktop Skylake iGPU) [IntelHD530.zip](https://github.com/CNugteren/CLBlast/files/347625/IntelHD530.zip)

> I am asking because Tracking Protection talks to a classification server. It uses the same API as > Google Safe Browsing (which obfuscates and normalizes URLs before sending them...

I guess the second one is because in a WebExtension context, the following should be set on ```this``` instead of on ```window```: https://github.com/mliebelt/PgnViewerJS/blob/master/dist/js/pgnvjs.js#L10526

```if (window.PgnBaseDefaults.localPath) {``` Checks whether ```window.PgnBaseDefaults``` has a ```localPath``` property. But in fact, if window.PgnBaseDefaults is undefined, we try to look up a property on an undefined object. JavaScript is...

The second problem is much more obscure. The code assumes the ```global``` object is the ```window``` object and sets the i18n config on that, but at least when being executed...

I found this post https://stackoverflow.com/questions/44671610/sandboxed-this-in-firefox-webextension-content-script but it doesn't have a satisfactory answer. Both objects are set in a content script so this shouldn't be an XRay vision problem.

Filed the second issue as: https://bugzilla.mozilla.org/show_bug.cgi?id=1607242 We'll see if this behavior is intentional.

I wish I had properly filed 2 issues now. Anyway, my suggestion here: https://github.com/mliebelt/PgnViewerJS/issues/128#issuecomment-569261183 to replace ```window``` by ```this``` in that line of code appears to be correct. The code...

This is the same issue as #48 I think. Querying the items lets a thread stuff all of the items() into a Queue(). If the Queue() is being consumed, memory...