Alt

Results 229 comments of Alt
trafficstars

Yes, **the current version on NPM** does not support `Uint8Array`. It requires to wrap `Uint8Array` to `Buffer` via `Buffer.from(data)`. In this case it works OK. I think the author should...

> Encountered the same issue with array. > > ``` > const md5 = require('md5'); > let theatreIds = ["040b163b-8797-4406-bf59-07c5445334aa","1d82af48-28b4-4845-aad7-69026ffa2a9f"] > console.log(md5(theatreIds)) > // Output:c4103f122d27677c9db144cae1394a66 > theatreIds = ["a2fcba9e-cc58-435a-b7c9-4a3c4fd8eb06","c0bc4f2b-daca-434a-a6f3-2321863d4362"] >...

After [my message](https://github.com/pvorb/node-md5/issues/49#issuecomment-656864329) the package was updated on 2020-08-02. ![image](https://user-images.githubusercontent.com/16310547/128030854-0113085f-70e4-4210-a24d-3a7669a81293.png) So now it supports `Uint8Array`. Also you do not need to use `FileReader` to take `ArrayBuffer`: ```js md5(new Uint8Array(await file.arrayBuffer()))...

Damn, this move was to be expected. I did a quick fix: https://github.com/AlttiRi/twitter-click-and-save/commit/3b53894ba2448d3286ba2da1d9a8d0e5907214f4 Did not test on FF yet. --- The bad thing is that the history is hostname ([`origin`](https://developer.mozilla.org/en-US/docs/Web/API/Location/origin))...

Seems, it should be worked, will check it in some hours for others bugs. BTW, thanks, that you have reported it here.

> EDIT: For the time being `https://twitter.com/i/api/` still exists as a non-redirected url. You can navigate to this page and open twitter-click-and-save's settings and export history there. Yeah, it's a...

Fine. Just go to https://twitter.com/x/migrate. This link does not redirect to `x.com`. But only it. Then export the history in this user script's popup setting. Then open any x.com page...

As I see, based on my downloads, only `[".jpg", ".png", ".gif", ".mp4", ".htm"]` have no preview. The other extensions like `[".zip", ".rar", ".7z", ".swf", ".psd", ".wmv", ...]` have a preview...

This one helped: > Have you considered getting a new token with `oauth:deviantart`? https://github.com/mikf/gallery-dl/issues/7110#issuecomment-2695459910 ```bash gallery-dl oauth:deviantart ```

You can check with DevTools, that there is no cache disabling headers in the requests neither from the web page, or from the background script. Here is the `fetchURL` is...