Farid Zakaria

Results 214 comments of Farid Zakaria

@felixbarny At the company I am we leverage vert.x (essentially Netty) -- as NIO framework the codebase cannot leverage ThreadLocal semantics as code execution jumps from event loop -> worker...

I would find `TraceId` and `SpanId` to the context useful. Right now I'm casting to my implementation (Jaeger) which exposes both. Also it might be useful to make the mechanism...

Yes -- I'm accustomed to structured logging (log4j / slf4j); it wasn't clear that the normal backend is "JUL". Seems like a SLF4J bridge would be very useful to play...

Feel free to send fixes. I haven't worked on this code in a while. It was an afternoon project. Hope it helps you somewhat though.

It needs to build the software `mvn package` to find all the dependencies. > 2020-08-26 21:22:47,832 [Thread-2] WARN : java.lang.UnsatisfiedLinkError: Can't load library: /nix/store/qybd7j6v7kb7yhizc7gklgg3lyrxf38y-openjdk-headless-11.0.8+10/lib/openjdk/lib/libawt_xawt.so

I believe the problem is because i'm running with JDK headless which is missing the libraries needed by this program. I'm testing out switching to normal JDK which will make...

I got something; i'll tag you on the PR @bbigras

I had a WIP for this you can checkout: https://github.com/fzakaria/mvn2nix/blob/jdk8-support/overlay.nix#L6 I was going to add to the overlay, additional versions of mvn2nix. I've been meaning to take another stab at...

I landed the PR above @rafael-brandao please sync your commit. Please take a look at https://github.com/fzakaria/mvn2nix/pull/39 Example would be: ```bash ~/code/github.com/fzakaria/mvn2nix/result/bin/mvn2nix \ --jdk $(nix build nixpkgs.jdk8 && nix eval nixpkgs.jdk8.home...

Thank you for opening the issue. To understand the SNAPSHOT required parsing the `metadata-$repo.xml` files as well. It's quite a large change -- I really want to figure out how...