Live data from Hacker News

An end to the loneliness of the open-source coder?

petewarden.typepad.com

11–18 of 18 posts

Re: An end to the loneliness of the open-source coder?

#11
post #9

I haven't really looked into it; but do open source contributors not have a problem with using a closed platform to manage their products?

GitHub is closed in the sense that you can't access most of its source code but it's not really a problem since Git is decentralised. When you clone a repository from GitHub, you have everything you need to host that repository somewhere else. GitHub doesn't take any power away from the project - it only provides tools to easily manage your project.

I'm not sure that status of downloading a project's issues or wiki but I remember they were working on making them clonable.

Re: An end to the loneliness of the open-source coder?

#12
When I moved to Portland, OR I was amazed with how social the tech community is here. Informal coding gatherings spring up regularly throughout the city, and there are two reliable "pdx hackathon" nights you can show up and hack on interesting projects with interesting people.

http://groups.google.com/group/pdx-weekly-hackathon

Re: An end to the loneliness of the open-source coder?

#13
post #9

I haven't really looked into it; but do open source contributors not have a problem with using a closed platform to manage their products?

I think the value of the community generally outweighs any concerns about them not releasing the source for it.

That said, I would love an open-source equivalent of Github. It would be fantastic for projects to be able to create an equivalent for members of their project and authors of the plugins, skins and other add-ons that surround it.

Re: An end to the loneliness of the open-source coder?

#14
post #4
post #2

What really sets GitHub apart, is not that it uses Git, but how elegantly it pulls everything together (source control, new API discovery, networking, site hosting) around a set of core social networking ideas.

So, do you think it is possible to create something similar, but with the support for some other version control system, like mercurial? Or even a centralized one like svn? Could it even be github to offer this, despite the name?

I've been experimenting with bzr-git, pushing my bazaar branches to github... so far, so good (though I've not really done any 'social' stuff yet or been branching other peoples work).

Re: An end to the loneliness of the open-source coder?

#15
post #9

I haven't really looked into it; but do open source contributors not have a problem with using a closed platform to manage their products?

I think the value of the community generally outweighs any concerns about them not releasing the source for it. That said, I would love an open-source equivalent of Github. It would be fantastic for projects to be able to create an equivalent for members of their project and authors of the plugins, skins and other add-ons that surround it.

http://www.gitorious.org

Re: An end to the loneliness of the open-source coder?

#16
post #9

I haven't really looked into it; but do open source contributors not have a problem with using a closed platform to manage their products?

GitHub is closed in the sense that you can't access most of its source code but it's not really a problem since Git is decentralised. When you clone a repository from GitHub, you have everything you need to host that repository somewhere else. GitHub doesn't take any power away from the project - it only provides tools to easily manage your project. I'm not sure that status of downloading a project's issues or wiki b…

I absolutely agree that it is not a problem.

Issues has a full api, as do most other parts for exporting/importing/manipulating data. I can't find the wiki api right offhand.

And yes, I'm ok with companies keeping some of the secrets of the sauce, as long as they're reasonable about the data, I put in, which they are.

Re: An end to the loneliness of the open-source coder?

#18
post #4
post #2

What really sets GitHub apart, is not that it uses Git, but how elegantly it pulls everything together (source control, new API discovery, networking, site hosting) around a set of core social networking ideas.

So, do you think it is possible to create something similar, but with the support for some other version control system, like mercurial? Or even a centralized one like svn? Could it even be github to offer this, despite the name?

Github actually offers support for svn, in a way - see http://help.github.com/svn-importing/ for a bit more info.

It is also possible to use git on top of svn - see http://www.kernel.org/pub/software/scm/git/docs/git-svn.html

Post reply on HN