Md. Touhidur Rahman
Md. Touhidur Rahman
Also now that I think about it. How would you know if this is a server or client thing if when you try to join a game, you see yourself...
> Trouble with client side is you can easily change system time. > > Also, how would the system then pass the game to the next player? Fetch the time...
> I think multiplayer server should use websockets instead of constant polling preview save each 500ms. With websockets server can distribute save instant when is pushed by other player. With...
@mfornet no problem parsers? just curious why did you only add contest parsers.
Can you provide a link to the problem that you are trying to parse also?
Hi, @Yerosius. Can you provide some problem links so that I can test this?
> I can't tell what you're running. You can check that directory to make sure it has a 'jvm.dll' file in there with the proper directory structure. In short it...
@karlsabo from my tests: ```bash admin@touhidurrr:~ $ find /usr/lib/jvm/temurin-11-jdk-armhf | grep -P 'jvm.dll|libjvm.so|libjvm.dylib' /usr/lib/jvm/temurin-11-jdk-armhf/lib/client/libjvm.so /usr/lib/jvm/temurin-11-jdk-armhf/lib/server/libjvm.so admin@touhidurrr:~ $ find /usr/lib/jvm/java-11-openjdk-armhf | grep -P 'jvm.dll|libjvm.so|libjvm.dylib' /usr/lib/jvm/java-11-openjdk-armhf/lib/server/libjvm.so ``` As you can see the...
Ignore https://github.com/libgdx/packr/issues/220#issuecomment-1127826862, I forgot this was a Windows specific issue. Also my analysis isn't correct.
For Temurin: ```bash ~$ find . | grep -P 'jvm.dll|libjvm.so|libjvm.dylib' ./bin/client/jvm.dll ./bin/server/jvm.dll ``` for OldJDK ```bash $ find . | grep -P 'jvm.dll|libjvm.so|libjvm.dylib' ./jre/bin/server/jvm.dll ``` does it doesn't work because...