Radek Simko

Results 290 issues of Radek Simko

This addresses https://github.com/Masterminds/goutils/security/advisories/GHSA-xg2h-wx96-xgxr It seems unlikely that this library would be affected by the vulnerability, but also it is just good practice to keep dependencies up to date.

https://github.com/golang/go/wiki/Modules#gomod This PR is just a result of the following commands (in clean Go 1.11.5 environment): ``` go mod init go get ./... go mod tidy ``` The aim is...

The old version of `gopsutil` doesn't seem to support Apple Silicon (darwin/arm64), causing `debugcharts` to fail to compile entirely on that platform: ``` go: downloading github.com/gorilla/handlers v1.4.2 go: downloading golang.org/x/sys...

Currently the production API endpoint is hardcoded. I believe this should be configurable.

As number of buckets per account is limited, I believe many people will strive to use prefixes and keep related content in the same bucket. Therefore I think an option...

The first time you access the S3 bucket, an extra request is being made to S3 which is in most cases useless. https://github.com/qnub/django-boto/blob/master/django_boto/s3/storage.py#L42-45 ``` python @property def bucket(self): if not...

**Describe the bug** I was trying to debug a memory consumption issue in `terraform-ls` and typically the memory profile is written upon (graceful) exit of the server. I realized that...

feedback requested
language server issue

Tracking version in `.go-version` is useful for scenarios where the user of `goenv` (who has goenv installed locally) is also a maintainer, or simply when the project has `.go-version`. It...

enhancement

Obviously concurrent changes to the same ini file are now prevented via `sync.RWMutex`. This in-memory lock is totally sufficient for most use cases where user needs some safety checks in...

feature
help wanted

### HCL Template ```hcl provider "" ``` ### Parsing logic ```go package main import ( "log" "github.com/kr/pretty" "github.com/hashicorp/hcl/v2" "github.com/hashicorp/hcl/v2/hclsyntax" ) func main() { c, diags := hclsyntax.ParseConfig([]byte(` provider "" `),...

enhancement
parser