Results 19 issues of Neven Miculinic

This code: ``` {{< highlight go >}} package main import "log" func add(x int, y int) int { log.Println("We are going to take the sum of two numbers, and leave...

This would be pretty nice building block for reflect type casting; something like: ``` cast.ToReflectValue(i interface{}, value reflect.Values) error ```

Amazon Glacier has three retrieval methods with varying speed and cost: Expedited, Standard and Bulk. Which one mt-aws-glacier uses by default? Is it possible to chose different retrieval method?

question

I have the following code: ```go lifecycle := func(...) { It(...) It(...) } When("", Ordered, func(){ lifecycle(..) }) ``` and it's important that the `lifecycle` function is only called within...

Playwright always writes to stdout/err which isn't always desirable in the test scenario. I'd like to be able to specify which `io.Writer` playwright does write to. See also https://github.com/onsi/ginkgo/issues/851#issuecomment-953474491 issue...

good first issue
p3-collecting-feedback

https://docs.python.org/3/library/typing.html This way python autocomplete engines work better when the function types are known. It would be a considerable improvement in this library since code can be type checked before...

feature
help wanted
evergreen

**Describe the bug** * Action which works correctly on hosted github runners does not work in self-hosted version * **Checks** - [x] My actions-runner-controller version (v0.x.y) does support the feature...

documentation
help wanted
good first issue

https://github.com/Netflix/flamescope has pretty nice trick up it sleeve, which I'd like see integrated into pprof. I can see this feature combining 3 parts: * time/offset based filtering for flamegraph (or...

type: feat
Priority: p2

The setup is as follows: * node -- 10.102.12.217. * vpn node -- 10.102.49.255 * outside client -- 10.103.0.2 * pod (( coredns/busybox )) -- 10.102.11.165. client & node aren't...

In following example: ```go client := &http.Client{Transport: &nethttp.Transport{}} req, err := http.NewRequest("GET", "http://google.com", nil) if err != nil { return err } req = req.WithContext(ctx) // extend existing trace, if...