Adam
Adam
As the title says, with the example like : ``` package main import ( "github.com/gen2brain/beeep" ) func main() { err := beeep.Notify("Title", "Message body", "") if err != nil {...
Go 1.16 introduces the fs package and a FS interface. Implementing a Jet loader for this seems like an ideal use case. Are there any plans for this, would it...
I'm experimenting with a setup where updates to my UI are received through a websocket connection. These updates may contain arbitrarily complex html so I wanted to make sure to...
Hey, I am working with this client after seeing it being used by Docker swarm and the client feels solid. I'm currently missing a way to build images though: https://docs.docker.com/reference/api/docker_remote_api_v1.16/#build-an-image-from-dockerfile-via-stdin...
**Describe the bug** Given the examples of fx.OnStart/fx.OnStop I would expect the following code to work: ```Go package main import ( "database/sql" "fmt" "github.com/jackc/pgx/v4" "github.com/jackc/pgx/v4/stdlib" "go.uber.org/fx" "golang.org/x/net/context" ) func connect()...
Protobuf allows for defining map fields using a [shortcut notation](https://developers.google.com/protocol-buffers/docs/proto3#maps): `map map_field = N;`. It is mentioned in the language guide that the on-wire format for this is designed in...
**Is your feature request related to a problem? Please describe.** We're dealing with a service architecture that describes maps in different ways in different service (for legacy reasons). Some old...
### Describe the bug As far as I understand it is possible to model a list of lists in dynamodb. So it should be possible to build a name (as...
### Description We're building an API where we scan database rows directly into response structs. Something like this pseudo code: ```Go item := api.MyItem{} // this type is generated by...
Thank you for the work you've put into this library. Love the simplicity! I was wondering if it is possible to run webassembly code? I'm researching the possibility of running...