I pre-ordered it a while back; I love the Parallelism chapter. Cleared up a lot of things for me as to the concurrency model of Nim.
Show HN: Nim in Action
31–40 of 44 posts
Re: Show HN: Nim in Action
#32Nice work! I just ordered both physical copy and ebook from Manning.
Re: Show HN: Nim in Action
#33Earlier quoted context omitted.
Optional garbage collection, with choices on which type of garbage collection.
I wonder how well the Nim standard library handles this. D has been controversial with this because the standard library expected GC to be enabled although allowing it to be disabled. I think this story has improved but it may have hurt adoption as a systems programming language that is now hard to restore.
Re: Show HN: Nim in Action
#34I see there is supposed to be videos that didn't make it into the book. What subject matter will those cover?
Currently my plan for these videos is a couple of "how to"s for Nim. For example: a simple one showing how to install Nim.
Re: Show HN: Nim in Action
#35Now that there'e even a book about Nim, what kind of production-level code do people write with it ? As a Python lover, Nim looks very nice on the surface...
Re: Show HN: Nim in Action
#36Now that there'e even a book about Nim, what kind of production-level code do people write with it ? As a Python lover, Nim looks very nice on the surface...
My company has several Nim services in production. Here's an open-source component I wrote that we use: https://github.com/makingspace/syphus-nim
Re: Show HN: Nim in Action
#37Earlier quoted context omitted.
I wonder how well the Nim standard library handles this. D has been controversial with this because the standard library expected GC to be enabled although allowing it to be disabled. I think this story has improved but it may have hurt adoption as a systems programming language that is now hard to restore.
Sadly this is something that Nim can also improve on. I will actually be looking into getting the stdlib ready for the highly sought after 1.0 release and will be keeping this in mind.
Re: Show HN: Nim in Action
#38Earlier quoted context omitted.
Sadly this is something that Nim can also improve on. I will actually be looking into getting the stdlib ready for the highly sought after 1.0 release and will be keeping this in mind.
The stdlib not working without GC, making not truly optional, is one of the main reasons I stopped using nim - though I haven't checked if this is better in some time.
Re: Show HN: Nim in Action
#39Earlier quoted context omitted.
Sadly this is something that Nim can also improve on. I will actually be looking into getting the stdlib ready for the highly sought after 1.0 release and will be keeping this in mind.
The stdlib not working without GC, making not truly optional, is one of the main reasons I stopped using nim - though I haven't checked if this is better in some time.