Jason Mansfield
Jason Mansfield
This is not requesting a feature or reporting a defect. I have wasted so much time trying to get SAML working for Go web services. Other libraries haven't seemed to...
``` $ tinygo version tinygo version 0.23.0 linux/amd64 (using go version go1.17.7 and LLVM version 14.0.0) $ tinygo flash -target=arduino-nano33 main.go ... $ cat go.mod module blarg go 1.17 require...
Expected behavior: Calls to `papi.GetGroups` and others should only print debug logs if `papi.Init` was called with a config that has `Debug` set to `true`. Observed behavior: Calls to `papi.GetGroups`...
#### Please confirm you have done the following before posting your bug report: - [ ] I have enabled debug mode - [ x] I have read [checked the Common...
// rotozoom.go package sdl // #cgo pkg-config: sdl SDL_gfx // #include // #include import "C" func (s *Surface) RotoZoom(angle, zoom float64, smooth int32) *Surface { s.mutex.Lock() defer s.mutex.Unlock() return wrap(C.rotozoomSurface(s.cSurface,...
Sooner or later we'll receive a request to take over a project that we probably shouldn't. Maybe there really are better alternatives that are maintained. Maybe the code is too...
This PR is regarding #22. * Adds a config option to `Frontend` called `LetsEncryptPath` (`lets_encrypt_path` in yaml). * If `tls_cert` or `tls_key` are set this functionality is disabled. * When...
Currently, to terminate TLS with `slt` you have to manage the cert on your own. It would be nice to support on-the-fly autoenrollment for a valid cert via Let's Encrypt....
Is there a way to differentiate between devices? I'm developing an OBS overlay to display the currently playing track in each channel. On the Prime 4(+) I get messages with...
There's no obvious way to shut down the `prolink.Network`. Ideally this would watch for cancellation via `context.Context` passed to `Connect()` or to have an explicit `Network.Close()` method. If this project...