Which will have no bearing on the case of Go. Go has already been relegated to the bottom of the quality bin for my purposes by its designer(s)' ignorance of the last 30 years of type system research and hostility towards the functional style. See: https://groups.google.com/forum/#!topic/golang-nuts/RKymTuSC...
Really? You've managed to mention the lack of generics on a thread announcing moving go to github? Is this a parody comment or are you serious?
Go is moving to GitHub
31–40 of 244 posts
Re: Go is moving to GitHub
#32Earlier quoted context omitted.
thank you. Missed that in the article (was skimming >_> )
Me too, my brain is wired to read Gerrit as a common Dutch first name, so I thought he was talking about a person named Gerrit.
Re: Go is moving to GitHub
#33Earlier quoted context omitted.
Really? You've managed to mention the lack of generics on a thread announcing moving go to github? Is this a parody comment or are you serious?
Totally serious. And, it's not just the lack of generics-- that's just the tip of the iceberg.
Re: Go is moving to GitHub
#34It is great to see so many projects moving to git and GitHub in particular. GitHub is incredibly helpful for quickly taking a look at a project and figuring out what areas of a project are still evolving and being actively developed.
You could also say that everyone moving to GitHub is leading to a dangerous centralized monoculture that evaluates software quality based on how well it fits GitHub's conventions.
Re: Go is moving to GitHub
#35Earlier quoted context omitted.
Really? You've managed to mention the lack of generics on a thread announcing moving go to github? Is this a parody comment or are you serious?
Why does hacker news not have a reddit style 'below threshold' to display none subthreads? :/
All: predictable flamewars add no new information, therefore have a signal/noise ratio of zero, and therefore are off topic for Hacker News.
Re: Go is moving to GitHub
#36Re: Go is moving to GitHub
#37It is great to see so many projects moving to git and GitHub in particular. GitHub is incredibly helpful for quickly taking a look at a project and figuring out what areas of a project are still evolving and being actively developed.
Moving to git is great, moving to github can be terrible for some projects that are more collaborative, as if you want to change someones PR you cannot..
If you want to change the title, edit/delete comments, close the PR, assign a person or labels then you'll need the proper permissions.
If you want to make changes to the code you'll need to have push access to the same repo (which is usually the case if you're on the same team because then you don't need to use forks). Otherwise you can always amend the commit(s) before merging them into master.
Re: Go is moving to GitHub
#38It is great to see so many projects moving to git and GitHub in particular. GitHub is incredibly helpful for quickly taking a look at a project and figuring out what areas of a project are still evolving and being actively developed.
Moving to git is great, moving to github can be terrible for some projects that are more collaborative, as if you want to change someones PR you cannot..
Re: Go is moving to GitHub
#39Earlier quoted context omitted.
To the siblings to this post: it seems rather unlikely as the research is being generated at a rate that far exceeds any one person's ability to read it (especially when they are already busy marrying C and CSP [which is easy to build as a library or add-on to any other existing language] & type theory isn't their specialty).
So, you're criticising someone for not doing something that's impossible? Just stop.
Re: Go is moving to GitHub
#40Earlier quoted context omitted.
I'm curious what Gerrit gets them that Github doesn't have natively, too.
There are a lot of things lacking about GitHub's code review process (pull requests). Off the top of my head: - Merging a pull request (almost) always creates a merge commit, polluting the change history. Gerrit will automatically rebase the changes atop the master branch head, leaving a nice linear history. - Pull requests require the contributor to create a public fork of the repository they're committing to. I can…
You can create Pull Requests within a repository. You don't need to fork the repository if you have push access.