Eliah Rusin
Eliah Rusin
Recently Go added `SetIterKey` and `SetIterValue` functions: - https://github.com/golang/go/issues/48294 - https://go-review.googlesource.com/c/go/+/356050/ Maybe it would be useful to implement this functions in `go-reflect`.
Trying to unmarshal a nested YAML into a `map[string]interface{}` fails. If the order of the `path` and `type` keys changes this test will pass. ```go package main import ( "fmt"...
Hi! How I could filter entries in a JSON like this: ```json { "e_ca_subject_field_empty": { "result": "pass" }, "e_cab_dv_conflicts_with_locality": { "result": "NA" } } ``` I want to filter out...
Any thoughts on NATS Streaming Server support? [https://nats.io/](https://nats.io/)
> New data type Object(), which supports storing of semi-structured data (for now JSON only). Data is written to such types as string. Then all paths are extracted according to...
This library only returns `sha-1` and `md5` for `SearchAssets` request: ```go type repositoryItemAssetsChecksum struct { Sha1 string `json:"sha1"` Md5 string `json:"md5"` } ``` Nexus API supports `sha-256` and `sha-512`.
## Usecase As a DevSecOps specialist, I regularly enforce a check stage for all bash scripts in our project repository utilizing [shellcheck](https://github.com/koalaman/shellcheck), a tool that provides linting for bash scripts...
```shell $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 24.04 LTS Release: 24.04 Codename: noble ``` Zulip Server version 9.0 ```shell d**@zulip:~$ sudo -i root@zulip:~#...
Hello! I'm currently in the process of learning `fp-go` and am aiming to apply functional programming principles in Go. To get hands-on experience, I've taken a straightforward task: rewriting a...