Maxim

Results 16 comments of Maxim
trafficstars

@donnemartin fish shell incompatible with `gh_complete.sh` http://stackoverflow.com/questions/20838284/how-can-i-provide-tab-completions-to-fish-shell-from-my-own-script

Test: ``` go package main import ( "github.com/advancedlogic/GoOse" ) func main() { g := goose.New() article := g.ExtractFromUrl("http://habrahabr.ru/post/230885/") println("title", article.Title) println("description", article.MetaDescription) println("keywords", article.MetaKeywords) println("content", article.CleanedText) println("url", article.FinalUrl) println("top image",...

@boojongmin-gm > how to use pgtype.Point type on gemetry type when insert sql? you can use `paulmach/orb` package. ``` package geotype import ( "database/sql/driver" "github.com/paulmach/orb" "github.com/paulmach/orb/encoding/wkt" ) type OrbGeometry struct...

@vmihailenco Schema creation (`db.NewCreateTable().Model(m).Exec(ctx)`) is not work with `::point`. Example ``` `bun:"geom,notnull,type:geometry(Point, 4326)::point" json:"-"` ``` Error ``` ERROR: syntax error at or near "::" (SQLSTATE=42601) ```

![image](https://github.com/donnemartin/gitsome/assets/862272/85f5852c-ad9c-41d2-8b60-33c10a391ddd)

danielqsj/kafka_exporter has consumergroup_lag and is still alive. Last commit 2 months ago vs 3 years ago in davidmparrott/kafka_exporter danielqsj/kafka_exporter is better and more stable

Same problem with grafana-agent ``` resource "helm_release" "grafana-agent-helm" { name = "default-agent" repository = "https://grafana.github.io/helm-charts" chart = "grafana-agent" } ```

in my opinion need to remove this condition completely

jfyi example if i understand correctly ``` smtp_mailer: auth_type: "CRAM-MD5" ``` right? ``` const ( // SMTPAuthLogin is the "LOGIN" SASL authentication mechanism SMTPAuthLogin [SMTPAuthType](https://pkg.go.dev/github.com/wneessen/go-mail#SMTPAuthType) = "LOGIN" // SMTPAuthPlain is...