On Thursday, 6 June 2019 00:43:22 UTC+2, dol...@gmail.com wrote:
>
> Him
>
> Source Hut actually requires me to create an account to read the mailing
> list. Hmph.
>
That's surprising. I went to https://lists.sr.ht/~eliasnaur/gio-dev with a
private browser session and it showed up fine. The "n
On Jun 5, 2019, at 8:36 PM, Burak Serdar wrote:
>
> On Wed, Jun 5, 2019 at 11:47 AM Randall O'Reilly wrote:
>>
>> It’s great to see that so many people share my considerable enthusiasm for
>> this proposal! Seriously, nobody is willing to take a look and provide any
>> feedback?
>
> This re
On Wed, Jun 5, 2019 at 11:47 AM Randall O'Reilly wrote:
>
> It’s great to see that so many people share my considerable enthusiasm for
> this proposal! Seriously, nobody is willing to take a look and provide any
> feedback?
This reminds me of a proposal I wrote some months ago that uses
existi
On Wed, Jun 5, 2019 at 3:02 PM Michal Strba wrote:
>
> Ian, have you had the time to evaluate the improvements to my proposal (the
> original one in this thread)? I'd love to hear if it has some more significat
> shortcomings and know what to think about. Or, if it has no perspective, I'd
> lov
Michael,
Considering all improvements you've made to the original, is the current
version of your proposal clear to all following this thread ?
On Wednesday, June 5, 2019 at 6:03:12 PM UTC-4, Michal Strba wrote:
>
> Ian, have you had the time to evaluate the improvements to my proposal
> (the o
Him
Source Hut actually requires me to create an account to read the mailing
list. Hmph.
Anyway, I tried to run it on android and web (don't have wayland), and they
work!
It's just weird to interact within a canvas on the web and not get all the
niceties of the classic html controls.
And on and
Ian, have you had the time to evaluate the improvements to my proposal (the
original one in this thread)? I'd love to hear if it has some more
significat shortcomings and know what to think about. Or, if it has no
perspective, I'd love to hear why.
I know you're busy, so responding with "I haven't
-Original Message-
>From: Randall O'Reilly
>Sent: Jun 5, 2019 2:33 PM
>To: Robert Engels
>Cc: Ian Lance Taylor , Michal Strba ,
>golang-nuts
>Subject: Re: [go-nuts] Go 2 generics counterproposal: giving up restricting
>types
>
>That is a good point of clarification about the spe
When you say "set up GC rate(10%) to reduce memory usage down to normal"
what exactly did the program do?
Compute (CPU) costs money and heap memory (DRAM) costs money. Minimizing
the sum should be the goal. This requires one to have a model of the
relative costs of CPU vs. RAM, HW folks balan
That is a good point of clarification about the specific limitation of this
proposal: it specifically reifies the existing Go type system and does NOT
enable the generic-ification of arbitrary novel types. If you can build a
specialized type out of generic versions of existing Go types, then yo
-Original Message-
>From: Randall O'Reilly
>Sent: Jun 5, 2019 1:58 PM
>To: Ian Lance Taylor
>Cc: Michal Strba , golang-nuts
>
>Subject: Re: [go-nuts] Go 2 generics counterproposal: giving up restricting
>types
>
>On Jun 5, 2019, at 12:03 PM, Ian Lance Taylor wrote:
>>
>> On Wed
On Jun 5, 2019, at 12:03 PM, Ian Lance Taylor wrote:
>
> On Wed, Jun 5, 2019 at 10:47 AM Randall O'Reilly wrote:
>>
>> It’s great to see that so many people share my considerable enthusiasm for
>> this proposal! Seriously, nobody is willing to take a look and provide any
>> feedback?
>>
>>
On Wed, Jun 5, 2019 at 10:47 AM Randall O'Reilly wrote:
>
> It’s great to see that so many people share my considerable enthusiasm for
> this proposal! Seriously, nobody is willing to take a look and provide any
> feedback?
>
> - Randy
>
> > On Jun 3, 2019, at 2:53 AM, Randall O'Reilly wrote:
It’s great to see that so many people share my considerable enthusiasm for this
proposal! Seriously, nobody is willing to take a look and provide any feedback?
- Randy
> On Jun 3, 2019, at 2:53 AM, Randall O'Reilly wrote:
>
> I wrote up a coherent proposal based on the core of the idea below,
Nadim, from what you have written I sense that you appreciate (or will
enjoy learning about) the style of programming that emerged with SNOBOL
some time ago. The notion of programming not just by saying "do this, then
this, then..." but at a higher and more conceptual level of *matching*
*situation
Hello, and thank you for your response.
I never intended to suggest that adding pattern matching would allow Go
computational capabilities that it did not previously have. I agree that
switch can be wielded to achieve the same logic in a syntax and structures
that roughly resembles my suggestion.
On Wed, Jun 5, 2019 at 12:10 AM Kurtis Rader wrote:
>
> On Tue, Jun 4, 2019 at 11:53 PM Inada Naoki wrote:
>>
>> conn.SetReadDeadline(time.Now())
>
>
> Did you test that solution? Setting a deadline only affects "future Read
> calls" according to the documentation. It cannot be used to timeout a
On Tue, Jun 4, 2019 at 10:22 PM Nadim Kobeissi wrote:
>
> Two more examples to show off some more cool ways match could be useful.
> Here, I just demonstrate how we can have logic inside matches thanks to
> anonymous functions:
>
> result = match getDayAndDate() {
> "tuesday", _: "wow looks
Thank you!
On Friday, February 26, 2016 at 2:03:55 PM UTC+1, Paulo Coutinho wrote:
>
> Hi,
>
> I have developed a tool to upload ios DSYM to Fabric/Crashlytics. I want
> share to help someone that need it:
> https://github.com/prsolucoes/fabric-upload-dsym
>
> Thanks.
>
--
You received this mes
чт, 16 мая 2019 г. в 19:04, :
>
>
>
> On Wednesday, May 15, 2019 at 5:00:26 PM UTC-4, Vasiliy Tolstov wrote:
>>
>> Hi! I have error from net.InterfaceAddrs() like route ip+net: no such
>> network interface
>> i think that error happened because i have docker running that
>> creates/deletes interfac
Any Frech developer or France-based developers wanting to work on GO or
willing to gain those skills ?
Contact me if so,
Best,
GOGOphers!
Le jeudi 23 mai 2019 15:18:25 UTC+2, lgo...@gmail.com a écrit :
>
> https://utcc.utoronto.ca/~cks/space/blog/programming/GoIsGooglesLanguage
>
--
You recei
On Tue, Jun 4, 2019 at 11:53 PM Inada Naoki wrote:
> conn.SetReadDeadline(time.Now())
>
Did you test that solution? Setting a deadline only affects "future Read
calls" according to the documentation. It cannot be used to timeout an
extant read. Which is what I would expect given the available UN
There are two reason GC is heavy:
a) Many garbages are created very frequently.
b) There are many (living) objects GC need to scan every time. (Because
Go's GC is not generational)
Finding bottleneck of (a) is easy. `pprof -alloc_objects ...` tell you
where many objects are allocated.
(b) is
23 matches
Mail list logo