Slashdot Mirror


Building a Coder's Paradise Is Not Profitable: GitHub Lost $66M In Nine Months Of 2016 (bloomberg.com)

Though not much popular outside the technology circles, GitHub is very popular among coders around the world. The startup operates a sort of Google Docs for programmers, giving them a place to store, share and collaborate on their work. But GitHub is losing money through profligate spending and has stood by as new entrants emerged in a software category it essentially gave birth to, according to people familiar with the business and financial paperwork reviewed by Bloomberg. From the report: The rise of GitHub has captivated venture capitalists. Sequoia Capital led a $250 million investment in mid-2015. But GitHub management may have been a little too eager to spend the new money. The company paid to send employees jetting across the globe to Amsterdam, London, New York and elsewhere. More costly, it doubled headcount to 600 over the course of about 18 months. GitHub lost $27 million in the fiscal year that ended in January 2016, according to an income statement seen by Bloomberg. It generated $95 million in revenue during that period, the internal financial document says. The income statement shows a loss of $66 million in the first three quarters of this year. That's more than twice as much lost in any nine-month time frame by Twilio Inc., another maker of software tools founded the same year as GitHub. At least a dozen members of GitHub's leadership team have left since last year.

227 comments

  1. Never saw the point of github by Anonymous Coward · · Score: 1, Informative

    What does github actually do that git doesn't? Ah, turn a great decentralized info storage system into a centralized system controlled by one company.

    1. Re:Never saw the point of github by Beezlebub33 · · Score: 4, Insightful

      It's a very convenient place to put your code to share with others, since everybody knows about it, has an account, and trusts it not to screw over the developer too hard. Sourceforge is not trustworthy and running my own is a pain in the ass. Just throw it up on github, publish the URL, and everybody gets to use it. If they do start screwing people over, they will move just like people moved away from sourceforge.

      --
      The more people I meet, the better I like my dog.
    2. Re:Never saw the point of github by AmiMoJo · · Score: 1

      Hosting for open source projects, providing a cheap service to companies. The bug tracking stuff and attached wiki is useful. You can host release binaries.

      It's a useful service.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    3. Re:Never saw the point of github by whipslash · · Score: 5, Interesting

      For those who don't know, my company acquired SourceForge along with Slashdot and have been improving it. Redesign coming soon as well. http://arstechnica.com/informa...

    4. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      What does github actually do...

      Absolutely nothing you can't do yourself by renting a cheap virtual server.

    5. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      So slashdot owns Sourceforge...

      But of course... totally unbiased reporting here

    6. Re: Never saw the point of github by whipslash · · Score: 4, Informative

      SourceForge and Slashdot have been owned jointly for many years

    7. Re:Never saw the point of github by ShanghaiBill · · Score: 4, Interesting

      Ah, turn a great decentralized info storage system into a centralized system controlled by one company.

      You make that sound like a bad thing. My company uses Github, and a reliable centralized system with a standard interface works great. Of course, we have our own local clones, so we are not "controlled" by github.

      Anyway, I can't imagine why they would need 600 employees. I always assumed that they were three guys working out of a loft in SF.

    8. Re:Never saw the point of github by CODiNE · · Score: 1

      Are you going to stop Geoblocking?

      It's easy enough. Flag repositories containing keywords like "OpenSSL", "AES", "RSA", etc...

      That should open up a big chunk like say 60% of your projects immediately open to outside view. Then go through the projects which were flagged manually, sorted by downloads and popularity and just review that it's indeed not for export.

      And if a few get through now and then and need to be blacklisted... so what?? Slashdot isn't geoblocked and there's plenty of one line DeCSS Perl decoder sigs and random things like that.

      Better to deal with those as they come up than slicing off huge chunks of the planet.

      --
      Cwm, fjord-bank glyphs vext quiz
    9. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Including those awesome years of SourceForge adware.
      I wonder why someone would buy SourceForge and ditch their advertising customers. Can we be sure they did?

    10. Re: Never saw the point of github by fisted · · Score: 1

      More or fewer years than that story about sourceforge bundling crapware together with the downloads from projects hosted there goes back?

    11. Re:Never saw the point of github by TheRaven64 · · Score: 5, Informative
      Lots of things (though a lot of them can be replicated by running GOGS or GitLab on your own machine):

      The most valuable thing is a single sign-on service. I leave a lot more bug reports for open source projects if they're on GitHub: their issue tracker isn't the best, but it doesn't require me to create a new account. The same thing if I want to submit patches: I don't need to subscribe to mailing lists or similar, I just clone the repo, send a pull request, and it's done.

      Every GitHub project has an issue tracker, a web site, and a wiki, all hosted by GitHub. The issue tracker is integrated with the commit log, so I can close issues by simply putting 'Fixes #42' in the commit message and have things automatically cross referenced. The wiki is a git repo, so I don't have to use crappy wiki editing tools, I can clone the repo and edit the files in my favourite text editor. The web site can either be static HTML that you generate and put in a git repo, or it can use Jekyll to generate the HTML from other markup languages on the GitHub servers.

      The pull request mechanism is the thing that GitHub is most well known for. It's closely related to the discussion and code review interface that is the core of the GitHub site. If someone sends a pull request, I can review their code, comment on it, discuss high-level design choices in a thread that's attached to the pull request, and merge it, all from the web interface.

      GitHub exposes a bunch of web APIs that other services use (for example, you can get notifications whenever there's a push to a particular repo). For example, I can set up Coverity scans or use Travis-CI to run the test suite on every commit. Even better, things like Travis integrate with pull requests, so even before I start to review code, I can see if it passes tests. This is even better if the pull request comes with new tests: I can see that they pass, without even doing a checkout.

      GitHub provides private repos, so once you are familiar with the interface, you can use it for internal projects.

      GitHub will generate tarballs from any commit (and they are quick to download). We use this in the FreeBSD ports collection for a load of things. If I want to package something that's on GitHub, it's two lines to specify that it's from GitHub and what commit hash I want and the build system can grab a tarball of that revision and turn it into a package.

      --
      I am TheRaven on Soylent News
    12. Re:Never saw the point of github by Anonymous Coward · · Score: 1

      I don't use SourceForge. I don't avoid it (if something is there, I'll get it), but I don't use it. So far, SourceForge is not as convenient as Github. But it's usable. Notably the delay to download something.

      That said, I don't mind the changes so far to Slashdot. I run with an ad blocker, yet I still see the Slashdot store ads, and I see the inline ads (the new ones, in the different color). They don't bother me at all.

      I sincerely hope these changes are all working out for the better and making Slashdot and SourceForge a successful concern for you folks.

    13. Re:Never saw the point of github by Aighearach · · Score: 4, Funny

      What does github actually do...

      Absolutely nothing you can't do yourself by renting a cheap virtual server.

      Do you also complain to your grocer that other people were already selling vegetables for thousands of years and you could grow your own if you wanted?

    14. Re: Never saw the point of github by whipslash · · Score: 5, Informative

      We eliminated all adware when we acquired SourceForge. Can't speak for the previous owners

    15. Re: Never saw the point of github by whipslash · · Score: 3, Informative

      We acquired SourceForge and Slashdot both in January of this year

    16. Re:Never saw the point of github by whipslash · · Score: 1

      Thanks!

    17. Re:Never saw the point of github by s1d3track3D · · Score: 1

      +1 right on, this should be modded up.

    18. Re:Never saw the point of github by drinkypoo · · Score: 4, Funny

      Redesign coming soon as well.

      Awesome! That never goes badly!

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    19. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      I think I speak for everyone here when I say, Fuck Beta.

    20. Re:Never saw the point of github by epiphani · · Score: 4, Insightful

      This is one of those cases where VC's are killing github. They should never have gone anywhere near VC money.

      There are all kinds of companies that should seek and acquire VC money. But a company that's comfortably running a small, scalable service pulling in reasonable revenues... VCs will demand far more growth and market penetration than may be reasonable to expect... so you build a massive enterprise sales organization, burn cash like nothing else, and end up running a perfectly good, small company with solid revenues into the ground hoping to make billions instead of tens or hundreds of millions.

      Lots of companies should go this route. Github was never one of them.

      --
      .
    21. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      Wow. This is why important things like Github should not be hosted in America.

      Captcha: regroup

    22. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Too bad it's so hard for the trust to come back. It would probably be simpler to start a new brand

    23. Re: Never saw the point of github by whipslash · · Score: 5, Insightful

      We still have over 1 million users per day and 500,000 projects hosted at SourceForge. Would rather do right by them than just start a new brand.

    24. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      parent gets it right.

      github isn't for me.

    25. Re: Never saw the point of github by lgw · · Score: 1

      Nice move! But please also eliminate the pop-up for the newsletter. There are enough ads that the pop-up on top of them makes it come off as a sketchy site where the only safe move is closing the browser tab.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    26. Re: Never saw the point of github by fisted · · Score: 1

      So your company has some odd thing for sinking ships? :-)

    27. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      There's a big difference between redesigning something like slashdot, and redesigning something like sourceforge. Your engine could be redesigned and you might not mind, but if your steering wheel becomes something like a joystick, you are much more likely to wreck.

    28. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Fuck beta!!!!!!!

    29. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Um what? Slashdot has been going downhill for years. How exactly are you improving it?

    30. Re: Never saw the point of github by maharvey · · Score: 1

      And all the beta males on Slashdot quickly added, "please"

    31. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Actually. Sf has really changed after they were bought out again. Previously it was impossible to remove projects for instance, but with the new owners they did after I emailed them

    32. Re: Never saw the point of github by whipslash · · Score: 5, Insightful

      I was a /. and SF fan for a long time. Thought they deserved better

    33. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      Sourceforge serves junkware http://www.howtogeek.com/21876...â(TM)t-download-software-from-sourceforge-if-you-can-help-it/ and malware https://slashdot.org/submissio... and https://slashdot.org/submissio...

    34. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      utf8 on slashdot?

    35. Re:Never saw the point of github by Anonymous Coward · · Score: 1

      > Do you also complain to your grocer that other people were already selling vegetables for thousands of years and you could grow your own if you wanted?

      If he's the typical hipsters Imeet, he says this about beer, not vegetables. And about how he can rewrite all of Nagios, Puppet, Ansible, and BIND by simply writing python scripts. It used to be perl scripts, then php scripts, but time has moved on, and it's slowly shifting from python scripts to systemd.

    36. Re: Never saw the point of github by Anonymous Coward · · Score: 0

      SourceForge != Github

      The reason you have 500k projects is because users (like myself - I was a paid member once) cannot remove projects they created. So, instead, I end up removing all related data, anything I can find, and leave an empty shell of a project. There are many, many others. Trust me.

      - The UX of SourceForge is an absolute mess. Reminds be of Bugzilla.
      - The policies of the site are borderline questionable. Delete my projects please.
      - It took them forever to support Git (CVS and SVN, come on now).
      - I don't trust any sources that come from this site.

    37. Re:Never saw the point of github by Bengie · · Score: 1

      What does Google actually do that running your own web crawler doesn't? Ah, turn self-hosting into a centralized ad platform controlled by one company.

      Github doesn't plate, it complements. It makes it easier to discover and collaborate. It does not change how git works, just everything around git.

    38. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      What does github actually do that git doesn't?

      Allow you to use SVN. Git is retarded designed by retards.

    39. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      It's a very convenient place to put your code to share with others, since everybody knows about it, has an account, and trusts it not to screw over the developer too hard. Sourceforge is not trustworthy and running my own is a pain in the ass. Just throw it up on github, publish the URL, and everybody gets to use it. If they do start screwing people over, they will move just like people moved away from sourceforge.

      FYI - almost every resume from a college grad these days includes a link to their repository on GitHub. The combination of a resume, cover letter and seeing their Github code gives me a pretty good feel for a new hire candidate before bringing them in for an interview.

    40. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      More importantly, do export restrictions even still exist?

    41. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      tbh, Sourceforge's UI has no other direction to go except up.

    42. Re: Never saw the point of github by whipslash · · Score: 1

      Open a support ticket and we will delete your projects. All of your bullet points have been or will be addressed.

    43. Re:Never saw the point of github by haruchai · · Score: 2

      As a long time Slashdot user, longer even than my UID suggests, I'm glad to see someone take an interest in improving the site.
      I imagine you're going to get a lot of snark & flak, along with a few feature requests and the odd helpful suggestion.
      About the only thing on my wishlist is comment editing. I think that feature is long overdue here.

      --
      Pain is merely failure leaving the body
    44. Re:Never saw the point of github by Anonymous Coward · · Score: 0

      They still exist if you're Best Korea or Terrorists.

    45. Re:Never saw the point of github by Pieroxy · · Score: 1

      You would be surprised. There's always a way down. Although I'm sure it will go up...

  2. Selling private repositories is their money maker by BarbaraHudson · · Score: 1

    So they make money selling private code repositories. If you want something really private, why use a 3rd party hosting service? So that you have a neck to wring when it leaks? Your private repository is just a NSL away from giving everything up without you ever knowing. Or a hack away. Or just a password-reuse user fail away, as happened 6 months ago.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  3. Perhaps by Anonymous Coward · · Score: 4, Insightful

    GitHub should worry about actually building their core product rather than spending all their time on social justice crusades.

    1. Re:Perhaps by AmiMoJo · · Score: 1, Insightful

      I know, a source hosting service should be at the forefront of 8chan-style anything goes shitposting.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    2. Re:Perhaps by Anonymous Coward · · Score: 0

      I know, a source hosting service should be at the forefront of 8chan-style anything goes shitposting.

      suck my damn balls!

    3. Re:Perhaps by serviscope_minor · · Score: 0, Troll

      I know, a source hosting service should be at the forefront of 8chan-style anything goes shitposting.

      Free speech man! Why do you hate America? I'm sure there's something in the First Amendment about private people having to give a platform to lazy people who can't be bothered to actually or metaphorically go out and actually speak. That's why it says:

      Everyone has to let you say anything at any time in their property and dime.

      Got that, right?

      --
      SJW n. One who posts facts.
    4. Re:Perhaps by lgw · · Score: 0

      GitHub is also a message board? What did I miss? Surely GitHub doesn't want to take responsibility for the contents of the code hosted there, beyond taking down stuff as legally requested and required to.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    5. Re:Perhaps by Z80a · · Score: 1

      Having some fixed sane rules and sticking to em would be a good start.

  4. Sounds like poor management by Anonymous Coward · · Score: 1

    Github does have a viable market selling private git depots to companies and as the sticker says, they are making $95 million a year doing it. They just need to keep costs in line with income or investments if they see potential for growth.

    1. Re:Sounds like poor management by BarbaraHudson · · Score: 1

      They are NOT making $95 million a year - they are LOSING tons of money. They've spent $108 million on salaries in the last 6 months alone (February to October). You can't sell stuff below cost and "make it up in volume", and if they cut selling expenses (which is the biggest chunk of salaries) their revenue will also drop, same as any other business.

      Their $2 billion evaluation is stupid money talking.

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    2. Re:Sounds like poor management by dgatwood · · Score: 1

      I think the GP meant that they took in $95M in revenue. The problem was that their expenses exceeded that revenue significabtly.

      --

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

    3. Re:Sounds like poor management by dgatwood · · Score: 1

      Err.. signifcantly. Silly iPhone....

      --

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

    4. Re:Sounds like poor management by rijrunner · · Score: 1

      Sounds less like poor management than a bunch of people who have won the lottery...

    5. Re:Sounds like poor management by Anonymous Coward · · Score: 1

      Mocking "make it up in volume" in the context of software (mostly, though there is some service/hardware component) is rather stupid.
      Because you can absolutely make it up in volume.
      Selling below cost is only an issue if it's the per-item cost, and I'm pretty sure that github doesn't sell e.g. disk storage below cost on average.

    6. Re:Sounds like poor management by BarbaraHudson · · Score: 1

      When you include the overhead and sales costs, github is indeed selling below cost. And they tried to make it up in volume with a huge increase in sales staff (which costs lots of money). The associated increase in sales increased their overall loss. Read the article, it's all there.

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  5. How... by Anonymous Coward · · Score: 1

    Seriously, how can you fuck up something as basic as Github?! I get that hosting fees can be expense, but for it to go in the millions!? They are obviously doing something wrong here.

    1. Re:How... by volodymyrbiryuk · · Score: 1

      Wrong, they are doing it right. Living a baller ass life at the expenses of the investors. It is no coincidence they are going to Amsterdam so often.

      --
      sudo rm -r -f --no-preserve-root /
  6. GitHub maybe the popular one, but by Anonymous Coward · · Score: 0

    in terms of technology and services, Atlassian (Bitbucket, SourceTree etc.) is far and wide the bigger, and I think because of that kind of leadership, they will eventually prevail over GitHub and become the biggest supplier of these softwares and services.

  7. Before or after? by ckatko · · Score: 5, Informative

    Before or after they started pissing people off by deciding what "was" and "wasn't" an acceptable repo, which magically lined up with SJW views.

    "Opalgate", anyone? Read the comments yourself.

    https://github.com/opal/opal/i...

    https://news.ycombinator.com/i...

    Hiring a SJW, Coraline Ada Ehmke, to run "anti-harassment." (Good thing people on the left never harass anyone.)

    http://www.breitbart.com/tech/...

    The second you start judging what is, and isn't, "moral" (as opposed to acceptable to your standards ala no porn), then people are going to 1) get worried their repo might get affected, or 2) say "fuck you" altogether.

    1. Re:Before or after? by Archangel+Michael · · Score: 4, Insightful

      SJW are emotional children acting out against whatever injustices they can imagine.

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
    2. Re:Before or after? by BarbaraHudson · · Score: 5, Insightful

      Threatening to close down a repository (your second link) because someone used the word "retarded" is retarded.

      People who are offended can stand on their own two feet if it's that important to them. SJWs telling them that SJWs need to defend them is just infantilizing them. The whole SJW thing need to die, as do the people milking it for money.

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    3. Re:Before or after? by OneoFamillion · · Score: 5, Interesting

      Congratulations, sitting alone here at home, I actually uttered the words "what the f*ck is this sh*t" out loud when I opened that GitHub link. No mean feat, considering how difficult asterisks are to pronounce.

    4. Re:Before or after? by Anonymous Coward · · Score: 0

      Private companies and organisations are free to enact their own codes of conduct for using their services. This is not censorship any more than having a dress policy is. You use their services, you abide by their rules. It is not censorship.

      Personally, I think defending people who get a rough ride in life as is (being black, gay, trans, etc) seems perfectly reasonable. In fact, something to be celebrated. And I'd prefer to be a part of a community where bullying them doesn't happen - something that cannot be said of the comments under that Breitbart article (http://imgur.com/a/ewDOJ). If that makes me a 'social justice warrior', so be it.

    5. Re:Before or after? by Anonymous Coward · · Score: 1

      Many projects have been affected by these crusaders. They take credit for other people's work by injecting themselves into projects where they call themselves "developers" and "contributors" while their main contributions are drama and loss of productivity.

      This comment from the Opal issue pretty much sums it up: "OSS projects are, at their core, about people. ... Good technology is a side-effect", even through in some racism and sexism at the end: "the usual suspects: aggressive young white men".

      They ruin OSS for their feels as politics take precedent over technology.

    6. Re:Before or after? by Anonymous Coward · · Score: 1

      I realized you were a fuckwit when I saw the breitbart link.

      It took you that long? When I saw the magic three letters "SJW" in the first line I knew it would be whiny crap. "SJW" is the new "I'm not a racist but" - you just know the rest of the paragraph is going to have been dredged out of some cesspool where the existence of society hangs on the willingness of a commercial business to help some edgelord publicise his oh-so-terribly-transgressive views.

    7. Re:Before or after? by Anonymous Coward · · Score: 0

      I'm as "left" as you'll find in these parts these days and I've always found lefty thought policing annoying at best and really annoying at worst.

      Some of the righty trolling of the chick game developers was punk but attempting to make "safe spaces" and permitted discussion parameters is wanna-be bullying and attempting to gain tactical advantage playing the victim card at every point. Kind of too bad Clinton based her campaign on that as now we're gonna get who knows what but not good. The flip side is the righty academic witch hunt stuff which is way more sinister and equally annoying but doesn't have a cool short form like "SJW"

      Yeah I know the post was about github and why the hell the money burners felt they were worth that much and why they need so many employees but I'd thought I'd chime in as I consider myself a SJW - la lucha continua ... - but I have a much, much thicker skin and in generally find righties much more entertaining and better conversation than my comrades even though we disagree on politics for the most part.

      Dig the breitbart link. Just the URL makes me chuckle.

    8. Re:Before or after? by tomhath · · Score: 2

      Private companies and organisations are free to enact their own codes of conduct for using their services. This is not censorship...

      It is indeed censorship, just not by the government.

      But as you said - if you don't like the policies, go elsewhere. Which was GP's point - people are going elsewhere. Developers left SourceForge in droves because of their policies.

    9. Re:Before or after? by Anonymous Coward · · Score: 0

      God you whiners are pathetic. So insecure about your self-righteous superiority complex that anyone who speaks out for causes you don't care for gets a tongue lashing you could have only dreamed of getting from the catholic priests who raped you as children.

    10. Re:Before or after? by Anonymous Coward · · Score: 0

      Wow... I had never heard of this type of stuff happening on github. Thanks for the opal link. Hilarious! .... wondering if they will be hiring Anita Sarkeesian any time soon...

    11. Re:Before or after? by preflex · · Score: 2

      Private companies and organisations are free to enact their own codes of censorship for using their services. This is just as censorious as having a dress policy. You use their services, you abide by their rules of censorship. It is absolutely censorship.

      FTFY
      You don't have to be a government to be a censor.

    12. Re:Before or after? by Anonymous Coward · · Score: 0

      Here come the Crybaby Conservatives (CCs for short) demanding their safe space...

    13. Re:Before or after? by BarbaraHudson · · Score: 2, Insightful

      Hey dipshit, I never said that anyone was entitled to have a repository hosted for them. Don't put words in my mouth.

      And I didn't advocate against it - I was very clear - if you're offended, stand on your own two feet and advocate for yourself. That include the fools who are offended that someone else is offended. I made it very clear that SJWs are parasites, and that people should grow up and defend themselves.

      It's the same with "safe spaces." One group is advocating for safe spaces for people with mental illnesses "to help avoid the stigma". Pretty damned stupid, because by making "safe spaces" you're telling them that they should expect be stigmatized to the point that they need a "safe space", rather than trying to get rid of the stigma and confronting the ignorant head-on. Safe spaces stigmatize and infantalize people, taking away their personal agency.

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    14. Re:Before or after? by sinij · · Score: 4, Insightful

      SJW "speaks out" for social causes, in the same way Spanish Inquisition spoke out for Jesus.

    15. Re:Before or after? by Anonymous Coward · · Score: 0

      I'm not retarded, but some people would say that someone I love is. She has no concept of advocating for herself. I advocate on her behalf frequently. Asshole.

    16. Re:Before or after? by Archangel+Michael · · Score: 1

      I am gonna steal this :-D

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
    17. Re:Before or after? by lgw · · Score: 1

      Well played, sir, well played.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    18. Re:Before or after? by lgw · · Score: 2

      Threatening to close down a repository (your second link) because someone used the word "retarded" is retarded.

      "Retarded" is also a perfectly cromulent engineering term. We no longer manually advance or retard the timings in out cars as part of a tune-up, but people still write software that manages advancing and retarding.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    19. Re:Before or after? by Anonymous Coward · · Score: 0

      The reactionary anti-PC crowd is way larger & far more easily offended than the SJW boogiemen they rail against.

    20. Re:Before or after? by Anonymous Coward · · Score: 1

      Thanks for posting that. This is definitely enough for me to get off my lazy ass and finally move my private repos to gitlab. With militant intolerants like "CoralineAda" lurking in the background of company, it makes on wonder about management's competence and future viability overall (the financials in the article support the supposition further).

      Granted, losing my $36 a month won't make or break them but your links definitely show that something is rotten to the core at Github. Those threads were "just wow".

      Captcha: fringe

    21. Re:Before or after? by Anonymous Coward · · Score: 0

      Came to say pretty much this.

      $50 million of those losses were hurt feelings expressed in comments and issues.
      Problematic issues. Those variables are like, way too masculine yo. Neuter them.

      Github died to me the day the caved like the cowards they are.

    22. Re:Before or after? by maharvey · · Score: 1

      Wait. You're saying that SJW's can give out a tongue lashing for "causes" but everyone else has to just silently take it? You're saying you want to dish it out but you're too pathetic to take it in return? It's not the priests who are attempting the rape here.

    23. Re:Before or after? by Anonymous Coward · · Score: 0

      The hiring of an obsessive busybody to police the morality of the open communities was simply a ruse to coerce companies and universities into buying their enterprise products.

      As successful as it may have been, it's a pleasure to see that it was nowhere near any level of sufficiency.

    24. Re:Before or after? by Rob+Riggs · · Score: 5, Insightful

      Yes, it is censorship in the same way that parents washing their child's mouth out with soap is censorship. Which is to say, companies are having to do it because "parents" (if they can be called that) no longer will. So we have a bunch of special snowflakes that think it's OK to be uncivilized shits as adolescents and adults because they were not reared properly as children.

      At the same time you have similar little shits that enjoy taking offense to every possible slight that they can imagine. These people are social retards who delight in picking on the cultural retards. Now we have two apparently socially inept groups engaged in a the most uncultured culture war ever.

      This is the world we live in today.

      They are all dipshits. Both are trolling each other. It is best to just ignore them. Mod them all to hell and let the rest of us converse in peace.

      Add to the mix the professional trolls that are having fun playing both sides. They are trolling us. It is best to just ignore them. Mod them all to hell and let the rest of us converse in peace.

      --
      the growth in cynicism and rebellion has not been without cause
    25. Re:Before or after? by Archangel+Michael · · Score: 1

      SJW fake outrage only to causes that they feel important. Cops killing black men is an outrage!!!!! But Black men killing black men (http://heyjackass.com/) results in crickets.

      Here is the question, as a black man, you are more likely to die in police interaction (entire USA) or in a Chicago Shootout? And guess which one SJW are up in arms about? (ignoring all the times SJW have been wrong about the police)

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
    26. Re:Before or after? by Archangel+Michael · · Score: 1

      Show me the anti-PC crowd blocking traffic, holding rallies, burning their neighborhoods, protesting on campuses, boycotting Israel (but only when convenient) ....

      Yawn.

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
    27. Re:Before or after? by AmiMoJo · · Score: 1

      It's not the word itself they objected to, it's the context and meaning.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    28. Re:Before or after? by lgw · · Score: 1

      In code comments or something? I mean, how did anyone notice? Sounds like it wasn't wordfilters or something silly like that.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    29. Re:Before or after? by AmiMoJo · · Score: 1

      If you check the link, it was fairly prominent.

      Github isn't 4chan. It's a business platform, designed to make money one day. A lot of its value comes from the fact that businesses do use it, that people feel they can show it to employers, i.e. that it isn't 4chan.

      Free Speech Warriors just need to accept that not every website wants to allow controversial content. They banned lots of controversial things, like the GamerGate harassment organization repo, because Github isn't supposed to be some kind of test of your resilience to trolling. It's a software development collaboration site, emphasis on the collaboration.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    30. Re:Before or after? by Anonymous Coward · · Score: 0

      How does it feel to be a grandpa?

    31. Re:Before or after? by BarbaraHudson · · Score: 1

      I did not imply that I was entitled. You're projecting. Do that much?

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    32. Re:Before or after? by BarbaraHudson · · Score: 1

      We don't merge kernel code just because user space was written by a retarded monkey on crack. Torvalds, Linus

      How many retards are going to be using github anyway? You seem to be under the impression that retard still means the same as intellectually challenged. Not in the 21st century - it generally means someone doing something stupid (like taking offence at words that have changed their meaning). And retard still has accepted uses, such as relative levels of mental retardation

      the terms mild retardation, moderate retardation, severe retardation, and profound retardation

      Or would you prefer that we go back to the previous terminology, which included moron, imbecile, and idiot as descriptors for the various levels of below-average intelligence.

      People use these terms all the time to refer to others with average or above-average intelligence. Quit being a moron :-)

      --
      "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
    33. Re:Before or after? by CRC'99 · · Score: 2

      Congratulations, sitting alone here at home, I actually uttered the words "what the f*ck is this sh*t" out loud when I opened that GitHub link. No mean feat, considering how difficult asterisks are to pronounce.

      This. I read through the first two dozen or so posts, then realised how many posts there were and my first thought was "These guys are morons."

      It's like the joke: How do you find a vegan? Don't worry, they'll tell you.

      As a developer myself, I don't care what your sexual preferences are, who you want to be in life, what your favourite colour is, what your political beliefs are. Its all irrelevant. What I care about is what your diff / patch / pull request does, is it going to break anything, and is it ok to merge.

      Trying to make this about anything else is petty bullshit and belongs anywhere but my bug tracker (where I don't care what you do).

      --
      Sendmail is like emacs: A nice operating system, but missing an editor and a MTA.
    34. Re:Before or after? by lgw · · Score: 1

      Really sounds like a site I want nothing to do with then. I'll add it to my list alongside Twitter. Hopefully somewhere there's a common repo that is just a repo, not a platform for social commentary.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    35. Re:Before or after? by EETech1 · · Score: 1

      Because then you could conceivably have an idiot working very hard to become a moron!

    36. Re:Before or after? by Anonymous Coward · · Score: 0

      Ordinary people tend to get mad when fruitcakes from California label them as racists for not agreeing with BLM and #killallmen horseshit.

    37. Re:Before or after? by Anonymous Coward · · Score: 0

      is there a pc/sjw way of writing, formatting code?

    38. Re:Before or after? by Anonymous Coward · · Score: 0

      Gamergate didn't actually happen though; it was just some SJWs attention whoring:

      http://www.oneangrygamer.net/2016/12/fbi-closed-gamergate-case-due-to-no-actionable-leads-evidence/18282/

      Captcha: vanish

    39. Re:Before or after? by jhol13 · · Score: 1

      But what is porn is a moral question!

      Besides, there is a line. If someone behaves abusively or threateningly s/he must be banned, even if the abusiveness is outside the project. At least I would not let those approaching children "inappropriately"[1] in my project, no matter how good their code is.

      [1] A problem today in Finland, older men try to lure (early) teens into discussion, maybe pictures, maybe meet.

    40. Re:Before or after? by Anonymous Coward · · Score: 0

      That's a false equivalency. The group with more power is never going to have to protest to change things, they just do it or they don't.

    41. Re:Before or after? by Anonymous Coward · · Score: 0

      The term mentally retarded was used to replace terms like idiot, moron, and imbecile because retarded is not a derogatory term.

      Generation Participation needs safe spaces from trigger words though.

    42. Re:Before or after? by Raenex · · Score: 1

      Which is to say, companies are having to do it because "parents" (if they can be called that) no longer will.

      They don't have to do shit. They just got infected by political correctness gone mad. In Github's case, they crossed the Rubicon when they tossed out their "Meritocracy" rug. They did this to appease an employee more interested in gender politics than coding and that they were already coddling.

      Said employee ended up causing even more drama before eventually leaving. Did Github learn their lesson? No, they doubled down and hired some tranny who was already causing drama on the site and trying to turn individual projects into social "justice" crusades.

      Doesn't surprise me at all that they are losing money.

    43. Re:Before or after? by Anonymous Coward · · Score: 0

      No, they're usually so stupid/ignorant that they'll be triggered by the word itself, regardless of context. Then they'll get even more nasty and expensive when you try to logically explain it to them. The only way to win is to simply laugh at them.

  8. Re:Selling private repositories is their money mak by Sarten-X · · Score: 1

    They're selling convenience.

    Most software managers don't care too much if someone that can produce a NSL gets to see their source code. They are concerned about direct competitors having access, and they're concerned about having to pay sysadmins to handle the development environment. Sysadmin labor isn't cheap, and neither are the servers, storage, backups, auditing, or workflow tools that make development happen.

    If your business is making software, you can just pay GitHub for that infrastructure, and focus on your software.

    --
    You do not have a moral or legal right to do absolutely anything you want.
  9. Shoulda followed SourceForge's example by Anonymous Coward · · Score: 0

    You can make a lot money pushing adware onto popular free downloads.

    1. Re:Shoulda followed SourceForge's example by Anonymous Coward · · Score: 2, Insightful

      SourceForge doesn't do that anymore though

    2. Re: Shoulda followed SourceForge's example by Anonymous Coward · · Score: 0

      The trust is lost, and cant be regained by simply stopping the offending problem.

    3. Re:Shoulda followed SourceForge's example by Anonymous Coward · · Score: 0

      Did they clean up the repos they had previously infected as well, or they just conveniently left them as they were?

    4. Re:Shoulda followed SourceForge's example by Anonymous Coward · · Score: 0

      They cleaned them up

  10. 600 employees by 110010001000 · · Score: 3, Interesting

    Why do you need 600 employees for Github? You need a tenth of that, including engineering, marketing, sales and support.

    1. Re:600 employees by sinij · · Score: 0, Flamebait

      You need 30 people to maintain Github, the rest are affirmative action hire, SJW thought police department, and female game developers.

    2. Re:600 employees by Anonymous Coward · · Score: 0

      You would think that a site like GitHub is mostly run by the community like every other project on it.

    3. Re:600 employees by Anonymous Coward · · Score: 0

      Found the triggered SJW

    4. Re:600 employees by sinij · · Score: 2

      I am Sander supporter and did not vote for Trump. Don't let this stop you from proceeding to smear me as racist, misogynist, a tool of oppressing patriarchy, tell me to check my privilege, and proceed to attempt to get me fired, you wretched scum.

    5. Re:600 employees by Aighearach · · Score: 1

      The funny part is that lots of the "usual suspects" (who complain about things) on slashdot are complaining about the number of employees, and then I was over at gitlab (who is supposedly the much better role-model) and they have 21 open positions.

      It may be that people commenting simply don't have any experience in what staff is needed for this service. For example, I've seen comparisons to craigslist, but craigslist has no corporate services; all they do is offer free consumer services, and advertising. Paid technical support alone would require many more employees than craigslist would need in total, just to provide the service, and it also requires additional personnel to sell it and manage accounts.

      A lot of the people complaining about the number of employees not only don't have any experience that would lead them to believe they know how many employees are needed, they also don't even know what services are being sold! So they fall back on, "golly, the stuff I use that service for would only take a few employees." Sure.

    6. Re:600 employees by Sperbels · · Score: 2

      Sorry, no. Bernie supporter here. SJWs annoy me. Can you guys just all go be Republicans so we don't have to deal with you on the left?

    7. Re:600 employees by 0100010001010011 · · Score: 1

      The people that voted for Trump are the ones that voted for Romney and McCain. The reason Trump Won is because Clinton was so toxic everyone that voted for Obama decided to stay home or vote 3rd party. Republican votes in Wisconsin and Michigan were essentially flat while Clinton managed to tank Democratic turnout and Johnson and Stein saw massive gains.

      But continue to blame the fact that she lost on thinking that he won.

    8. Re:600 employees by Anonymous Coward · · Score: 0

      Grow up. The world is full of annoyances.

      Take Bernie Sanders supporters. . .please!

    9. Re:600 employees by Anonymous Coward · · Score: 0

      Fuck man, don't send 'em over to the right either. We certainly don't want to deal with this shit.

    10. Re:600 employees by Anonymous Coward · · Score: 0

      Since the metric you're using is "people that voted", do keep in mind that by that metric, Clinton did, in fact, win.

      I know, Trump fanbois will now tie themselves in screaming, squirming knots trying to pretend it isn't true, but there it is.

    11. Re:600 employees by Anonymous Coward · · Score: 0

      Well shit. I guess we'll have build a big rocket and shoot them into the sun.

    12. Re:600 employees by Anonymous Coward · · Score: 0

      The election is over, move on, all of you. At least try to talk about github or something related to the article.

      Right now the SJW(terrible people) vs terrible people arguments are more relevant than your complaints about the election.

    13. Re:600 employees by Anonymous Coward · · Score: 0

      I won't complain about the number of employees but I still wonder what they do all day. That's a ton of people.

    14. Re:600 employees by Anonymous Coward · · Score: 0

      Interesting how the socialist is now more centrist than the SJWs.

    15. Re:600 employees by Anonymous Coward · · Score: 0

      Is there a kickstarter for this? Can someone send me the link?

    16. Re:600 employees by sinij · · Score: 1

      There was one, but it was shut down because we couldn't find enough female rocket engineers to shield the project. So the incomplete rocket was labeled phallic symbol, the whole thing was declared sexists and everyone got fired.

  11. Finding stuff is a big problem by Anonymous Coward · · Score: 0

    Although Github has an explore feature and search facility, its still basically where code goes to die for the most part. They need a better way of opening up that archive and presenting it to users. Probably a better focus on features for the paid accounts too. I'm sure all the espionage and hacking going on is not providing the market with much confidence in the protection of IP and stopping govs and hackers from exploring backdoors in software. All of that is really dragging down the tech market at the minute.

    1. Re:Finding stuff is a big problem by Aighearach · · Score: 1

      Finding things is easy, just learn the name of the thing you're looking for before you search.

      It isn't intended as a buffet, though there are obviously ways of browsing and discovering things. But it isn't a focus. And that is a good thing, just because somebody shared code doesn't mean somebody else, like their hosting company, should run out and promote them. I don't share very much code because most of what I write that is open source isn't interesting to anybody else; a company doing something similar would be better off starting where I started and making their own customizations. If github was making those things easier to find, I'd have to delete the repos that weren't interesting to the public.

      Unless they're running out of storage space, why not just let those bits rest in peace, and if they're needed, they're there.

    2. Re:Finding stuff is a big problem by 0100010001010011 · · Score: 1

      They need to improve their code search function. You'd think that a software code search would be done 'verbatim' but they apparently the same search algorithm as google, filtering out punctuation and the such.

  12. why does it have 600 people? by Anonymous Coward · · Score: 1

    doubled headcount to 600

    Really, 600 people? For what?

    I get that designing and running a service like that takes real work. It doesn't happen by magic. Still, it seems like the job for a few dozen people, not the job for 600 people. What are they all doing?

    I could understand it if you said, "github has 46 employees".

    1. Re:why does it have 600 people? by Ostracus · · Score: 1

      1 to change the light bulb. 599 to write up an action plan about changing the light bulb.

      --
      Shai Schticks:"You don't make peace with friends, you make peace with enemies"
    2. Re:why does it have 600 people? by Anonymous Coward · · Score: 0

      Perhaps, on any given day, 554 of them are in Amsterdam doing "research"?

    3. Re:why does it have 600 people? by istartedi · · Score: 2

      Wow, yes. This. Craigslist has no more than 50 employees.. Craigslist. Let that sink in. A service with a much higher profile, used by a lot more people.

      --
      For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
    4. Re:why does it have 600 people? by LynnwoodRooster · · Score: 1

      No, 1 to change the lighbulb, 99 to collaborate on the action plan about changing the light bulb, and 500 to discuss and update the status on Slack.

      --
      Browsing at +1 - no ACs, I ignore their posts. So refreshing!
    5. Re: why does it have 600 people? by Anonymous Coward · · Score: 0

      Sure, but compare their UIs. Those buttons are not goi

    6. Re: why does it have 600 people? by Sperbels · · Score: 1

      I have no idea what goi means in this context, but are you tell us that it takes 450 people to make a UI look less HTMLish?

    7. Re: why does it have 600 people? by Anonymous Coward · · Score: 0

      No, it takes 1 person to make the UI look nice and the other 450 are developers running around like chickens with their heads chopped off trying to keep up the illusion to the world that their service works, never breaks, and isn't actually 50 hamsters running on wheels inside a cardboard box fort.

  13. How do people back up personal code? by bobo_1968 · · Score: 1

    For business code I imagine your company has its own repository management and mirroring, but for personal projects how do you backup your code? I feel like most students/outside of work programmers just throw it up on GitHub, but that may not be the best strategy. What do you do?

    1. Re:How do people back up personal code? by Anonymous Coward · · Score: 1

      Buy a usb drive? Hell buy 2. Copy paste. Done. Code is not that big. Also 99.99999% of the code I have ever written is pretty much non useful anymore anyway. Most code has a very short shelf life. Dont think so?

      Spin back 10 years. If you worked most of your code was probably C/C++/mfc/VB sort of goop. Spin back another 10 years and you are looking at C/pascal/VB maybe even asm. Go forward 5-10 years now work code is java/C#/javascript. In 10 years it will be something different.

      Some projects last. That is very true. However, the vast majority of them fail. All you see left are the survivors. Very very very very very rarely do you go back and look at your very old stuff. Most of the time if you are trying to solve something you look up the alg bend it to your will then work it into whatever you are working on.

    2. Re:How do people back up personal code? by Anonymous Coward · · Score: 0

      The same way I backup any other piece of sensitive data. I put it on my home server (which uses ZFS and a RAIDZ2 array) and then routinely back that up to an external drive that's rotated with another drive offsite. Before I had that kind of setup, I took the ghetto route and just routinely manually copied it around to different hard drives on my various PCs/laptops.

      I only put stuff on GitHub if I really want others to be able to look at it. Otherwise, I keep it to myself.

    3. Re:How do people back up personal code? by Anonymous Coward · · Score: 0

      I "just throw it up on GitHub" and then have it cloned on at least one machine I own. (Usually more than one, just by virtue of my having both a desktop workstation at home and a laptop for travel.)

      Since a git repository is self-contained and contains all of the history, I don't worry much more than this. If github were to go away I have my local copy and if my local copy fails then I can clone it again from github.

      (Feel free to substitute any other git hosting service in place of github here. I just use it because I already have an account there so it's a no-brainer.)

    4. Re:How do people back up personal code? by Anonymous Coward · · Score: 0

      uhhhhhh, I mean, I guess so, if you only do freelance or are a contractor. I mean, I usually have to support (aka constantly fix the horribly broken monstrosity that barely squeaks by as "software") written by contractors for the companies I work for. That usually requires going back to old projects constantly because, you can't write new stuff until the old stuff stops the spontaneous combustion...

  14. They priced themselves out of the market by MikeRT · · Score: 4, Interesting

    I remember looking at Github Enterprise and finding their licensing model insane. It seemed like a recurring fee of about $5k/20 users/year as a starting point. There was no way I could have solid it to our leadership. $500 for only 20 users, easy sell. $5k? That is a site license of IntelliJ Ultimate or this.

    1. Re:They priced themselves out of the market by PhrostyMcByte · · Score: 1

      Agreed. While I'd prefer Github, we found their pricing to be really uncompetitive. We found Atlassian's offerings to be basically just as good but much more cost effective.

    2. Re:They priced themselves out of the market by Aighearach · · Score: 2

      Very few companies have 20 developers and think $5k is more than pocket change. This is a critical service and most of their customers would spend more just doing an evaluation to find out if something else that is cheaper can meet their needs, and what the differences in risk are.

      Companies pay $50k/yr just to have phone support from a specialist. $5k for hosting, well is it important to what they do? Yes or no?

      For me the answer would be no, it isn't important at all to have hosted code repos, it is a minor convenience that I don't need to pay for. But if I had a software shop with lots of employees, and I always had a few new people and a few interns, etc., then it could easily save money compared to having to train all the incoming people in whatever hosting strategy and technology we're using.

      Even for a small consultancy this should be peanuts. For them it is worth it just to have a site that clients can use to look at stuff, where they don't have to provide the support, but where they can manage the security and access.

      If you look at companies that don't need this stuff, that's companies who write code for their own products, and have small teams. That's not even the target market! Of course the pricing doesn't work for them, they shouldn't even be buying something. They shouldn't have even checked the price!

    3. Re:They priced themselves out of the market by guruevi · · Score: 2

      In the end it's just a Git repo, if you have 20 programmers, you have at least one of them that can set up a server somewhere, there are even VPS providers that will fully manage a container. Sure the UI is nice, but there are better Git programs on the desktop, most of which are free.

      The problem seems to be '600 employees'. I can understand a handful of coders, designers and sales people but 600 of them and then sending those 600 people all over the world? That's a huge enterprise, you could run Github on the management costs of that bunch alone unless those people are actually supporting the programs you have put in your GitHub for you, I don't see how that is even remotely possible.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    4. Re:They priced themselves out of the market by Aighearach · · Score: 1

      In the end it's just a Git repo...

      Nope. And if you would be happy with just a git repo, you shouldn't have even been looking at their enterprise services. It isn't a git repo, and it can't be replaced by a git repo.

      Not everything that you don't know what it does, does nothing. Some of those things do things you simply don't know about.

    5. Re:They priced themselves out of the market by Anonymous Coward · · Score: 0

      Bit more, they provide a whole ci enviroment, bug tracker, and a couple other odds and ends. That'd probably eat like a week or so of a dev with ops skills time to set up and maintain; then you have to worry about server costs.

    6. Re:They priced themselves out of the market by guruevi · · Score: 1

      But as I said, there's plenty of providers being able to spin that up and once it's 'figured out' you can always spin up more.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    7. Re:They priced themselves out of the market by Anonymous Coward · · Score: 0

      I'm in a big company transitioning from Github to Gitlab. The problem is not just the developer seats... We'd like also sales to be able to create and especially track issues. That expense has not been justifiable on Github.

    8. Re:They priced themselves out of the market by PhunkySchtuff · · Score: 1

      $5k per 20 seats per year.
      This works out at $250 per seat per year. This is less than a dollar a day. If you're running a company with 20 developers and can't afford $1 per person per day then you're doing something wrong.

  15. Re:Github? More like shithub. by Anonymous Coward · · Score: 0

    Wow, that was such an intelligent comment. You must have been valedictorian at Trump University.

  16. Re:Selling private repositories is their money mak by BarbaraHudson · · Score: 2

    So when you decide to mitigate the risk by bringing it all in-house, you can't. Pretty stupid excuse. For large projects at large firms such as those mentioned in the article (Walmart, Ford, etc), you need these types of people on hand anyway. Farming out shit "for convenience" isn't an excuse for being lazy.

    Sure it might cost more, but if you farm it all out your business will consist of workers who are jack-of-all-trades and master-of-none. Perhaps this trend explains the mediocrity of today's products.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  17. Use GitLab instead by YutakaFrog · · Score: 2

    First of all, this is easily the worst description of any technological subject I've seen on Slashdot for a long time: "The startup operates a sort of Google Docs for programmers, giving them a place to store, share and collaborate on their work." It does give you a way to store, share, and collaborate, but the mechanisms are drastically different. Google Docs collaboration is synchronous, GitHub's is serial.

    I think GitLab has emerged rapidly the last two years or so as a very viable alternative to GitHub. If you want to use their hosted service, it's free for as many collaborators as you want, for as many projects as you want, that don't have to be public. It includes built-in continuous integration services, Kanban-style issue boards, Slack-style chat, and way more all for free. They're iterating and adding new features at an incredible rate. If you want to host your own, that's also free if you don't need any of the enterprise-edition features, which leaves the community offering still quite good.

    Early this year, when the open letter to GitHub was posted, GitLab made their own post ( https://about.gitlab.com/2016/... )about how they're working to solve the problems presented, even though they weren't specifically the addressee of the letter. I never did hear about GitHub actually responding to that letter, and I've seen very little iteration or change from GitHub in a very long time.

    1. Re:Use GitLab instead by Hulfs · · Score: 1

      I've seen very little iteration or change from GitHub in a very long time.

      That's just plain disingenuous. They just released some nice code review stuff and projects support a couple months ago: https://github.com/blog/2272-i...

      Here's their new feature postings: https://github.com/blog/catego...

      They release something just about every couple weeks. It's not always huge, but they do iterate fairly often.

    2. Re:Use GitLab instead by Anonymous Coward · · Score: 0

      I didn't say there's no change, I said there's little. In my opinion, everything on the front page of that blog is pretty small, especially compared to the scope of the new features that GitLab has been releasing every single month. It's not a disingenuous statement, we just have different opinions on the value of what GitHub is doing.

    3. Re:Use GitLab instead by speedplane · · Score: 2

      this is easily the worst description of any technological subject I've seen on Slashdot for a long time: "The startup operates a sort of Google Docs for programmers, giving them a place to store, share and collaborate on their work." It does give you a way to store, share, and collaborate, but the mechanisms are drastically different. Google Docs collaboration is synchronous, GitHub's is serial. ...

      So despite the description being accurate, it's "the worst description of any technological subject I've seen" because of your made-up pedantic formalism? Who cares if it's synchronous or serial, the article did a good job explaining a complex product;

      --
      Fast Federal Court and I.T.C. updates
    4. Re:Use GitLab instead by Anonymous Coward · · Score: 0

      that don't have to be public

      GitLab's interface is hideous compared to GitHub's.

      But the price is right, especially since I'm not aware of GitLab considering me a "problematic" individual simply because I'm a white male.

    5. Re:Use GitLab instead by YutakaFrog · · Score: 2

      I think the point I was trying to make is that GitHub and GDocs feels very different. One is methodical and peer reviewed, one is kind of an editing free-for-all. But as I was trying to boil down what makes them different, it really just came down to how the collaboration is timed. I still maintain that it makes a big difference, but you're not disputing that. As you say, my complaint was made-up and pedantic, and upon further reflection, I agree with you that it's a better analogy than I gave it initial credit for. I retract my complaint.

    6. Re:Use GitLab instead by Anonymous Coward · · Score: 0

      Holy Shit. Mod this guy up for having the integrity to admit his complaint was misplaced.

      Surprisingly few people can admit when they were wrong and we need to encourage that.

    7. Re:Use GitLab instead by AmiMoJo · · Score: 1

      Is GitLab making any money?

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    8. Re:Use GitLab instead by Anonymous Coward · · Score: 0

      ??

      An acknowledgement of an error and an apology?

      Well done that person, bravo!

  18. Why the @#$% does GitHub need 600 employees? by Anonymous Coward · · Score: 0

    It should be in the tens, not hundreds.

  19. They're a perfect Bubble 2.0 utility company by ErichTheRed · · Score: 4, Interesting

    I'm heating 1999-2000 flashbacks. Back then, all the Internet "utility" companies like Sun, Cisco, the ISPs and the telecoms were spending money like crazy building lavish workplaces for all the dotcom kids with the money the VC firms were giving them. Same thing happened back then as is now -- there's a massive arms race to build the best, most all-inclusive employer out there to attract and keep the elusive people who happen to know the flavor of the moment. Remember, Google serves 3 meals a day, provides free bus service from Hipster Central in San Francisco, and basically operates a college campus. They're widely seen as the benchmark, and every tech company seems to be emulating them to as much of a degree as their funding will let them.

    GitHub's a perfect example of one of these utility companies. Slack, Atlassian, AWS, Microsoft (for Azure,) are also good examples. All of them make tools to let web developers crank out phone apps faster, which is the flavor of the moment, or provide infinite infrastructure to run the apps on. Traditional IT shops are also getting in on this trend, because GitHub and friends let CIOs push the magic DevOps button. All of a sudden, your siloed coders working on must-run applications in a mission critical environment switch into a Facebook-esque "move fast and break things" Agile model -- or so the Agile consultants tell them. I work in systems engineering/integration for a very staid company writing mission critical applications for an industry that is risk-averse, and our dev organization had the magic button pushed. I think this is one of the ways GitHub is making their VC money -- the VCs see that corporate executives will gladly write a check to tick the Agile box, and their toolset is seen as one part of it. Get all your developers working on Slack or HipChat as well and you're really cooking!

    We'll see what happens this time around when the bubble pops. I actually like a lot of the cloud computing, API-focused and agile development stuff, and I think IT is going to adopt most of it regardless of how critical the stuff they're writing is. But some of it is absolute nonsense outside of the sphere of web development companies writing throwaway apps for phones. Just like in 1999 though, if you can spell HTML, let the good times roll. The truly skilled will always survive.

  20. My favorite line by chispito · · Score: 2

    The issue took on a new sense of urgency in 2014 with the formation of a rival startup with a similar name. GitLab Inc.

    The article fails to mention what Git is, or why one might reasonably expect a competitor to have "Git" in the name.

    --
    The Daddy casts sleep on the Baby. The Baby resists!
    1. Re:My favorite line by Anonymous Coward · · Score: 0

      People who don't know what Git is are not the target audience.

    2. Re:My favorite line by lgw · · Score: 1

      The nice thing about the web is you don't need to waste any column-inches explaining what git is - just make the first use of "git" a link!

      --
      Socialism: a lie told by totalitarians and believed by fools.
    3. Re:My favorite line by MichaelSmith · · Score: 1

      Git is Linus Torvalds's name for Andrew Tridgell.

    4. Re:My favorite line by Anonymous Coward · · Score: 0

      Wow. You must be some VERY special kind of retard.

    5. Re:My favorite line by chispito · · Score: 1

      I was going for, "People who do not know what Git is wrote the article." It's an article about evaluations, not about repositories.

      --
      The Daddy casts sleep on the Baby. The Baby resists!
  21. Re:Selling private repositories is their money mak by TheRaven64 · · Score: 2

    If you want something really private, why use a 3rd party hosting service?

    How much do you have to spend on system administrators to keep the server that's hosting your stuff secure? For small organisations, the cost of GitHub is a lot lower than the cost of a private repository with the same level of security.

    --
    I am TheRaven on Soylent News
  22. Re:Selling private repositories is their money mak by ShanghaiBill · · Score: 4, Interesting

    If you want something really private, why use a 3rd party hosting service?

    Most companies don't need "really" private. They just need "normal" private. I don't wan't to just open all my code to the world, but it isn't something I lose sleep over.

    I once consulted for a company that was considering open sourcing their main product. Some people were opposed, and thought they would be giving away their "crown jewels", but they decided to go ahead. A year later, we checked, and the OSS repo had been downloaded this many times: 0.

    The hard truth is that nobody cares about your crappy code, and even if you give it away, you will often need to work hard to get people to use it.

  23. Re:Selling private repositories is their money mak by HaZardman27 · · Score: 2

    So when you decide to mitigate the risk by bringing it all in-house, you can't.

    Not sure why that would be the case. You're still using git as your client for interfacing with github, so each developer should still have the entire source code history. If you want to re-centralize on-site, just have a dev pull the latest from github, add a new remote to the on-site server, and push. You can then delete your github repository, which is supposedly a permanent, non-reversible act.

    --
    Apparently wizard is not a legitimate career path, so I chose programmer instead.
  24. Re:Selling private repositories is their money mak by Altus · · Score: 2

    The issue isn't that they are selling something people don't need, because tons of companies use their service.. and the issue isn't that it doesn't make money because clearly it does... the issue is that it take 600 people to run the business which seems insane.

    --

    "In America, first you get the sugar, then you get the power, then you get the women..." -H. Simpson

  25. Re:Selling private repositories is their money mak by BarbaraHudson · · Score: 1

    Read the article (I know, heresy here but still) - they make their money from large corporations, the ones who (like their customer IBM) should be able to eat their own dog food.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  26. Cloud company losing money? by LynnwoodRooster · · Score: 1

    No surprise. The only ones who will end up making money in cloud technology will be the people hosting the cloud. All others will engage in a race-to-the-bottom in terms of pricing, simply because the cost to start a cloud company is minimal - but the cost to operate a cloud company is pretty static for all (AWS, Azure, etc), and there is ALWAYS someone who thinks they can do the startup cheaper and somehow break through the hosting costs (and fail, yet again, to do so).

    --
    Browsing at +1 - no ACs, I ignore their posts. So refreshing!
  27. Re:Selling private repositories is their money mak by BarbaraHudson · · Score: 1

    We're talking about people securing the local server that would now run the repository - something that their customer IBM should be able to do instead of using github, if only to better position themselves with yet another sales option to their customers.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  28. 66 million is a lot. by hey! · · Score: 1

    It's worth noting that Amazon didn't post any meaningful profits until very recently; but the end game is clear: investing meant owning a share of overwhelming future economic power.

    Github is really convenient, especially for ad hoc projects, but I wonder what investors are getting. Investors want to own something but it would be trivial to move your code repositories to a different service. Amazon or Google could crush Github if it ever suited their purposes.

    --
    Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
  29. github is your resume by Anonymous Coward · · Score: 0

    Frankly I'm really surprised by all the github negativity here, apparently /. is not comprised of the people I thought it was.
    I'm not going to list all the features and benefits of github, to which there are many, they are easy to find with a quick search. I will say that, in this day and age, If you code for a living github is your resume. So, if you don't 'get github' and you are surprised about your job opportunities, don't be....

    1. Re: github is your resume by Anonymous Coward · · Score: 0

      So true, and faking your github profile is even easier than lying on your resume.

      https://github.com/avinassh/rockstar

    2. Re: github is your resume by Anonymous Coward · · Score: 0

      That's hilarious, and the type of social hacking I'd expect from a programmer.

  30. Re:Selling private repositories is their money mak by Anonymous Coward · · Score: 0

    ?? I don't understand what you're bitching about. It's the same reason people farm out their e-mail to Google, Microsoft or Intermedia. Yes they have people on staff who could do the job but they've got other shit to do. It's cheaper and more reliable to outsource discrete functions like Git or e-mail to a company which has the scale to do it cost-effectively.

  31. What does this mean? by trevc · · Score: 1

    Though not much popular outside the technology circles

    1. Re:What does this mean? by msmash · · Score: 2

      GitHub is popular among coders, but people in other industries, for instance, don't necessarily know about it. Perhaps a bad example, but Google search engine is popular among a wider group. People in entertainment, business, technology and other industries know about it, and likely use it all the time. Many might not like the iPhone, or may not be able to afford it, but they are aware of its existence. Same can't be said for GitHub. Even many in tech industry might not really know much about GitHub.

  32. Re:Selling private repositories is their money mak by BarbaraHudson · · Score: 1

    They're losing money because of the high sales costs. And when they cut sales staff, they'll lose market share and customers. That's the problem when you sell a commodity that anyone can compete with you - you don't have any real differentiator except cost - so you create the market, and someone who has less overhead steals it from you because they can charge less. They are pretty well hosed.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  33. Re:Selling private repositories is their money mak by Anonymous Coward · · Score: 0

    Why would IBM need GitHub? They own Rational and that is the industry Cadillac.

  34. a software category it essentially gave birth to by unrtst · · Score: 0

    Why in the world are they saying this is, "a software category it essentially gave birth to"? There were loads of others with far more features for years before git, let alone github. It's like saying facebook gave birth to social networks.

  35. GitHub is really impressive, but there are others. by SuperKendall · · Score: 1

    I really admire GitHub for the technical work they've done. Take into account the online management of folding in pull requests, really impressive (although it made me wonder a bit who would do that online where they couldn't test the effects of rejecting some changes!)

    However, as impressive as GitHub is, to me the pricing model has always been a little high end, and so I've ended up using BitBucket more. They also do a great job hosting Git repositories and have some impressive technical abilities as well.. they are like the Avis of Git repos, "They Try Harder".

    So I do worry a little about GitHub having some kind of implosion but it's great to know there are other very worthy choices to move to, in the meantime the git repo completion is good for everyone.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
  36. Re:Selling private repositories is their money mak by Anonymous Coward · · Score: 0

    Why can't they secure it, again? Because you've arbitrarily decided that the only alternatives are some 6-figure security consultant on staff or completely giving up and using a third-party host? Technically the second isn't a real option compared to the first. And the first is of dubious quality in most circumstances.

  37. I agree. by Ginguin · · Score: 2

    There is a difference between "popularized", "refined", "simplified", and "gave birth to". They might be able to claim some of the first options, but not the last.

    --
    "Anything you say can and will be used against you in a targeted advertisement" - Adam Harvey
    1. Re:I agree. by Anonymous Coward · · Score: 0

      SourceForge

  38. "Building a Coder's Paradise Is Not Profitable" by Anonymous Coward · · Score: 0

    Really?!!!

    You don't say...! Finally figured out that nobody can't make money losing money?!!! If you give away everything for free, there's no money to be made.

    Very sharp guys...!

  39. Hookers and blow? by jxander · · Score: 3, Insightful

    How is GitHub blowing through that much money??

    Look... I'm not saying they shouldn't be spending any money. I know server infrastructure has costs. But they lost 66mil in 9 months ... that means they SPENT at least 66 mil in 9 months. On what?? How much server do you need to host a text repository, with SVN and a website?

    And GitHub had been around for nearly a decade, so it's not like they were building a whole new server farm from scratch. That's 66 mil on salaries, maintenance and upgrades.

    --
    This signature is false.
    1. Re:Hookers and blow? by Actually,+I+do+RTFA · · Score: 1

      I can easily see spending $30M on sales to big clients (convincing IBM to give you a contract isn't cheap) and $30M to work on new features to try to avoid someone eventually offering a better alternative.

      --
      Your ad here. Ask me how!
    2. Re:Hookers and blow? by Milharis · · Score: 1

      Salaries are probably a big one. If we assume an average cost of about $150k per employee per year, that's $67.5M for 600 employees in 9 months.

  40. Re:Selling private repositories is their money mak by jopsen · · Score: 1

    Most small startups or contracting gigs, don't worry about things like that... It's much more valuable to not have a sysadmin managing, scaling and patching a server running git locally...

    Honestly, a github organization with solid policies and 2FA for all users is pretty solid. Sure github could get hacked, but they have entire security teams to mitigate that risk. Your average basement git server doesn't have any security teams.

  41. On GitHub becoming a critical SPOF by E-Lad · · Score: 2

    The conveniences conveyed by GH are undeniable - ready-made code dev environments with widely-used issue and progress tracking, integration with other project management tools (zenhub, jira) and all in all eliminates and centralizes one's OSS and private project interests.

    However, as more and more Internet Infrastucture-ish projects have moved to GH, either completely or in major parts, I've become worried. OpenSSL, several Apache.org projects, some OSes (Linux, FreeBSD, illumos), and so on call GH their home now, or at least use it in some substantial way. Eggs in Baskets analogies apply, and given the security landscape of things now, one must at least pause and weigh the Pros and Cons of this centralized and trusted repo for so many important pieces of code.

    1. Re:On GitHub becoming a critical SPOF by MichaelSmith · · Score: 2

      Fortunately DVCS makes it trivial to keep mirrors.

    2. Re:On GitHub becoming a critical SPOF by Anonymous Coward · · Score: 0

      FreeBSD has not moved to github, they don't even use git. There is a read-only git mirror or FreeBSD's Subversion repo on github, that is popular with many developers who regret the official position to stay with Subversion. If you want to commit to FreeBSD, you have to use svn, at least to make commits.

    3. Re:On GitHub becoming a critical SPOF by Anonymous Coward · · Score: 0

      Remember SourceForge? Pointing out that GitHub hosts a lot of critical infrastructure, and SF was the predecessor seems to cause a lot of people to have (even violent) emotional reactions. Once the money is short and VCs (or more likely a newly installed adult supervision CFO) decide that cutting the burn and revenue generation are necessary, these same people will be screaming about betrayal.

      Look, here is the real deal:

      Q. What is the growth rate of revenue, and the plan to be cash flow positive?

      This applies here, because GitHub -isn't a startup-. If it was, you could chase being -huge-, but it is now likely that this question above is readily answerable.

    4. Re:On GitHub becoming a critical SPOF by Anonymous Coward · · Score: 0

      The very nature of distributed version control means nothing will happen to the code, or its version history if GitHub disappears, but there's a ton of scripts and build systems that point to repositories hosted on the site, and those will be a pain to find and fix.

  42. what a waste by qQ7eBMsfM5gs · · Score: 1

    What a waste! I don't believe VCs tolerate this kind of ROI...

    1. Re:what a waste by CanadianMacFan · · Score: 1

      The problem is that the VCs also don't tolerate companies that grow slowly because they want the firms they have invested in to IPO in a short time frame. That means they have to grow big and grow fast. And unfortunately the company is going to lose money during that growth period. Another round or two of fund raising is expected on the way to an IPO. The only issue for the VCs here is is when they hear about some stupid expenses (i.e. employees jetting around the world) then it's time to bring in management that is more business oriented.

  43. Re:Selling private repositories is their money mak by slack_justyb · · Score: 1

    Perhaps this trend explains the mediocrity of today's products.

    I don't think it covers all of it, but it plays a role in it.

    Companies have moved past seeing IT as some magical resource and see it about the same way most first world nations look at a toilet. Unless it's really shitty, everyone just expects it to be everywhere they go and function good enough to get the job done. There a few out there that understand that it's something that plays a role in life three to five time a day and that when shit is serious, you're really going to enjoy having a top of the line as opposed to a "just good enough" model.

  44. Re:Selling private repositories is their money mak by Sarten-X · · Score: 1

    So when you decide to mitigate the risk by bringing it all in-house, you can't.

    There are reasons to bring infrastructure in-house, but risk mitigation isn't one of them. Your risk is mitigated by having an SLA with a provider whose primary function is to maintain those servers, with penalties attached for downtime to compensate for the loss.

    For large projects at large firms such as those mentioned in the article (Walmart, Ford, etc), you need these types of people on hand anyway. Farming out shit "for convenience" isn't an excuse for being lazy.

    No, those companies really don't need a devops sysadmin on hand. They need sysadmins in other areas, who can focus on those areas, but they don't need nearly so many supporting the development.

    Sure it might cost more, but if you farm it all out your business will consist of workers who are jack-of-all-trades and master-of-none.

    Really, it works the other way. If you farm out distinct areas of your infrastructure, the experts you have don't need to work in those areas, and they can specialize in the areas in which you do need in-house support.

    A company I have worked at has reasons (some of them even decent) to have everything in-house, and as a result of that, my sysadmin team was highly fragmented. We had a dozen members, but were expected to support a dozen different efforts, so we had these guys who knew X well, those guys who knew Y well, this one guy who was a Linux expert, that guy who was a Windows expert... and as a result, we were effectively all on-call 24/7 because we were spread too thin. If any system broke, we had to first figure out who the expert was, and then contact them directly.

    --
    You do not have a moral or legal right to do absolutely anything you want.
  45. I'm no programmer, and I don't get paid to be one by mark_reh · · Score: 1

    on TV, so as an occasional, nonprofessional user, let me say: the user interface at GitHub is awful. You click a link that looks like a binary file ( with a .bin extension) and sometimes you get html, sometimes a binary file, sometimes a text file. Trying to figure out how to grab the stuff you need from GitHub is incredibly annoying. That's all I have to say about it.

  46. Re:Selling private repositories is their money mak by BarbaraHudson · · Score: 1

    Oh, how naive you are. When the sh*t hits the fan, an SLA isn't going to make a difference to your customers when you tell them "yes, it's broken but we have an SLA."

    Salesforce brags about a 99.9% uptime. So I guess that being off-line for 20 hours, and being unable to recover 4 hours of customer data, is okay because hey, you have an SLA.

    BTW, 99.9% uptime is shitty - that's more than 8 hours a year. Would you be happy with your toilet or fridge if it went down for 8 hours, never mind 20?

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  47. GitHub Enterprise is great for on-premises by kriston · · Score: 1

    GitHub Enterprise is great for on-premises, but it's very, very expensive and limits the number of users on it. I have to run my own backups.

    Atlassian also does this for their on-premises software.

    I don't think this is fair that since we don't use the cloud and provided our own compute, power, space, and network that we should pay by the user, but here we are. I administer it and run my own backups. I shouldn't be paying for each user.

    --

    Kriston

  48. This is why we can't have nice things... by Anonymous Coward · · Score: 0

    Make a great service, get popular, get investments, waste it on things that don't matter, crash the business, and service is history.

    Could have used that money to do something useful like funding the site maintenance from interest and then working to expand paid business.

  49. Bad business models fail by shanen · · Score: 2

    Only insightful-rated comment that even came close to the roots of the problem. The BitHub financial models are failing.

    Why doesn't anyone offer a project-centered cost-recovery system to fund the software people are willing to pay for? The hosting organization (AKA BitHub in this case) should EARN a percentage of the project funding my making sure the project proposals are complete, by evaluating the results against the success criteria, and by reporting the results to the donors (and the world). Complete proposals would include the budget, the resources (including people), the schedule, testing requirements (with testing priority given to the actual donors), and, most importantly to me, the success criteria.

    This could be done with a kind of "charity share brokerage" where BitHub would hold your donated money while you are picking the projects you want to support. The notion of project should be broad enough to include new software projects, bug repair projects, support projects, enhancement projects, and even ongoing cost projects (for example in such cases as when server-side support is needed to run the feature).

    From the donors' perspective, you could review all of the projects you'd supported and even look for related projects to support. Hopefully you'd see how many good things you'd helped with and be motivated to donate for the next year, too.

    Details available upon request, but right now it looks like Microsoft and Apple win again. They may have terrible software, but their business models are pretty good. Not like GitHub's.

    --
    Freedom = (Meaningful - Coerced) Choice != (Speech | Beer^2), and sad sock puppets' bad mods avail them naught.
    1. Re:Bad business models fail by shanen · · Score: 1

      Gawd, I hate typos, but "BitHub" several times is a brain freeze of a worrisome sort... I meant "GitHub", and it's no excuse that I stopped using it years ago. Perhaps distracted by some recent BitTorrent stuff? No legitimate relation, obviously.

      --
      Freedom = (Meaningful - Coerced) Choice != (Speech | Beer^2), and sad sock puppets' bad mods avail them naught.
  50. Re: Selling private repositories is their money ma by Anonymous Coward · · Score: 0

    It's very clear that you donâ(TM)t collaborate or else you wouldn't be so negative about this service. Working on a project with developers in different countries is a billion times better with the integration from github products than without. I'm constantly surprised at the level of thought and ideas I come across regularly. This can't compare to some in house group from Walmart or some other big company. They'll pay the small pile of money for a pretty awesome solution today.

  51. Re:Selling private repositories is their money mak by Anonymous Coward · · Score: 0

    I have private repositories for my code that I don't want publicly attached to my name, but still want available (and github features) without keeping a local server running. If there was a hack and my code got out, so what?

    Large corporations will maintain their own servers, but I think most small business and individual developers feel the same as I do.

  52. Re: Selling private repositories is their money ma by BarbaraHudson · · Score: 1

    And they can also self-host, all the benefits of collaboration without worrying that your stuff is dependent on others.

    --
    "Transparent" is a shit show that trades on every stereotype going. A man in drag is NOT a transsexual.
  53. Not very surprising by Anonymous Coward · · Score: 0

    This is what happens when you hire a bunch of staff and then start caring about social justice instead of providing a quality service/product. Their change to and enforcement of their new Code of Conduct was the impetus for me to leave GitHub permanently. It's the business of a project owner -- not the repository hoster -- to police each community and draft/apply rules as needed.

    This is the same company that closed accounts and repos with joke or otherwise tongue-in-cheek names. No warning, no hope of regaining the lost data.

    GitHub is a liability I cannot tolerate. But they're not the only fuck-ups in the tech space.