[go-nuts] Docker container vscode debugging issue

2023-06-10 Thread Michael Odumosu
Greetings I am trying to debug an open source pacakge hashicorp vault from a docker container, I am using vscode remote debugging however its not stopping on any of the breakpoints. I tried changing the remote path according to this article but no luck, the reason I am debugging hashicorp

Re: [go-nuts] Re: Amateur's questions about "Go lang spec"

2023-06-10 Thread Kamil Ziemian
Thank you for encouraging words about generic in spec. Knowing that much more skilled people than I also have problem with understanding this part of spec, give my self assessment a boost. sobota, 10 czerwca 2023 o 21:44:22 UTC+2 Axel Wagner napisał(a): > If it helps, I don't think I really

Re: [go-nuts] Re: Amateur's questions about "Go lang spec"

2023-06-10 Thread 'Axel Wagner' via golang-nuts
If it helps, I don't think I really understand the generics parts of the spec myself. On Sat, Jun 10, 2023 at 7:13 PM Kamil Ziemian wrote: > This is not a complaint, but a reflection. I have read, as careful as I > can, the half of the Go Spec and if I didn't learn how parametric > polymorphism

Re: [go-nuts] Re: Amateur's questions about "Go lang spec"

2023-06-10 Thread Kamil Ziemian
This is not a complaint, but a reflection. I have read, as careful as I can, the half of the Go Spec and if I didn't learn how parametric polymorphism (generics; did I spell it right) should work from proposals and talks on YouTube, I would probably understand 30% less from it. I know that how

Re: [go-nuts] is running interactive or not

2023-06-10 Thread Robert Engels
No need to even think about this. Look at ssh and mimic their practices. It has been thoroughly audited. > On Jun 10, 2023, at 5:35 AM, quin...@gmail.com wrote: > > there has been much discussion in the past about programs that modify their > behaviour depending on what stdout is; >

Re: [go-nuts] is running interactive or not

2023-06-10 Thread quin...@gmail.com
there has been much discussion in the past about programs that modify their behaviour depending on what stdout is; http://harmful.cat-v.org/cat-v/unix_prog_design.pdf i do to want to start a war, just suggest a different approach is available. my suggestion would be to always expect a password

[go-nuts] smarter way to provide interface capabilities from underlining interface

2023-06-10 Thread Vasiliy Tolstov
I have sql driver that wraps original driver.Driver, to be able to work with drivers that not have ExecerContext or QuerierContext i need to return wrapped to that supports only needed interfaces. I'm to want to write all cases via handmade switch case and write generator that creates full combo