Forum Overview :: Shadowrun
 
I'm really enjoying Go by Entropy Stew 09/01/2013, 7:52am PDT
Not only is it nice, it's profoundly useful almost immediately, so my enjoyment is actually translating to me writing some of it at work, which is unusual. I love channels - they're like a radically better implementation of the first big multithreaded java architecture I wrote to deal with the c10k problem. The strong type system is more useful than onerous, especially after having written so much Perl. The standard libs are really, really useful (especially the http daemon). Like, you can convert a struct to or from JSON via runtime reflection (via a library that does it for you), or you can attach metadata to the struct member definitions to specify the exact mapping yourself. I'm dangerously close to becoming a fanboy.

Another interesting aspect of the language is how easily it is to integrate with C libraries. You can call C functions easily, and C structs get mapped into corresponding Go types. This only works to a point, as not everything C has an equivalent in Go. Anything Go doesn't understand, like unions inside a struct, just get mapped as a byte array (irritating to deal with in Go due to its strong typing). Callbacks are also a pain in the ass, inviting you to write a C shim. I learned this in my failed first attempt at writing a couchbase smart client based off libcouchbase. Painful as the experience was, it was further than I would have gotten trying to do the same in Perl, and I intend to take another shot at it.

The main problems with it are a lack of generics, no version info in the package requirments, the crude GC, and the crude goroutine scheduler, none of which are bad enough to make me stop using the language.

-/ES/-
PREVIOUS NEXT REPLY QUOTE
 
Berlin DLC delayed until 2014 by WITTGENSTEIN 08/20/2013, 7:40am PDT NEW
    Maybe they'll throw a save system in NT by jeep 08/20/2013, 7:57am PDT NEW
        From the Kickstarter email list by Horrible Gelatinous Blob 08/20/2013, 10:53am PDT NEW
            it's probably something fundamental to the way they implemented it by jeep 08/20/2013, 10:32pm PDT NEW
                Re: it's probably something fundamental to the way they implemented it by Ice Cream Jonsey 08/20/2013, 10:53pm PDT NEW
                    Re: it's probably something fundamental to the way they implemented it by motherfuckerfoodeater 08/21/2013, 9:53am PDT NEW
                        Re: it's probably something fundamental to the way they implemented it by Ice Cream Jonsey 08/29/2013, 1:38pm PDT NEW
                    from the same unity thread you linked by jeep 08/21/2013, 11:53pm PDT NEW
                        Re: from the same unity thread you linked by Entropy Stew 08/29/2013, 2:55pm PDT NEW
                            I didn't read the docs by jeep 08/30/2013, 1:24pm PDT NEW
                                Is one of your goals to make a game? I'd love a jeep game. by Ice Cream Jonsey 08/30/2013, 1:47pm PDT NEW
                                    Re: Is one of your goals to make a game? I'd love a jeep game. by jeep 08/31/2013, 11:59am PDT NEW
                                        I'm really enjoying Go by Entropy Stew 09/01/2013, 7:52am PDT NEW
                I understood about 80, 85% of that by Horrible Gelatinous Blob 08/21/2013, 1:40am PDT NEW
                    Features that are actually in their pay grade have a 50% chance of making it in. NT by Worm 08/21/2013, 6:10am PDT NEW
                        They're hemming and hawing about putting it in Berlin by Ice Cream Jonsey 08/29/2013, 6:30pm PDT NEW
                            Re: They're hemming and hawing about putting it in Berlin by jeep 08/30/2013, 1:19pm PDT NEW
                                I bet some of it is stupid programmer pride. by motherfuckerfoodeater 08/30/2013, 9:02pm PDT NEW
                                    if only they had this excuse by jeep 08/30/2013, 11:59pm PDT NEW
 
powered by pointy