Sıddık AÇIL

Results 60 comments of Sıddık AÇIL

```yaml name: fq summary: jq for binary formats description: | fq is inspired by the well known jq tool and language and allows you to work with binary formats the...

First BTW: I just realized that I committed to this repo using another git profile. Second BTW: Thanks for the heads-up. I just realized snapcraft is available on Mac and...

I finally got snapcraft working on Mac. We have three problems Snapcraft Go plugin has this line: https://github.com/snapcore/snapcraft/blob/b81550376df7f2d0dfe65f7bfb006a3107252450/snapcraft/plugins/v1/go.py#L307 Which results in the following statement: ```sh go install -p 2 -ldflags...

> any suggestion what to use? All of them are solid options Kubernetes Terraform etc uses slack. Rust's Tokio uses discord and most other projects use gitter. Totally depends on...

One of my OSS friends recommended Zulip. https://waderfq.zulipchat.com/join/eiti77ojarx52b3fzek33mho/

```java @Test void test() { var student = new Student(); student.settlement = "SET"; var studentDto = StudentMapper.INSTANCE.map(student); Assertions.assertEquals(studentDto.settlement, student.settlement); Assertions.assertNull(studentDto.tlement); } ``` This passes. As @filiphr said a minimal reproducible...

Hello, I was able to reproduce your issue and even though I do not have any working knowledge of this library, here are the possible culprits 1. https://github.com/hashicorp/terraform-provider-kubernetes/blob/b5770d4b51a1e1314c0f64b9f2c92cac9be7021a/kubernetes/structure_persistent_volume_claim.go#L82 2.https://github.com/hashicorp/terraform-provider-kubernetes/blob/b5770d4b51a1e1314c0f64b9f2c92cac9be7021a/kubernetes/structure_persistent_volume_spec.go#L388 This...

This is the project mentioned specifically in go grpc validator middleware. Sad to see it is not being maintained anymore. One alternative may be https://github.com/envoyproxy/protoc-gen-validate but have not tried that...

I had a go about this and could get Unwrapping aspect working. The `JsonSerializer` has a `unwrappingSerializer` method that is called within `UnwrappingBeanPropertyWriter` that sort of lifts the serializer into...