Marcin Chwedczuk

Results 10 comments of Marcin Chwedczuk

This .NET library has RAR5 (without decryption currently): https://github.com/adamhathcock/sharpcompress It should be much more easier to translate C# -> Java, than C -> Java.

A: I used the instructions from the tutorial that you linked (https://github.com/Gallopsled/pwntools-tutorial/blob/master/installing.md). This was the first Google result when I searched for "pwn tools tutorial". My Kali VM is quite...

I think too that putting it in `setup.py` is a great idea!

I gave permissions to iTerm2 and now I can run my tests from there. I plan to run these tests on CI so maybe I can run them without UI...

I got this error on brach `jfx-13` and JDK 14. To fix update Gradle wrapper to at least 6.3 as described here: https://stackoverflow.com/a/61509462/1779504

Throw `-Wno-return-type` until it compiles (go to the directory with the file, edit Makefile in that directory by adding this flag to CCFLAGS variable). Yeah, would be good to fix...

You can use WebArchive for the time being: https://web.archive.org/web/20190403152015/http://v3.sk/~lkundrak/dev86/ There is not much info on that site anyway.

PS. Previously I used a different approach, I shaded both dependencies and then used moditect to slap a module-info that exports everything: https://github.com/marcin-chwedczuk/img2h/blob/main/gui-nonmodular-dependencies/pom.xml#L83 - but I got a lot of...

I have the same problem with modular app and OpenJDK 21. Workaround: ```java var reflections = new Reflections(new ConfigurationBuilder() .setUrls(ClasspathHelper.forClass(Control.class))); ``` is working fine for me, but searching types by...