Sergei Gnezdov
Sergei Gnezdov
I did not have a chance to look deep into it. So, that's just a guess. When &search_path= method is appended to connection string, it does not impact some of...
Test cases might be giving false positive, because there is table in "public" schema. It is something that I was not sure how to address in abandoned #28.
I am not sure how much I am interested in troubleshooting of this case. My fork https://github.com/Kulak/gue/commits/feat-schema with explicit schema implementation does not have an issue like that. Unfortunately I...
My example to find script element with id \_\_NEXT_DATA\_\_: ```go c.OnHTML("script#__NEXT_DATA__", func(h *colly.HTMLElement) { var js map[string]interface{} err := json.Unmarshal([]byte(h.Text), &js) if err != nil { panic(errors.New("can't parse script#__NEXT_DATA__")) }...
go-daemon is not supported on Windows. Windows has "Windows Services" API infrastructure that's completely different from Unix daemon model. I think there was a separate issue about windows were I...
How can I get this version of extension?
I ended up looking at all forks of this project and there is one that seems to have progressed in the good direction. This fork is easy to spot, because...
IMO it is not as simple as it sounds especially on the return side. Pure NATS client calling convention results in client like this (from my code): ``` func (c...
I have not worked with Java for a decade, so I followed instructions: mvn clean package
I am interested in being able to pass name of the current remote computer, so I command like the following can be written against all computers and not hardcoded to...