Slashdot Mirror


Ask Slashdot: Where to Host Many Small, Related Projects?

MellowTigger writes "I work at a non-profit organization. I am looking for a site where we can register an account under our group's name, then spawn multiple projects to solicit programmer help for our organization. The current projects that we have in mind are small and probably not of interest to the wider world, although one very large project is possible. I need a site that emphasizes our non-profit as the benefactor rather than the wider world, since most projects are so specific that wider applicability seems slim. We would need help with various technologies including at least Powershell and SQL. At the moment, my available options emphasize individual projects of public interest, so we would have to spawn multiple independent projects, seeming to spam the host with 'pointless' minor tasks. We already have technical people seeking to donate time. We just need a way to coordinate skill matching, document sharing, and code submission out on the web. What do you suggest?"

39 of 69 comments (clear)

  1. Are you serious by Anonymous Coward · · Score: 4, Informative

    Github. Sourceforge. Wow that was hard.

    1. Re:Are you serious by beck24 · · Score: 2

      Not sure why he's asshole, OP's question pretty much summarizes to "Somebody say github"

    2. Re:Are you serious by Anonymous Coward · · Score: 3, Funny

      yes

      Next up on ask slashdot:

      I've grown tired of the rolling meadow background on my Xp desktop. Does slashdot have any advice on how I might change it? And what should I change it to?

    3. Re:Are you serious by Stalinbulldog · · Score: 4, Funny

      I can answer this one! Yes, the only way to change your desktop background is to install linux over windows xp.

    4. Re:Are you serious by Jane+Q.+Public · · Score: 1

      If these are all internal, I would recommend their own server with a directory of git repositories, one for each project.

      Simple, effective, no need to rely on a third party. Also probably far cheaper, since with a lot of projects Github can be expensive. And the server can just be be some old machine with Linux on it.

      That's what I do for my own projects. It should scale just fine. In fact Github is evidence that it does.

    5. Re:Are you serious by ILongForDarkness · · Score: 1

      I'm not sure about that. I haven't seen any projects that were related on GitHub. There are forks and such but I haven't seen one "site" that says here's our twenty different projects and how they fit in to the bigger solution. GitHub would be a great place for the individual project repos to live though.

      I'd suggest assuming your non-profit has a website already put it there. Say in your volunteers wanted section just have a "Do you know how to program? Would you like to work on a project that will help us? Check out our GitHub projects (and a link to a sub page with technical descriptions of what is needed). The assumption that volunteers are only (or could only) be unskilled place fillers rather than meeting technical or business needs is pretty wide spead in non-profits. It would be nice to see one post their skilled needs as well rather than trying to recruit paid employees and then in most cases offering pitifully low salaries. I'll volunteer my time but I still have a quality of life I want as a skilled person. Free coding projects for say Red Cross would be a great way to keep a six figure salary and still do something interesting on my volunteer time rather than canvasing for money or picking up trash.

    6. Re:Are you serious by SourceFrog · · Score: 1

      The problem is everyone's an asshole these days, that's why we can no longer tell when someone's being an asshole - it's the new normal.

      --
      My other UID is three digits.
    7. Re:Are you serious by budgenator · · Score: 1

      No, the geeks aren't that lazy, just the posers. I mean after all he said " We would need help with various technologies including at least Powershell and SQL.", what's nerdy about that, what he needs is some script-kiddies.

      --
      Apocalypse Cancelled, Sorry, No Ticket Refunds
    8. Re:Are you serious by Common+Joe · · Score: 1

      I went Windows 8. Now I have no background at all. Problem solved!

    9. Re:Are you serious by RockDoctor · · Score: 1
      Your screen has a background consisting of a diffuser element, several lamps (probably cold-cathode, though there are other possibilities), and an opaque backing sheet incorporating the structural support and protection for your screen.

      You could get rid of all of those, rendering your screen transparent except for the switched-on pixels. The screen would then be almost completely fucking useless except for posing in front of in shit movies.

      Whether that would be an improvement on the original problem of having a Windows 8 PC is not at issue ; how big an improvement it would be is debatable.

      --
      Birds are not dinosaur descendants;birds are dinosaurs, for all useful meanings of "birds", "are" and "dinosaurs"
    10. Re:Are you serious by rioki · · Score: 1

      I like how the poster is super vague. What custom software does a non-profit need, that not written like 100 times. The lack of knowledge about github simply shows... not very technical and about to reinvent the wheel.

    11. Re:Are you serious by rioki · · Score: 1

      Pro Tip: gitosis or gitolite

  2. You could always run indefero by Anonymous Coward · · Score: 3, Informative

    I run it for my own personal projects, and it works good for me. Its not incredibly fancy but it does work for what its designed to do, which is assign people to projects, tracks commits, and lets you see diffs, etc. I don't know if you need some of the bells and whistles these other sites offer or not. It does require setup, and running your own server/instance/whatever to have it on. The only hiccup I've ever ran into (which was due to how git works) was when someone committed a 1.5gb psd file to a repo and we ran out of memory on the small instance indefero was running on.

    http://www.indefero.net/

  3. GitHub by Anml4ixoye · · Score: 4, Informative

    If you are making the repositories public, GitHub is the way to go. You only have to pay if the repositories are private. It gives you the ability for people to send pull requests for changes (which you can choose to accept), issue tracking, etc. The pull request system is really nice, because you ultimately have control of what gets pulled into your project, but anyone can pull it down. It's pretty much the standard hosting, and works across all platforms.

    1. Re:GitHub by Eric89GXL · · Score: 1

      GitHub has been great for us. The code management system makes collaboration and code control very intuitive. They have discounted packages for academic use, where the "micro" package (at a minimum) has 5 private repos free of charge. You could check to see if they have something similar for nonprofits generally.

    2. Re:GitHub by emddudley · · Score: 4, Informative

      You only have to pay if the repositories are private.

      GitHub offers free bronze plans (10 private repositories) for nonprofits.

    3. Re:GitHub by rioki · · Score: 1

      But even the 25USD/month is totally reasonable. I find github's pricing for private repositories totally reasonable.

  4. Host it yourself by trinaryai · · Score: 2

    Set up a slackware server (can even be on high-end workstation class hardware as long as you have a UPS powering it) running SVN Server and apache. There are plenty of good browser based CMS packages available. I like Drupal + Storm, but that's just me. If SQL Server is an absolute requirement, rather than MySQL, set up each developer's workstation with SQL Server Express. TortoiseSVN is a great Windows SVN client that may be easier to set up than git. Using github gives you the advantage of a decentralized repository, but doesn't come with any kind of project management. DynDNS will allow you to register your own box by name without having to pay for a static public IP address and public nameserver. Remember, though, that you don't necessarily have to host your project management and your code repository in the same place. That seems like where you're getting yourself confused.

  5. soliciting programmer support - a pipe dream? by jtara · · Score: 3, Insightful

    I hope that the OP doesn't expect programmers to flock to support his project, just because it is present on a social coding site.

    They won't. Probably not a single one. Even if he uses the most popular host providing such services, GitHub.

    For the most part, there is no contribution whatsoever, unless the contributor has some stake. The most successful GitHub projects are those that have some kind of corporate sponsorship, and you have several big companies contributing one or more full-time employees to the project.

      Beyond that, you might get some contribution to the project if a lot of people are using it, and some of them modify it to suit their own needs, and either they altruisticlly contribute their modifications back(not common), or (more commonly) by contributing back they absolve themselves of having to maintain their own separate fork.

    For projects with, say, 100-200 watchers (which probably means 10X that many users), it's typical to get maybe a pull request or two per year.

    So, hopefully the OP has some volunteers lined-up already, or knows where to find them. They aren't going to appear out of nowhere.

    I think it would be silly to set-up your own server for this. GitHub is the goto place today. It has a good-enough Issues system that is well integrated with code management, and makes it easy to publish documentation.

    1. Re:soliciting programmer support - a pipe dream? by jgrahn · · Score: 1

      I hope that the OP doesn't expect programmers to flock to support his project, just because it is present on a social coding site.

      Indeed. It doesn't sound promising based on his posting. I get the impression that he expects to be able to sit back and manage ("coordinate skill set matching"?) flocking programmers. And there's this air of secretiveness -- what NPO are we talking about, and what are the projects? And there's the "emphasizes our non-profit as the benefactor" part which also is a major turn-off. Who ever heard of volunteer programmers working on something they can't use themselves? There's no itch to scratch.

      I think it would be silly to set-up your own server for this. GitHub is the goto place today. It has a good-enough Issues system that is well integrated with code management, and makes it easy to publish documentation.

      To me, it's best feature is it stays out of your way.

    2. Re:soliciting programmer support - a pipe dream? by SourceFrog · · Score: 2

      solves a well designed problem

      I think the world has enough problems without people going around designing new problems.

      --
      My other UID is three digits.
    3. Re:soliciting programmer support - a pipe dream? by ILongForDarkness · · Score: 1

      Well if they are small enough projects (say the typical LOB crap that 90% of devs work on for companies) they might get knocked off by someone that likes the charity AND has another reason. I agree with this general thread people contribute because they have a need for the project generally. If it is useful enough a corporate entity might start using it in their products and then have to do some modification to make it more useful. Some of those will be nice enough to give the mods back. The OP is pretty adamant this is something that will only benefit his non-profit though. Assuming that is the case you eliminate all the corporate users and the people that think it might be useful in their side projects. What you are left with is the people that really like your charity or people that want to learn the tech that you are going (or they choose) to use.

      I'd say around 70% code really isn't single purpose it is single purpose by shortsightedness: people don't see anything beyond their current problem, don't desire to help others who might find it useful or don't have access to other data. Say a insurance company builds a dashboard, chances are a well designed system would have a huge amount of components that would be relevant to others in the industry. They don't share because they are competing and they won't sell because it is a distraction from their main business. Could this be the case with these small projects? Could it be you aren't thinking big enough to include enough interested parties? If a lot of them are interrelated technologically you might want to start a framework project that will have the parts that others can use (and might find interesting enough to contribute too) and then make your life easier building the rest of the solution on top of that framework.

  6. Ask you members what they'd like by seyyah · · Score: 1

    We already have technical people seeking to donate time.

    Sounds like a group of people who might have some insight into the problem.

    We would need help with various technologies including at least Powershell and We would need help with various technologies including at least Powershell and SQL.SQL.

    What does this mean? You need help with Powershell from your project host? Good luck with that.

    1. Re:Ask you members what they'd like by seyyah · · Score: 1

      I need help pasting.

  7. Freepository by dragonquest · · Score: 1

    Freepository is a reliable solution if you are willing to shell out some cash. I think they stopped their free offering sometime back, but plans start from $9/month if your contributers are limited in number.

    --
    "Never try to tell everything you know. It may take too short a time."
    1. Re:Freepository by jtara · · Score: 1

      Oh, great.

      You pay to use stuff that most developers have stopped using.

    2. Re:Freepository by dgatwood · · Score: 4, Funny

      Freepository is a reliable solution if you are willing to shell out some cash. I think they stopped their free offering sometime back, but plans start from $9/month if your contributers are limited in number.

      Perhaps in light of not being free, they should change their prefix. Might I recommend "sup". It's short for supported. :-D

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

  8. Ask your own technical people! by Peganthyrus · · Score: 3, Insightful

    Have you considered asking whatever the "people seeking to donate time" say they use for source hosting and going with whatever the majority loves doing?

    --
    egypt urnash minimal art.
  9. MS Team Services by Anonymous Coward · · Score: 1

    So from the description given this service from Microsoft would be the best fit.
    https://tfs.visualstudio.com/

  10. Redmine + git by pinkeen · · Score: 3, Informative

    Nobody mentioned redmine?
    Combine it with git via ssh, set it up on a cheap VPS or your local box with forwarded ports and be done with it.

  11. GForge by Mendy · · Score: 1

    If you could get somewhere to host it GForge would seem to fit what I think you're asking. It'd be similar to in effect to running your own "sourceforge" and then hosting each application on that.

    Sadly the free/open source version seems to be defunct now from what I can see but the company who do the commercial version seem to offer free licences for non-profits so it might still be an option.

  12. BitBucket, not GitHub, for what you are doing by SuperKendall · · Score: 1

    BitBucket has a better pricing model for what you are trying to do. Free for up to ten users, which includes unlimited private repos.

    Anything public is probably better hosted at GitHub, as people are more used to using stuff from there - the pricing is not too bad, but is per-repository so if you have a bunch of small things it could start to get expensive.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
  13. Retarded projects?! by supertrooper · · Score: 1

    Initially I read: "Ask Slashdot: Where to Host Many Small, Retarded Projects?" and thought "This is an interesting question". Then I read it correctly and thought "That first question made more sense". Anyway, I digress, Github of course.

  14. One of two things to fix by raymorris · · Score: 1
    This shows there is one of two problems that need to bee addressed before asking for development help:

    current projects that we have in mind are small and probably not of interest to the wider world, although one very large project is possible. I need a site that emphasizes our non-profit as the benefactor rather than the wider world, since most projects are so specific that wider applicability seems slim.

    If it's not of interest to the wider world, you'll not get developers coming to help, with a possible exception being if the organization is extremely well known, like Red Cross. However, if it's that specific, probably either a) the problem has been too narrowly defined or b) it's not a development project, but a find-and-configure project.

    Think of the problem in more general terms, general enough so that it DOES apply to other people. Who else might have a similar problem? Do other people have a good solution for this type of problem? If others have a solution that works well for them, perhaps it makes sense to use the same solution yourself, configured for your needs. No development required. If other organizations with similiar problems do NOT have a good solution, work with them to find a solution that helps them too, so others can contribute to a shared solution.

  15. Launchpad.Net by dugndog · · Score: 1

    I am currently working on a non-profit project hosted at Launchpad.Net. Although it is a large ERP-size project instead of several small projects, I don't see why it wouldn't work for you. Of course, as other posters have pointed out, exposing the source is only one part of successfully running open projects.

  16. Re:You're a spammer and want free tech supp?^ by Half-pint+HAL · · Score: 1

    I think the term "spam the host" was pretty well chosen, actually.

    He's identified a big problem in current infrastructure, which has him forked. Projects are standalone, and he wants to start multiple projects. Starting multiple projects will look like spamming to a great many people, but A) he doesn't want to spam; and B) he doesn't want to be seen to spam.

    He wants something that doesn't seem to exist at the moment, and many of the denizens of /. seem to prefer to insult him for not just believing that the (inadequate) current structure is adequate. A decade ago, Slashdotters would have been saying "Jeez, why didn't we think of this before?" and someone would by now have forked the source for their favourite version control system and built in the ability to group independent software projects together. Within a couple of weeks, it would be running on an experimental server (a retired desktop PC salvaged from the geography department) on a university network, and someone else would be researching the possibility of setting up a permanent server running on a "freemium" model.

    But no, now everyone just insults him instead. >sigh< Why do I even come here these days...?

    --
    Got them moderator blues I blieve I walk out the do', With these mod-points I been gettin', I 'most never post no mo'
  17. Re:You're a spammer and want free tech supp?^ by rioki · · Score: 1

    The reason why most people here are rolling their eyes (or insulting) is because it is already solved. The problem is well understood; a few terms to feed to google: git, git-submodule, github, github organisation, gitosis, gitweb, mercurial

  18. My Experience by ios+and+web+coder · · Score: 1

    I do a lot of that kind of stuff.

    I don't want to link to the site for my current initiative, as I don't like the "SlashDot Effect" on bandwidth-limited servers.

    It's actually kind of difficult to chat offline in this joint. However, I have some experience in this area.

    --

    "For every complex problem there is an answer that is clear, simple, and wrong."

    -H. L. Mencken