Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread 'Axel Wagner' via golang-nuts
On Sat, Jun 24, 2023 at 3:03 AM cpa...@gmail.com wrote: > If 100 people are on a boat and 51 want to sink the boat is that fair to > the 49 who want to live? This is not a life-or-death situation and such comparisons are almost universally unhelpful, as you literally do not have a choice in

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread cpa...@gmail.com
If 100 people are on a boat and 51 want to sink the boat is that fair to the 49 who want to live? You’re taking a resource away from others. If someone wants to protest Walmart they don’t burn it down. On Friday, June 23, 2023 at 4:37:20 AM UTC-4 Axel Wagner wrote: > On Fri, Jun 23, 2023

[go-nuts] Re: odt: an OpenOffice/LibreOffice document parser

2023-06-23 Thread Jason E. Aten
Awesome. On Thursday, June 22, 2023 at 2:56:13 PM UTC+1 Sebastien Binet wrote: > hi there, > > I've just cut [`o...@v0.1.0`][1], an OpenOffice document parser, > "automatically" generated from the RelaxNG specification document. > > `odt` also provides `odt2md`, a command that tries its best to

Re: [go-nuts] Re: 'go run hello.go' taking ~30 seconds on windows

2023-06-23 Thread Rajesh Pandian
Hi Declan, What's the full code? Also have you tried using https://learn.microsoft.com/en-us/sysinternals/downloads/procmon and see what it does? On Friday, June 23, 2023 at 10:04:24 AM UTC+5:30 Henry wrote: > I am running Windows 11 with Kaspersky. I don't have such problems. When > it

[go-nuts] Re: 'go run hello.go' taking ~30 seconds on windows

2023-06-23 Thread jake...@gmail.com
This may be related. I have always had a significant delay when building Go programs on Windows. It mostly happens the first time I build, if I have not built recently. A normal build of a simple program is about 3 seconds of wall clock time, whereas it can take over 20 seconds when it is being

[go-nuts] Re: How do you use traceback ?

2023-06-23 Thread Jason E. Aten
I'm not sure what traceback refers to, but for me, debug logging with file:line number is essential, and I use the approach here https://github.com/glycerine/vprint On Thursday, June 22, 2023 at 10:49:31 AM UTC+1 wilk wrote: > There is a proposal to add a trace only opt-in at error level. >

Re: [go-nuts] delve crashes in presence of a circular reference variable

2023-06-23 Thread Jan Mercl
On Fri, Jun 23, 2023 at 10:38 AM christoph...@gmail.com wrote: > > Here is the minimal example code causing delve 1.20.2 to crash with a stack > overflow > > func TestExample(t *testing.T) { > type pptr *pptr > var p pptr > p = > t.Error("hello") > } > > Here is the stack trace

[go-nuts] Re: delve crashes in presence of a circular reference variable

2023-06-23 Thread christoph...@gmail.com
I should have added that the debugger crashes when it reaches a break point after the p = instruction or steps over this instruction. It doesn't crash when there is no break point. Le vendredi 23 juin 2023 à 10:38:32 UTC+2, christoph...@gmail.com a écrit : > Here is the minimal example code

[go-nuts] delve crashes in presence of a circular reference variable

2023-06-23 Thread christoph...@gmail.com
Here is the minimal example code causing delve 1.20.2 to crash with a stack overflow func TestExample(t *testing.T) { type pptr *pptr var p pptr p = t.Error("hello") } Here is the stack trace goroutine 6 [running]: runtime.deductAssistCredit(0x108?)

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread 'Axel Wagner' via golang-nuts
On Fri, Jun 23, 2023 at 10:29 AM Jan Mercl <0xj...@gmail.com> wrote: > On Fri, Jun 23, 2023 at 10:18 AM Axel Wagner > wrote: > > > Just for context, as not everyone seems to be aware: I was, in that > sentence you quoted, referring to examples like this > > >

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread Jan Mercl
On Fri, Jun 23, 2023 at 10:18 AM Axel Wagner wrote: > Just for context, as not everyone seems to be aware: I was, in that sentence > you quoted, referring to examples like this > https://www.reddit.com/r/ModCoord/comments/14eq8ip/the_entire_rmildlyinteresting_mod_team_has_just/ > This

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread 'Axel Wagner' via golang-nuts
Just for context, as not everyone seems to be aware: I was, in that sentence you quoted, referring to examples like this https://www.reddit.com/r/ModCoord/comments/14eq8ip/the_entire_rmildlyinteresting_mod_team_has_just/ This demonstrates that even with overwhelming support from the community (and

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread 'Axel Wagner' via golang-nuts
There exists more than one subreddit. On Fri, Jun 23, 2023 at 9:38 AM Jan Mercl <0xj...@gmail.com> wrote: > On Fri, Jun 23, 2023 at 7:01 AM 'Axel Wagner' via golang-nuts < > golang-nuts@googlegroups.com> wrote: > > > And even *when* they ask and get overwhelming backing from their > communities,

Re: [go-nuts] Please consider voting to reopen Golang subreddit

2023-06-23 Thread Jan Mercl
On Fri, Jun 23, 2023 at 7:01 AM 'Axel Wagner' via golang-nuts < golang-nuts@googlegroups.com> wrote: > And even *when* they ask and get overwhelming backing from their communities, ... Latest poll results on r/golang as of now: [image: image.png]

[go-nuts] Export fs.FS as FUSE fs

2023-06-23 Thread Tamás Gulácsi
Hi, Does anyone know an existing solution for exporting an fs.FS as a FUSE filesystem? As fs.FS is standard now, this would open several new possibilities, as a lot of interesting fs.FS implementations exist (zip, tar, DB, embedded, union ), and this one little glue code could export them