Piotr K.

Results 12 issues of Piotr K.

The problem is defined [here](https://stackoverflow.com/questions/5778658/how-to-convert-outputstream-to-inputstream) I see you have `TeeInput`, and `TeeOutput` but I couldn't make it with them. It is possible with `PipedInputStream/PipedOutputStream` but similar classes aren't available in...

0crat/scope
0crat/role/DEV

Let's zip some files. ``` final Path folder = new TempFolder("abc").value(); new LengthOf( new TeeInput( new InputOf("A"), new OutputTo( new File(folder.toFile(), "A.txt") ) ) ).value(); new LengthOf( new TeeInput( new...

0crat/scope
0crat/role/DEV

Can you make releases more frequent? The most recent one is from on Jan 26, 2019 while you regularly fix bugs on weekly basis.

0crat/new

According to the RESTful API design web services should be specialized around resources and their granularization e.g. `PUT /companies/{id}/locations/{id}/employees/{id}` Building RESTful API services using Takes have problems: - One has...

0crat/new

I have such code ``` return zip.getEntry("routes.txt").getSize() + zip.getEntry("stops.txt").getSize() + zip.getEntry("trips.txt").getSize() + zip.getEntry("shapes.txt").getSize() + zip.getEntry("stop_times.txt").getSize(); ``` All `getSize()` methods return type `long`. And yet I get `StringLiteralsConcatenationCheck` Checkstyle warning.

help wanted

In the [blog](https://www.yegor256.com/2015/07/28/checked-vs-unchecked-exceptions.html) I can read "use only Exception, without any sub-types.". But when I catch and re-throw Exception I have qulice failed with PMD: Avoid catching generic exceptions such...

I want to make a big document like this: ``` final Directives dirs = new Directives() .add("a"); for (final Element elem : blist) { dirs.add("b1").attr("id", 1); } for (final Element...

In short, `filename` in `Content-Disposition form-data` is hardcoded to `"binary"` and make it impossible to set a custom filename.

0crat/new

According to [this](https://github.com/yegor256/takes/issues/997) each ticket has a deadline of 10 days before 0crat assigns it to another developer. This does not happen.

There is a problem with extending the bootstrap connector bundle with custom library. Steps to reproduce: 1. Create a small custom library having just one class in it. ``` public...