Samuel Berthe

Results 97 issues of Samuel Berthe

Today we only keep an ordered list of service inception. It would be awesome to keep track of a real dependency graph in a doubly-linked list or anything similar. Other...

@CorentinClabaut Can i ask for a quick review please ? I don't really like the naming of these helpers. Do you have a better idea? I think we can also...

Example: ```go even, odd := lo.FilterXXX[int]([]int{1, 2, 3, 4}, func(x int, _ int) bool { return x%2 == 0 }) ``` I would name it `lo.Filter2` but it looks weird....

Some languages like Typescript or Swift offer a very cool syntactic sugar `a?.b?.c?.d?.e`. In Go, we need to write a condition similar to: `a != nil && a.b != nil...

Some experimentations: ```go type a struct { foo *string } type b struct { a *a } type c struct { b *b } v := &c{ b: &b{ a:...

Let's talk about a new suite of helpers for manipulating channels. ```go // ToChannel returns a read-only channels of collection elements. func ToChannel[T any](collection []T)

- ToChannel - Batch - BatchWithTimeout - Generator Discussed here: #94

Have you considered working on mobile SDKs (Android + iOS + ReactNative + Flutter) for session recording?

feature-request

Hi there 👋 I am looking for alerting rules that fit with this exporter, in order to feed an "awesome" collection: https://github.com/samber/awesome-prometheus-alerts The goal is to offer "out-of-the-box" rules in...