Julien Voisin

Results 219 comments of Julien Voisin

It's still happening on my side: the first load of every page is super-uber-duper slow, like 10s to 20s. The subsequent ones are fast though.

https://github.com/elceef/ppdeep looks even simpler.

This is what we're using: ```nginx location ~ ^/static/media/logo\.[0-9a-f]+\.png$ { alias /home/mwdb/logo.png; } location /favicon.ico { alias /home/mwdb/favicon.png; } ``` ![image](https://user-images.githubusercontent.com/325724/190147742-8b787451-8112-4f9b-bdac-29b2b506bb1a.png)

Maybe suggest doing so in the `rebuildctl pkgs log` error message?

For the record, this issue is [affecting]( https://0xacab.org/jvoisin/mat2/issues/121 ) [mat2]( https://0xacab.org/jvoisin/mat2/issues/120 ).

Is the lua bytecode even specified?

I thought about keeping everything, but it would murder the performances. A better way would be to have a better monitoring of the fuzzee's process, to detect this kind of...

You can always use something like this I guess: ```python import ctypes i = ctypes.c_char(b'a') j = ctypes.pointer(i) c = 0 while True: j[c] = b'a' c += 1 ```

Then the comment above the function should be fixed/improved I think :)

I can't reproduce this locally with Python3.8 Can you give it an other on the current master?