Stanimir Stamenkov

Results 101 comments of Stanimir Stamenkov

O.k. So the suggestion is to use: ```java @Path("/rest") public class FooResource { @GET @Path("/foo") @Produces(MediaType.TEXT_PLAIN) public String foo() { return "foo"; } @Path("/foo") public BarResource fooMore() { return new...

> So the suggestion is to use: I may have misunderstood it as with Jersey I'm getting the following: > The following warnings have been detected: WARNING: The resource (or...

> I have not tried this myself but I think this should also work. As far as I'm aware the sub-resource locator needs a `@Path` annotation in order to be...

Here's my experiment (small Maven project): - [request-matching.zip](https://github.com/eclipse-ee4j/jaxrs-api/files/5984189/request-matching.zip) It implements simplified Request Matching – just the path part. It could be extended a bit to filter on request method at...

[request-matching_2.zip](https://github.com/eclipse-ee4j/jaxrs-api/files/5987494/request-matching_2.zip) - Fixed two obvious defects (affecting resource method but not sub-resource method matching; `RequestMatchingSpec.findStep2x()`, `ResourceInfo()`) - Added HTTP method input and filtering on. Here's a sample: ``` Sample duration:...

So, I've thought my comments and analysis are directly related to the original issue I've opened here. I'm commenting and sharing my findings as I haven't yet seen a definitive...

I was experiencing this intermittently in the past and I've identified the cause was not JSONView alone. After disabling all but the JSONView extension the problem was not occurring for...

I have a sample `Bibata-Modern-Ice-Windows-v2.0.4-stanio-1.zip` package I've compiled manually to what would be the expected result, attached to https://github.com/ful1e5/Bibata_Cursor/issues/116#issuecomment-1731767032: | Regular | Large | Extra-Large | |-|-|-| | ![pointer-regular](https://github.com/ful1e5/Bibata_Cursor/assets/1247730/c0efbc95-9922-45fa-9482-f2add0ce217e) |...

_A side note:_ Given the original bitmaps map to "Extra-Large" (fully occupying the canvas), I'm producing the "Large" and "Regular" variants by expanding the original canvas (filling with space to...

Here's a PoC I've come up with: [wincur.zip](https://github.com/ful1e5/Bibata_Cursor/files/12915581/wincur.zip) (Java 11+, source included in the package) ``` alias wincur="java -jar /wincur.zip" alias winani="java -cp /wincur.zip io.github.stanio.windows.AnimatedCursor" ``` **Sample usage** Using the...