Mateusz Naściszewski

Results 20 comments of Mateusz Naściszewski

In the last unaffected commit, it seems that neither `_rjem_malloc_stats_print` nor `je_malloc_stats_print` exist. I'll compile Servo without modification and look through the symbols. EDIT: Seems like it's just `je_stats_print`, but...

stats from servo/servo@6f52b331b8c6c38405964cdeacbc9f771c70b18c [last good commit]: https://ipfs.io/ipfs/QmX4W1UegaFjrtyZV2hETgxhuGkYwAJ6vov5bBfcbRrDK6/stats.good.txt stats from servo/servo@959ce482dd9f2f8c469964b8c258bd3e45f7ca2b [first bad commit]: https://ipfs.io/ipfs/QmX4W1UegaFjrtyZV2hETgxhuGkYwAJ6vov5bBfcbRrDK6/stats.bad.txt

Allowing the path to the index to be customized seems unexpected, especially with how the two configuration flags interact. My expectations before this PR: If defaultIndex is true: Register a...

I would also like to have this, I'm interested in having both echo + logprobs, so I can get information about the prompt too, instead of just the completion. Right...

This PR broke the ability to access a non-default index.html page at the root. The regex should use `.*` instead of `.+`.

I have scraped the entirety of xkcd.com and ~~some of it's subdomains~~ (Apparently cross-subdomain interlinking didn't work), the result is a very well functioning copy, available at the end of...

I'm not very experienced with ytdl code, so this is extremely hacky, but I've been able to implement a poor proof of concept. It works for downloading videos when yt-dlp...

To anyone who wants to implement this: Seems like there are actually two kinds of URL formats youtube uses, one of them I believe is used for DASH (live videos,...

Additionally, here's a patch I'm using to block the specific server that doesn't work for me, might work as inspiration for where to place the fallback urls in the extractor...

Out of curiosity (and because I've been getting a lot of libc malloc()/free() memory corruption) I ran Valgrind on Servo. It seems that `ipc_channel` reads uninitialized values at times. @emilio...