[go-nuts] Re: Web development with Go

2022-02-06 Thread 'merson.mat...@actmedical.com.au' via golang-nuts
Of course, Brian. I meant the CA Certificates. Merson On Saturday, February 5, 2022 at 8:11:49 PM UTC+11 Brian Candler wrote: > On Saturday, 5 February 2022 at 00:05:18 UTC merson...@actmedical.com.au > wrote: > >> the same app >> rewritten in Go reduces the size by a huge amount as the only

[go-nuts] Re: Is Go good choice for porting graph based app?

2022-02-06 Thread Mike Schinkel
Kamil, Are the JSON files using a set schema, or could they be any arbitrary schema? Not that the latter can't be handled by Go, but IMO Go excels at the former because of ability to statically type. -Mike On Sunday, February 6, 2022 at 6:15:25 AM UTC-5 kziem...@gmail.com wrote: > Thank

Re: [go-nuts] decoding DWARF data

2022-02-06 Thread stephen.t....@gmail.com
Reader.SeekPC() is useful. Thanks. The problem was due to my misunderstanding of how inlined functions are represented in the DWARF data. I've solved it now. Thanks again. On Saturday, February 5, 2022 at 6:49:06 PM UTC Ian Lance Taylor wrote: > On Sat, Feb 5, 2022 at 1:45 AM

Re: [go-nuts] Going thorough "Type parameters proposal" with Go 1.18 beta

2022-02-06 Thread Kamil Ziemian
Thank you so much, about explanation. This is the first time that I hear about named type and unnamed type in Go. Thank you even more for giving my another reason to learn Go Spec. I try it before, but then I was lost in section about runes, so I go to learn UTF-8. But soon enough I understand

[go-nuts] Re: Is Go good choice for porting graph based app?

2022-02-06 Thread Kamil Ziemian
Thank you Sebastian Binet, I need to check more gonum project. You are right drv drv that Python is not true culprit here. Problem is that it seems a bad written code. Maybe after a while I will change my mind about it, but it looks bad right now. Here you have list of dependencies that came