mmis1000
mmis1000
> How to solve it? A temporary hack ```diff - const terser = require(terserPath); + const terser = eval('require')(terserPath); ``` Locate the line and do a codemod yourself, persist it...
Do `import ::{A} from 'a.js'` still expose the module itself as `this`? If it isn't, then these two statement won't have the same semantic or be interchangeable? (Although it is...
How about the reverse? Anything "imported" from other file was treated as free method regards of how it was imported. Which means. ```js // a export function A () {...
It seems YouTube on browser access the video meta from completely different endpoint currently (most likely directly embedded in the page). The desktop YouTube web itself did not use the...
I guess compute the segment number and insert id yourself isn't technically a "workaround"? Because youtube actually never generate a full manifest for it. Even the youtube web page itself...
> I experience a similar one, the qr code could be detected with all other scanners I have tried: > I have the similar problem, the scanner does not work...
It seems to be vscode's own bug. The vscode use a virtual path to represent cells in a notebook file (you can see the virtual path in the log by...
> It waits forever for the 2456 UDP port. > > docker-compose: > > ``` > services: > valheim: > image: ghcr.io/lloesche/valheim-server > cap_add: > - sys_nice > volumes: >...
Actually, I intentionally ignore the `size` of `_read` and keep the buffer size to a constant to ensure we always has enough data to pipe into the destination right away....
Just for curious, why not big fraction (someone actually implemented that with big int) instead? BigDecimal is effectively fraction but allow only 10 based denominator. If non 10 based denominator...