Slashdot Mirror


What Happened To Diaspora, the Facebook Killer? It's Complicated

pigrabbitbear writes "Created by four New York University students, Diaspora tried to destroy the notion that one social network could completely dominate the web. Diaspora – 'the privacy aware, personally controlled, do-it-all distributed open source social network,' as described on their Kickstarter page – offered what seemed like the perfect antidote to Zuckerbergian tyranny. The New York Times quickly got wind. Tired of being bullied, technologists rallied behind the burgeoning startup spectacle, transforming what began as a fun project into a political movement. Before a single line of code had been written, Diaspora was a sensation. Its anti-establishment rallying cry and garage hacker ethos earned it kudos from across an Internet eager for signs of life among a generation grown addicted to status updates. And yet, the battle may have been lost before it even began. Beyond the difficulty of actually executing a project of this scope and magnitude, the team of four young kids with little real-world programming experience found themselves crushed under the weight of expectation. Even before they had tried to produce an actual product, bloggers, technologists and open-source geeks everywhere were already looking to them to save the world from tyranny and oppression. Not surprisingly, the first release, on September 15, 2010 was a public disaster, mainly for its bugs and security holes. Former fans mockingly dismissed it as 'swiss cheese.'"

158 of 215 comments (clear)

  1. Fondue party! by natophonic · · Score: 5, Insightful

    > Former fans mockingly dismissed it as 'swiss cheese.'

    One has to wonder how cheesy the first few iterations of Facebook would have looked if their source had been open to all.

    1. Re:Fondue party! by Anonymous Coward · · Score: 5, Insightful

      > Former fans mockingly dismissed it as 'swiss cheese.'

      One has to wonder how cheesy the first few iterations of Facebook would have looked if their source had been open to all.

      If I'm not mistaken, Facebook's beginnings didn't involve advertising all over the damn place and firing up a bunch of technology pundits before a single line of code was written. Facebook's code might've been (and probably still is) janky as hell, but the first impression they left on the world when Zucko started was a working product. That's the key difference here. The Diaspora people wanted media attention for their idea, and the lack of anything deliverable for years was the impression everyone had of them.

    2. Re:Fondue party! by sapgau · · Score: 2

      Yup, you have to complete at least your first iteration... then refactor it like hell for the next... ad infinitum.

    3. Re:Fondue party! by buchner.johannes · · Score: 5, Insightful

      I for one doubt that the problems are of technical nature. What they did well was to get a lot of people excited and start a well-sized fellowship of power users interested in hosting a dispora server.

      The problem is that it is a student project that intended to start from zero and kept largely to itself. That's fine for a student project. If you want to open up social networks to heterogeneous environments though -- like emails -- you have to connect to other programmers and entities interested. You have to settle one one or a couple of competing standards (like was done with RSS) used for interchange with wise designers, several servers should implement functions, code should be shared.

      Finally you have to have some killer application that draws users -- doing the same as Facebook but in a different color won't do it. And if it's just a game that's only available there.

      So the current status as far as I followed is that the communication format is settled (RSS based) and what's left is implementing many nice web servers that interact, have different awesome features, and also to get commercial players involved? It's hard work getting from a working prototype to a good implementation that is hackable (and ideally, not crackable).

      --
      NB: The message above might reflect my opinion right now, but not necessarily tomorrow or next year.
    4. Re:Fondue party! by timeOday · · Score: 2, Interesting

      The problem is that it is a student project that intended to start from zero and kept largely to itself.

      My theory of the problem is that a walled garden will always provide at least a little smoother experience than a decentralized, open, free one. Thus usenet gave way to moderated web forums, decentralized email largely gave way to centralized webmail providers and twitter, home pages gave way to myspace/facebook, and beowulf clusters gave way to EC2. Open standards and decentralized implementations are losing ground all around.

    5. Re:Fondue party! by Anrego · · Score: 5, Insightful

      I agree with your other points, however I do think a lot of their problems were technical in nature.

      The submission nails it.. bunch of kids with limited real world experience. The whole execution was amateurish and it really showed.

      For instance, their problem with security wasn't that their software has some security holes, or a lot of security holes.. it was that the fundemental core design didn't take security into account at all. Good security creates a low level priviledged layer that you audit the crap out of, with upper layers limited (by a token based auth system for instance.. ), such that a bug in an upper layer is limited in what it can do. They just threw in some if statements and called it a day. A big selling point was supposed to be security.. but it was very clear to anyone who actually looked at the code that they didn't have a clue what they were doing. It is impossible to make an app secure the way they went. You can patch all the holes.. but the fundemental structure is insecure so new holes will be introduced constantly.

      As programmers, we all look at something and say "pff, I could do better". Maybe we do it less as we gain more experience in seeing simple stuff turn wildly complex. This seems a case of that where some kids did that, then got way more attention then they should, and ended up looking like idiots.

    6. Re:Fondue party! by Omnifarious · · Score: 1

      Well, they weren't intending to advertise nearly as widely as they did. I wouldn't fault the project creators for what happened.

    7. Re:Fondue party! by swalve · · Score: 1

      Your information isn't private on Facebook because you gave it to them.

    8. Re:Fondue party! by thereitis · · Score: 5, Insightful

      ... or your friends gave it to them.

    9. Re:Fondue party! by Noughmad · · Score: 1

      Then it is still your friends' fault, not Facebook's. Either don't tell sensitive information to friends, find better ones, or just become asocial.

      --
      PlusFive Slashdot reader for Android. Can post comments.
    10. Re:Fondue party! by mellyra · · Score: 1

      I for one doubt that the problems are of technical nature. What they did well was to get a lot of people excited and start a well-sized fellowship of power users interested in hosting a dispora server.

      The problem is that it is a student project that intended to start from zero and kept largely to itself.

      The problem may also have to do with the fact that the driving force behind diaspora development (Ilya Zhitomirskiy) killed himself in 2011 and that the rest of the group did rather pursue their own project (Makr.io) than work on diaspora after his death.

    11. Re:Fondue party! by AmiMoJo · · Score: 1

      You could equally argue that proprietary standards have largely given way to open ones. For example any web technology or video codec wanting to become popular online will have to be open and free. Even Flash is dying in favour of HTML5 and SVG.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    12. Re:Fondue party! by mcvos · · Score: 1

      It's a great name for a hard-SF RPG, though.

    13. Re:Fondue party! by TheRaven64 · · Score: 1

      For instance, their problem with security wasn't that their software has some security holes, or a lot of security holes.. it was that the fundemental core design didn't take security into account at all.

      Mod this right up. If you want to design an open social network then the FIRST thing you do is design a protocol and get security experts to review it. Then you get two (or, ideally, more) teams to implement the protocol independently. Then, once you've identified the flaws in the specification, you have something that may work. Diaspora started with a crappy implementation where the protocol documentation was the code. The fact that their implementation sucked was made much more important by the fact that independent interoperable implementations were basically impossible.

      Email didn't become ubiquitous because of PINE or Sendmail. It became ubiquitous because of well-specified protocols that meant that we had a plethora of competing implementations that could evolve much faster than single-vendor solutions like AOL or CompuServe.

      --
      I am TheRaven on Soylent News
    14. Re:Fondue party! by swalve · · Score: 4, Insightful

      Information isn't private if your friends have it.

    15. Re:Fondue party! by Anonymous Coward · · Score: 5, Insightful

      one that takes my private information and gives out to anyone willing to pay for it

      First, the information YOU GAVE to them is arguably not necessarily private. And no, they don't give it out, you're being an idiot or an intentional dick.

      I'm tired of being oppressed by facebook

      Black slaves were oppressed. Gays in the deep South in the 1950's were oppressed. The Jews in Germany during WWII were oppressed. Facebook is NOT fucking "oppressing" you, maaaaan.

    16. Re:Fondue party! by iluvcapra · · Score: 2

      Value-added services naturally close down, media channels naturally open up.

      --
      Don't blame me, I voted for Baltar.
    17. Re:Fondue party! by Deliveranc3 · · Score: 1

      How about the information you "give" to outlook, Microsoft word or Windows/Ubuntu?

  2. Beyond Facebook? by akumpf · · Score: 1

    What about other discussion/social apps that don't rely on friend networks, like http://luunr.com/ ? Or will facebook overwhelm people with their flavor of online discussion and keep it from ever hitting critical mass?

    1. Re:Beyond Facebook? by Anonymous Coward · · Score: 1

      Facebook is to social networks as WoW is to MMOs as iPod is to portable MP3 players. They become a hit product, and suddenly everyone wants to be the " killer." It never works out for the wannabes, because the hit product sets the tone for all that follow.

    2. Re:Beyond Facebook? by greentshirt · · Score: 5, Funny

      So true. Brb, checking my MySpace on Netscape Navigator. BTW, do you have an ICQ #? If not, just Yahoo! my Geocities page.

    3. Re:Beyond Facebook? by Sir_Sri · · Score: 4, Interesting

      A serious misstep by the market leader leaves the market open for someone new. Pandas in WoW for example has had millions of WoW players looking for anything that's almost as good, but without pandas. Unfortunately SWTOR was a trainwreck and Guildwars 2 is a very different game (and nothing else has survived long enough to match them).

      But I would say Call of Duty, Battlefield and Halo have all managed to find successful space for themselves in the FPS market.

      With facebook the problem is getting marginal users to migrate. That friend who isn't tech savvy at all and doesn't know what google plus is or how it's like facebook isn't going to change. But because it's social there's nothing you can do to leave if the people you want to talk to won't leave too. I had someone yesterday try and tell me that the physical keyboard on a blackberry was the key to their stock price rebounding... because some people don't understand technology, at all, getting her off a blackberry is seemingly impossible, just as getting those friends who know nothing about privacy off facebook is impossible. With a social product you're kinda latched to the people who won't leave, even if something else is better.

      For facebook their major misstep is going to be privacy. For those of us who are techies it *is* privacy, but facebook is going to end up doing something so catastrophically stupid that all the non tech savvy people are going to panic - or they're going to do subtle things with privacy that regulators are going to catch on to and dry up their revenue stream. Whether or not anyone else is well position to take their user base is hard to say, with myspace I think it was music and allowing you to make your page look like you were on an acid trip, but google plus and diaspora and twitter and everyone else trying to be the next big thing need a polished product to stuff in peoples faces the moment Zuck does something everyone can understand as stupid.

      Also, while no one really succeeded in taking down the iPod directly cell phones have wiped out a huge portion the portable music player market by being better and more functional, and are essentially iPod killers. Trying to out iPod the iPod, I agree, not a great plan, nor is trying to out WoW WoW or out Facebook Facebook, that's where I think someone who sees a feature for a product for when facebook really missteps will do well.

    4. Re:Beyond Facebook? by EkriirkE · · Score: 1

      Yahoo! your Geocities page? What is this, the future?

      --
      from 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
      to 45 2F 6E 40 3C DF 10 71 4E 41 DF AA 25 7D 31 3F
    5. Re:Beyond Facebook? by greentshirt · · Score: 2

      History repeating itself? What kind of madness is that?

    6. Re:Beyond Facebook? by aix+tom · · Score: 1

      Sorry, I'm more of a Ceefax person.

    7. Re:Beyond Facebook? by brantondaveperson · · Score: 4, Insightful

      Please don't drive and fiddle with your cellphone.

    8. Re:Beyond Facebook? by crossmr · · Score: 2

      100 million wasn't "extreme" at the time?
      What we consider "extreme" on facebook right now might be eclipsed by another service in the future.

      People are fickle and trendy..despite all the time they've put into facebook, if the right thing comes along at the right time and Facebook does something monumentally foolish, that perfect storm really hasn't happened yet. Google+ really should have been kept in the wings, tested and waiting for Facebook to just completely screw the pooch. Until then it really had no chance at all, nothing really does.

      The thing is though, if someone wants to take down facebook they need to be the only other game in town. There really can only be one big social network at once, unless you've got complete duplication between them, but most people don't want to do that. If facebook screws up somehow and several competitors try and take over at once, and each of them takes a few users, what's going to happen is that eventually everyone will gravitate towards one of the networks. It is inevitable. Everyone needs to be together for it to be successful. However the chaos surrounding several competitors stepping in if Facebook leaves itself vulnerable will really only benefit facebook. A fractured user base means people will just turn around and go back to Facebook, unless facebook does something completely whacky like decide to start with monthly subscriptions or something. That would permanently drive people away.

      iPods are another story.. I hardly see anywhere near as many of them now that smartphones are all the rage. Smartphones have completely replaced the basic iPod. About the only benefit you get out of an ipod these days is if you're using a shuffle while exercising. For most people it's more convenient to carry a single device, and outside of the iphone changeable batteries are usually sufficient, and at least with the iphone you can get those external batteries to charge it up if you need to.

    9. Re:Beyond Facebook? by Sir_Sri · · Score: 1

      I'm aware of them. And they've survived as niche products. In the same way you could still buy a zune for years and can still use myspace or google plus. They exist, and are good enough for their communities, but they aren't serious competition for wow.

      EVE never was, eve pre -dates wow and is a completely different product. LOTRO seemed like it had potential for a while, same with rift, but they imploded about the same as SWTOR.

      And ya, GW2 being very different can be good. But it's not enough like WoW to really pull people away from pandaria it seems. Lots of people tried it, played for a while, and they'll have the old GW crowd and a few hundred k who like it more than WoW. But it's still not going to have 12 million subs.

      I certainly wouldn't base 'success'

      Then you would be out of context. There are great books that aren't widely read, there are great games that not a lot of people played. But here we're looking at market leaders. Certainly GW, Rift, even Star trek online added things to the genre, and the good stuff worth copying (that was easy to copy) wow copied and everything else define those products as different. Certainly if you hate blue you'll hate facebook, and I guess there's probably a market for a social networking site of people who just hate blue, but it's not a serious market competitor to facebook. No more than eve and its 300k players is going to replace wow and its 10 million overnight. But you're right, in Asia where blizzard has a lot of trouble with market penetration (in mainland china particularly) there's a market for other MMOs, but none of them have made much inroads into north america - they're good enough in the home market, but they don't have much broader appeal.

    10. Re:Beyond Facebook? by humanrev · · Score: 2

      Pandas in WoW for example has had millions of WoW players looking for anything that's almost as good, but without pandas.

      Are you certain about that? I've never played WoW in my life (don't want to get addicted, and I'm too easily addicted to gaming as it is) but I did read ArsTechnica's article about the latest expansion (http://arstechnica.com/gaming/2012/10/impressions-mists-of-pandaria-is-more-than-just-pandas/) and the article plus comments suggests to me that this whole issue about pandas is blown out of proportion, and likely not as damaging as was expected.

      --
      Most people on Slashdot are fucking idiots.
    11. Re:Beyond Facebook? by crossmr · · Score: 1

      that's the point. Myspace and Facebook have been trendy despite good alternatives.
      Trendy doesn't mean frequently changing.

      They're fickle in that what they want changes constantly. Not the service itself. It might be chalked up to loyalty as much as sheep mentality. Everyone else is here so I'll be here too. One day they say privacy is important but when facebook messes with the privacy settings, suddenly they change their mind.

    12. Re:Beyond Facebook? by Sigg3.net · · Score: 1

      Actually, I do have an ICQ #.

      asl?

    13. Re:Beyond Facebook? by Ash-Fox · · Score: 1

      do you have an ICQ #?

      Why are you asking for an ICQ #? ICQ 7 binds your ICQ to an e-mail address, far easier to remember.

      --
      Change is certain; progress is not obligatory.
    14. Re:Beyond Facebook? by allo · · Score: 1

      oh, you're the person, who actually uses the original client?

    15. Re:Beyond Facebook? by Ash-Fox · · Score: 2

      oh, you're the person, who actually uses the original client?

      Yes and I have good reason to. The server-side handling of Google talk, Facebook chat and others means that I don't have to deal with the overhead of protocols like XMPP and instead rely on low bandwidth and low processing requirements of Oscar-like protocols (which is favorable on unstable network conditions, like when traveling and using mobile Internet). The mobile client for ICQ can rely exclusively on push messaging, which is honestly a God send when it comes to maintaining battery life. Since the other protocols are handled servier-side, I only have to use one application with push messaging on my mobile devices.

      --
      Change is certain; progress is not obligatory.
    16. Re:Beyond Facebook? by MysteriousPreacher · · Score: 1

      A serious misstep by the market leader leaves the market open for someone new. Pandas in WoW for example has had millions of WoW players looking for anything that's almost as good, but without pandas. Unfortunately SWTOR was a trainwreck and Guildwars 2 is a very different game (and nothing else has survived long enough to match them).

      I've only just begun pandaland, but I'm cautiously optimistic that this will be the first expansion in which the protagonist isn't a good guy who went mad.

      --
      -- Using the preview button since 2005
    17. Re:Beyond Facebook? by Sir_Sri · · Score: 1

      Are you certain about that?

      100%.

      Without a doubt mists of pandaria is more than just pandas. They've brought back world bosses, they added pokemon, I'm sorry, pet battles etc. But for the last 8-9 months we've known pandas were on the horizon and people have been desperately looking for *anything* that would be good enough that isn't kung fu panda. But systems wise, and in spite of Pandas WoW still blows the competition out of the water (moddable UI, better balance, and the technical instance stuff, group creation, raid finder etc. etc.).

      Pandas has been enormously damaging to to the WoW brand, but it doesn't matter, because no one else has been able to pick up the slack, so fuck it, we're all back playing wow and cringing every time we see a panda bounce by. Are the bosses challenging? Is the 'core activity' of how I run around and kill/heal/tank stuff still entertaining? Pretty much. So we cope with one bad expansion. WoW has had missteps before, but not anything all that serious, Archeology (the in game profession) was amusing when it first came out due to the newness, and then everyone loathed it for example, but that's not going to cause people to quit necessarily.

    18. Re:Beyond Facebook? by Sir_Sri · · Score: 1

      Well that's the trick isn't it. You have to have the right product and be able to get press at the right time.

    19. Re:Beyond Facebook? by brantondaveperson · · Score: 1

      Well that's a relief. Sorry if I took your example literally.

      I take your point about keyboards, but on the other hand they do rather take up valuable device real-estate. I'll take the big screen over the keyboard personally, but typing on it is more or less impossible.

    20. Re:Beyond Facebook? by Sir_Sri · · Score: 1

      As a joke.

      And as a joke they're perfectly fine, the Blizzard writers have always walked a fine line between serious 'holy shit the world is ending' to 'lol lol lol fat drunk panda'. Even having a race of panda's as a serious legitimate thing is not, in and of itself a disaster, but the bipolar presentation of pandas as cute badass fat chinese drunkards who know kung fu doesn't really fit with WoW. Goblins are crazy - blow up your own island crazy - gnomes irradiated their own capital city, and the Worgern face a very serious curse and walled themselves off. There's place for a serious race, there's place for jovial, but this inconsistent mix of the lot doesn't really make a lot of sense. It's juvenile trying to dress up as an adult and it shows, and admittedly, there are young people who play WoW that associate with that, but the major market for WoW is adults, who have jobs.

    21. Re:Beyond Facebook? by nude_noot · · Score: 1

      Google+ really should have been kept in the wings, tested and waiting for Facebook to just completely screw the pooch

      Some people might consider forcing Timeline upon people to be that pooch screwing moment. If that's the case, then Google+ is aptly timed.

    22. Re:Beyond Facebook? by humanrev · · Score: 1

      So you're saying that Blizzard is having trouble establishing the tone for the game? Reminds me of those amusing Plinkett reviews of the Star Wards prequels, in particular "Revenge of the Sith", where he criticized the movie for not setting the tone and flip-flopping between humorous, tense, light fun, serious, joking, etc. Maybe WoW has the same issues.

      --
      Most people on Slashdot are fucking idiots.
    23. Re:Beyond Facebook? by crossmr · · Score: 1

      Obviously not, or we'd all be using Google+. Facebook handled that properly. I wasn't given timeline until the very final last day. Facebook staggered the roll out. Some people go it, some were delayed significantly hoping they never would,
      Facebook has to do something monumental that affects basically all users site-wide in a significant way at once.
      And a new service has to be standing there going "Hey here I am!" when that happens.
      Google+ has already been launched, and it really didn't get the traction it wanted or needed. They also had plenty of their own snafus when they launched, like completely breaking other services because I was logged into Google+

    24. Re:Beyond Facebook? by Sir_Sri · · Score: 1

      The game has a tone, pandas doesn't really fit with it. Certainly games can have a tone I disagree with or the like, but a bit like you say with star wars, taking a franchise from one tone to another is difficult, and I don't think blizzard pulled it off this time round, just as I think Lucas didn't quite get the balance right the second time round the way he did with the 3.

    25. Re:Beyond Facebook? by allo · · Score: 1

      i did not mean the protocol, but just use a multimessanger, which is not adware, too.

    26. Re:Beyond Facebook? by Ash-Fox · · Score: 1

      I don't know of any "multimessenger" that supports the new functionality in ICQ properly. Adverts in the Windows ICQ (the only one that has ads) are easily removed with an XML edit.

      --
      Change is certain; progress is not obligatory.
    27. Re:Beyond Facebook? by allo · · Score: 1

      which new function, and why do you need it? I use ICQ with pidgin for chat since a long time (when it still was called gaim), and it just works.

    28. Re:Beyond Facebook? by Ash-Fox · · Score: 1

      which new function, and why do you need it?

      Handling of ICQ's server side multi-headed messaging support, SMS support and proper phone number based contacts.

      I use ICQ with pidgin for chat since a long time (when it still was called gaim), and it just works.

      Nope.

      --
      Change is certain; progress is not obligatory.
    29. Re:Beyond Facebook? by allo · · Score: 1

      whatever you might need of your fancy new "look a new version" features, saying "nope" when somebody else says that pidgin just works for him is just wrong.

    30. Re:Beyond Facebook? by Ash-Fox · · Score: 1

      whatever you might need of your fancy new "look a new version" features, saying "nope" when somebody else says that pidgin just works for him is just wrong.

      It doesn't just work when it doesn't. You didn't say "it works for my uses" you stated "it just works".

      --
      Change is certain; progress is not obligatory.
    31. Re:Beyond Facebook? by allo · · Score: 1

      and it does just work. Its a chat system, and you can chat. All the shiny blinking colorful new features are stuff added later, which can be gone any time when icq decides that flash games in the icq-client are no so good idea as they thought some time ago or something like this.

      So, if you want to game, use a game site, if you want to chat use a chat program. Otherwise you get stuff like a cd burning software, which wants to be a fully features multimedia studio.

    32. Re:Beyond Facebook? by Ash-Fox · · Score: 1

      and it does just work. Its a chat system, and you can chat.

      Except not properly with the multi-headed messenger/texting support server-side, so the "chat system" doesn't "just work" like you claim.

      All the shiny blinking colorful new features are stuff added later, which can be gone any time when icq decides that flash games in the icq-client are no so good idea as they thought some time ago or something like this.

      I didn't even notice ICQ had games.

      --
      Change is certain; progress is not obligatory.
  3. They're nerds by RLiegh · · Score: 1

    they don't get the girl at all.

  4. we weren't looking to them.. by gl4ss · · Score: 1

    that was their own PR for their own use.
    don't do pr like that before you have the product. in this case they didn't even have the thinking for what the product would be, except that "facebook suxxor".

    seriously, if people cared they could go for telnet bbs's with message networking between the bbs's. but who the fuck would like that shit? and those who care are already running their own blogs on their own money, their own bbs systems for organizing, their own jabber servers... but most people just don't give a fuck - and really sometimes it's just better that the guy running the server is some zuck-fuckerberg in the states and not the nerd from your sw-chess club because frankly zuck is less likely to give a fuck about who you sold weed to.

    --
    world was created 5 seconds before this post as it is.
  5. Facebook by Rik+Sweeney · · Score: 5, Funny

    Ironically, its Facebook page probably has more likes than actual users.

    1. Re:Facebook by spintriae · · Score: 1

      There are 400K users according to the article. I assume that means active users since they cited a previous figure of 600K.

    2. Re:Facebook by humanrev · · Score: 2

      That IS irony. Coincidence is what is most commonly mistaken for irony, and there's no coincidence here. The irony stems from the fact that people are liking Diaspora in greater numbers on a site which is closed and ideologically-opposite to what Diaspora stands for.

      You could argue that Diaspora shouldn't even have a Facebook page if it wishes to be whole consistent in its values, but if you want Facebook users to come over, you need some kinda of presence.

      --
      Most people on Slashdot are fucking idiots.
    3. Re:Facebook by humanrev · · Score: 1

      That's the thing. If you don't mind Diaspora having about as many active users as Slashdot it's all good but the second you start this open vs closed holy war you're going to alienate the mainstream. The public doesn't care about open source. Fuck, most of the geeks and techs I know don't give a fuck about open/closed source. You can make up as much shit as you want in your head but the fact of the matter is that geekery is not really a selling point, not even to geeks in a lot of cases.

      You're right about the public not caring about the open/closed source debate. Which is why I think the whole "Linux on the mainstream desktop" crusade is rather silly - the benefits of Linux are mostly due to its open nature and not its usability or software availability. I would no longer regard most Linux distros as being as competitive a desktop OS compared to Windows 7 for example. If people try to push mainstream desktop success for Linux, it will HAVE to mean sacrificing various open elements as it is the closed nature of certain products that make them appealing to a lot of people.

      It's disappointing your geeky colleagues don't have at least an appreciation for open source. To me that shows only a superficial understanding of the software world and too much closed-mindedness, and I say this as a Windows user who's been burnt way too many times on the rough edges of Linux distros. BUT... I use Facebook (somewhat) and see no use for Diaspora as it has no chance of success, open or not.

      --
      Most people on Slashdot are fucking idiots.
    4. Re:Facebook by rjstanford · · Score: 1

      Fuck, most of the geeks and techs I know don't give a fuck about open/closed source.

      It depends. I'd say that most of the geeks that I know tend to prefer open source - but not at the expense of something that actually works. Choosing something open but broken (and broken far beyond the "it needs a 3LOC tweak to be great" level) just isn't particularly useful for most people most of the time.

      --
      You're special forces then? That's great! I just love your olympics!
    5. Re:Facebook by humanrev · · Score: 1

      Nah, you misunderstand me. Like I said, I use Windows predominantly. If it were only a open vs closed source decision I'd logically have to be using Linux since I do prefer the open source concept, but until certain things are resolved in Linux land I don't use Linux because it doesn't serve its purpose to my satisfaction, yet.

      When I say closed-mindedness, I'm just saying that it SOUNDS like the people you know don't care about the issue at all. Maybe they do, yet still choose closed source software. That's fine, so long as they know. That's all I was referring to.

      --
      Most people on Slashdot are fucking idiots.
  6. Re:Ok... by stevegee58 · · Score: 1

    No, but Zuck did. Bwaahaha.

  7. Facebook Killer? Sensation? by 93+Escort+Wagon · · Score: 4, Insightful

    The only place I ever heard Diaspora even mentioned at all was right here on Slashdot.

    --
    #DeleteChrome
    1. Re:Facebook Killer? Sensation? by FauxReal · · Score: 1

      The only place I ever heard Diaspora even mentioned at all was right here on Slashdot.

      Same here, and I forgot about it since it was a late night and just remembered when I saw today's article.

    2. Re:Facebook Killer? Sensation? by Omnifarious · · Score: 1

      I've seen it mentioned a few other places. A maker space I follow debated hosting a Diaspora instance. A few other people I know have talked about it spontaneously.

  8. But it didn't by Anarchduke · · Score: 2

    Have grandma and grandpa and cousin bob already on it. Facebook has all of them already and why bother going elsewhere when all the people you actually want to socialize with are already on one network. In an unrelated note, Google+ has 400 million users and about 1/4 of them are actually active on google+

    --
    who prays for Satan? Who in 18 centuries has had the humanity to pray for the 1 sinner that needed it most? ~Mark Twain
    1. Re:But it didn't by alen · · Score: 2

      Since everyone with a gmail address is on g+ it includes my mom, father in law and wife who have no idea it exists

      By the end of the year I might even add my mother in law and wife's grandparents. Except with them they won't even know they have gmail. I'll use it just for iPhone contact management for them

    2. Re:But it didn't by vlueboy · · Score: 1

      Since everyone with a gmail address is on g+...

      Not so fast! You have to explicitly sign up for G+ to use it, just like with Google Latitude's location sharing. Otherwise you're not searchable and they just consider you a non-member and keep urging you on here and there. I've never liked the model of joining a free service to increase visualization of details that are free anyway, especially within an account I already signed up for. You must sign up before you are able to replies to public profiles' posts, I believe, but I won't risk joining just to find out.

      Hotmail and Yahoo prevent you from being a "member" of their tacked-on "social network" features until you fill out at a number of Personal details to "activate" your profile. They have really not even been mentioned in the social network world. The point is that an email address does not get you in a network. If I recall correctly Google Buzz was auto-join, which was a huge problem because everyone inadvertently shared relationship "priority" details in their profiles without meaning to even join. I may recall wrong. But autojoining and account-walled joining are both bad ends of the spectrum.

    3. Re:But it didn't by Captain+Hook · · Score: 1

      Not so fast! You have to explicitly sign up for G+ to use it

      All new gmail sign ups are automatically signed up for G+ at the same time, there is no option to not enable it at that point.

      Once you've created the new Gmail account you then have to go back into the murky depths of account management and cancel your account to G+ if you don't want it.

      --
      These comments are my personal opinions and do not necessarily reflect the opinions of the other voices in my head.
    4. Re:But it didn't by admdrew · · Score: 1

      Not true - you're still given an option to sign up for it (and they try hard to get you), but it's definitely not automatically done. Same thing occurs when you create a new gmail account from an Android phone - it prompts you to join G+, but does not force you.

    5. Re:But it didn't by Captain+Hook · · Score: 1

      Maybe I just didn't notice the option last time I setup a new account.

      --
      These comments are my personal opinions and do not necessarily reflect the opinions of the other voices in my head.
  9. Get with the times by Meditato · · Score: 5, Informative

    This is a completely sensationalist and somewhat deceptive post.

    First of all, those security bugs existed in the first release, before Diaspora even went open-source. Discussing Diaspora's first bugs without mentioning its current project status is like complaining about the first release of Linux when Linux 3.6 just came out. The author is deliberately leaving out information about the current status of the project in a way that is intended to further a deceptive conclusion in the reader's mind.

    Second of all, check out http://diasp.org/ because it seriously works.

    Third, Diaspora is still being developed by its community.

    Fourth, Diaspora had the equivalent of the "circles" feature before Google+ did. In fact, the first release of Google+ looked so similar to Diaspora that people started to talk. And acting like Google+ somehow made Diaspora irrelevant is totally stupid. Apples and Oranges. Big Data and decentralized social networking. They have different purposes and therefore can't be directly compared.

    Quit with the sensationalist tech journalism. I don't even use social networking much any more, but considering the friends I know who swear by Diaspora, I know its far from the idea of "a few young kids" creating a failure, which is what this stupid article champions.

    1. Re:Get with the times by Threni · · Score: 4, Insightful

      Is creating an alternative to Facebook a technical problem, or is it more the non-technical side which is more important? Such as making people aware it exists, encouraging people to use it etc. This thing may be great, but nobodys heard of it. What are its supporters doing to make people hear about it? There are people who use facebook who never email, hardly ever surf the web etc.

    2. Re:Get with the times by smellsofbikes · · Score: 4, Interesting

      I use Diaspora. I thought -- and think -- it's eerie just how much G+ looked like diaspora, and to some extent still does. They're both working off the same mindset about how networking should function. But once G+ came up, activity in my diaspora circles dropped to a standstill. It appears to me that most all the people who would use diaspora chose to spend their limited time on G+ because of the networking effect.

      --
      Nostalgia's not what it used to be.
    3. Re:Get with the times by DerekLyons · · Score: 1

      The author is deliberately leaving out information about the current status of the project in a way that is intended to further a deceptive conclusion in the reader's mind.

      When the current status is somewhere between "completely unknown" and "utterly forgotten"... the conclusion the author is intending to depict is an accurate one. Whether it's functional, or on version 3.0 or version Jelly Vanilla Gummy Bar - it's failed to perform it's intended function, let alone the that hyped into existence by the tech press and geek fanbois.

    4. Re:Get with the times by Animats · · Score: 1

      Diaspora had the equivalent of the "circles" feature before Google+ did. In fact, the first release of Google+ looked so similar to Diaspora that people started to talk.

      If they'd obtained patents, Disapora would have had an edge over Google. Instead, they lost.

    5. Re:Get with the times by buswolley · · Score: 1

      I agree. I use Diaspora and I think the service is not too shabby for being relatively new to the game. Right now there is a good population of techies, and such there.

      --

      A Good Troll is better than a Bad Human.

    6. Re:Get with the times by Meditato · · Score: 2

      So what's the difference between https://diasp.org/ and https://joindiaspora.com? I made a login at the latter site and it doesn't work with the former. Is it now a fractured community?

      No, it uses different "pods", or diaspora servers. These pods communicate with each other, hence the "decentralized social networking" description. You set up an account with one pod, but you can communicate with people on other pods. You can search for a person faster if you know what pod they're on. I have an account on diasp, so my address is [username].diasp.org, which could help you find me if you're on another pod. As far as I know, all pods achieved federation some time ago, so this shouldn't be a problem.

    7. Re:Get with the times by Meditato · · Score: 1

      I guess you're the center of the universe, then. It didn't happen if you didn't read it. So I'll provide some tech news/blog posts about the similarity. FYI, Diaspora first released the aspects ("circles") feature and the alpha UI in September 2010. Google+ launched in June 2011.

      http://www.gizmag.com/diaspora-google-plus-resemblance/20638/

      http://www.launch.co/blog/did-google-copy-diaspora-or-vice-versa.html

      http://babyfruit.typepad.com/mediagirl/2011/09/google-meet-diaspora-or-maybe-you-know-them-already.html

      http://www.launch.co/blog/diaspora-finally-unveiled-feels-like-google.html

    8. Re:Get with the times by drooling-dog · · Score: 1

      This is a completely sensationalist and somewhat deceptive post.

      There will always be plenty of this whenever an open source threat emerges to somebody's billion-dollar monopoly, and most people will buy into it without questioning where the memes are coming from.

    9. Re:Get with the times by toastking · · Score: 3, Insightful

      I honestly forgot about Diaspora until I saw it on Reddit a few weeks ago. It is predominately a techie thing and may never catch on main stream due to its technical and open source nature. Non-tech people won't see its advantages and may see its open source nature as inviting "hackers".

    10. Re:Get with the times by phantomfive · · Score: 1

      If you're creating a distributed network for sharing personal information, you need to have security first in your mind. The original Diaspora had bugs that were so severe they showed the programmers weren't really capable of creating that kind of security.

      --
      "First they came for the slanderers and i said nothing."
    11. Re:Get with the times by Pav · · Score: 1

      I'm on Diaspora, and I'm glad it's there. The people are certainly much more eclectic and there are less of them - both plusses in my book. :-P Facebook didn't take off because it was open to everyone initially. It took me a while to score an invite. Still, it doesn't need to be a raging success. It just needs to host interesting creative communities, and to Be There if/when Facebook et. al. have a Chernobyl.

      Frankly, when the masses arrive small communities can lose their charm... loss AND gain. Let the people with money on the line do the hairpulling. It's the same with FOSS in general - suits my purposes, and annoys me less. Let the people with insecurities jump through hoops for the stuff with the market share and/or hipster cred... as the years go by the heartbeat in FOSS gets stronger and there's less and less need for anything else IMHO.

    12. Re:Get with the times by Mawen · · Score: 1

      No! People are upset about Facebook's privacy! And how they sell out as much as possible and have no qualms about ending privacy -- "privacy is dead" - didn't Zuck say that? Just recently they added wall postings, and people thought they were private messages. Even though this was a bogus problem, it gets people upset.

      Also, ads.

      Maybe if we all shared this with our non-techie friends it would help it gain traction.

      Other plugs:
      1) you can crosspost to facebook and twitter (and tumblr)
      2) you can use hashtags. Score! People on FB get flamed for being idiots who don't know how to use twitter. This way they can win.

      I've been a user for about 14 minutes now.

    13. Re:Get with the times by Eskarel · · Score: 1

      Creating an alternative to Facebook isn't a technical problem, Google are probably better technically than Facebook, but they can't do it.

      Creating an alternative to Facebook which actually delivers even the tiniest sliver of what Diaspora was supposed to deliver(secure, decentralized and functional without requiring mom and pop to host their own) is a technical problem, probably an insurmountable one.

      So Diaspora essentially set themselves up with a technical problem they couldn't solve and a non technical problem they couldn't solve.

    14. Re:Get with the times by inKubus · · Score: 1

      I think it's awesome. Lots of big social groups have a person or two who is good enough at computers to host a pod. From there, you only need to sign up your friends into your pod. Then establish inter-pod relationships. Done. Remember Fidonet? Same idea, but with the internet.

      --
      Cool! Amazing Toys.
    15. Re:Get with the times by Rogerborg · · Score: 1

      The first release showed that they didn't even comprehend the basic concepts of security. They were trying to paper over cracks the size of the Grand Canyon. "We'll add it later" was an epic fail in that context. Better to do nothing, than to do anything wrong.

      --
      If you were blocking sigs, you wouldn't have to read this.
    16. Re:Get with the times by Meditato · · Score: 1

      You're jumping on a bandwagon, parroting what you've heard others say. The first release had some glaring issues that invited SQL injections, mostly. Then the source was released and others began fixing those issues while keeping the data model and UI work the kids had done. As my parent post indicated, you can't judge Linux 3.6 by looking at Torvald's first shitty Linux release. Same thing here.

      Frankly, the whole "better to do nothing" idea is completely asinine. It was first started by a blogger, Peter Cantrememberlastname, that wanted to elevate his pageviews by promoting the sensationalist view that the first release was so broken that it was unsalvageable. Completely wrong. Go look at the crypto section of the Diaspora wiki and the source itself if you still have doubts on the basis of a shitty, condescending blog post from two years ago.

    17. Re:Get with the times by Ash-Fox · · Score: 1

      What makes this look like a hobby project, is the fact that there is no documentation.

      First time visiting their website, under a minute I found:

      https://github.com/diaspora/diaspora/wiki/_pages

      I don't really get how you missed that.

      --
      Change is certain; progress is not obligatory.
    18. Re:Get with the times by Threni · · Score: 1

      > No! People are upset about Facebook's privacy!

      No! No Facebook users are upset about the privacy. They're on there, sharing photos, and details of what they're up to. They couldn't care less about privacy.

    19. Re:Get with the times by Maritz · · Score: 1

      Thanks for a lighter alternative to some of the frothing opinions knocking around.

      --
      I do not want your cheap brainburning drugs. They are useless for work. And I am a working man today.
  10. Diaspora? by udachny · · Score: 2, Insightful

    By the way, the name, Diaspora, it also sucks. Oh, and I don't have an FB account either but it has a better name.

    1. Re:Diaspora? by allo · · Score: 1

      facebook? sounds like facepalm.

    2. Re:Diaspora? by udachny · · Score: 1

      You know what? Even 'FacePalm' is a better name than Diaspora.

    3. Re:Diaspora? by rwise2112 · · Score: 1

      By the way, the name, Diaspora, it also sucks. Oh, and I don't have an FB account either but it has a better name.

      Yeah seriously. Daispora sounds like a disease.

      --

      "For every expert, there is an equal and opposite expert"
    4. Re:Diaspora? by udachny · · Score: 1

      Yeah, imagine a slogan: Have fun with Diaspora. Hmmm. Sounds like a threat.

  11. Tahrir by Sanity · · Score: 1

    The Tahrir Project is trying to create an anonymous microblogging platform, similar to Twitter or Facebook. Google was sponsoring development on it over the summer so with any luck it won't prove to be vaporware like Diaspora.

    1. Re:Tahrir by gl4ss · · Score: 1

      they're writing an ircd in java?

      --
      world was created 5 seconds before this post as it is.
  12. G+ killed it by vlm · · Score: 4, Insightful

    And yet, the battle may have been lost before it even began.

    No it was lost when G+ came out with circles, which was Diasporas main killer feature.
    The second killer feature being able to download all your stuff, which google ALSO does on "your account" "data liberation" page.

    Honestly when I first saw G+ circles I though the almighty GOOG had bought out the diaspora devs or something like that.

    the team of four young kids with little real-world programming experience

    It is/was a kinda-federated intranet scale website, OK? They're not writing a OS, or a compiler, or hand coding machine code. In the olden days, one young kid should have been able to do it, four is a little excessive.

    --
    "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    1. Re:G+ killed it by jbonomi · · Score: 1

      Aspects were a great idea, but the most attractive "killer" feature to me was being able to host my account on my own server. It's a long shot, but I still push Diaspora when I can.

    2. Re:G+ killed it by assertation · · Score: 1

      You forgot the main feature Google+ didn't implement: privacy and control over your information.

      Google was and still is, trying to sell your eyeballs to the highest bidder. Diaspora's main goal was to make a social network where you didn't have to worry about what you posted coming back to haunt you.

    3. Re:G+ killed it by Deliveranc3 · · Score: 1

      They are writing an OS to a certain extent. Their code needs to be extensible for the "apps" and so forth that run through the web interface.

      Yes they're not interfacing with hardware but supporting the wide variety of Internet standards and browsers could be seen as analogous.

      An open source social networking tool that offers privacy is something there is a definite market for and I wish them the best.

    4. Re:G+ killed it by Riceballsan · · Score: 1

      You are correct on the technical side, but wrong on the marketing side. The decentralization, privacy control etc... was the advantage for the hardcore geeks. However your average computer user dosn't understand that part, has no desire to run their own servers and instead has to be hooked by unique features with a directly visible effect. The circles portion has a clear usable effect to the common user, Oooh sweet so I can post the pictures of me drunk at a party to my frat buddies, without sharing it with my boss and co-workers. That is an instantly visible use to sell something to the commonfolk. Explaining that you can host your profile on a webserver held by someone who isn't invisibly selling their data to other invisible entitites, not so easy to sell.

  13. LiberTree by macraig · · Score: 4, Interesting

    Diaspora has spawned other projects that attempt to carry on and refine the original goals. LiberTree is one of them, for instance. Just because the original team didn't succeed brilliantly doesn't mean that the original goals weren't worthy or attainable.

    1. Re:LiberTree by ihistand · · Score: 1

      And BuddyCloud.org

    2. Re:LiberTree by macraig · · Score: 1

      Yes, that too.

    3. Re:LiberTree by jdeisenberg · · Score: 1

      ...and friendica.com, which is easy to install and works quite well.

    4. Re:LiberTree by macraig · · Score: 1

      I'm not the best person to ask, but there is some interoperability between LiberTree and one or two other projects like Friendica; I've seen people "cross-posting", so I can "like" those posts. I don't know if I can also friend/follow those users.

  14. This isn't that hard to explain.. by phrackwulf · · Score: 4, Interesting

    You need a good mix of introverts and extroverts in an online community. Linkedin has the introverts. Facebook has the Extroverts. Disaspore needs to define who their audience is before they build out the technology. Technology is nothing without the right people.

    --
    What would Richard Feynman do, if he were here right now? He'd do some math and he'd follow through!
    1. Re:This isn't that hard to explain.. by Spy+Handler · · Score: 1

      maybe Diaspora can have the perverts.

    2. Re:This isn't that hard to explain.. by deadzaphod · · Score: 1

      No, I think fetlife already has that covered...

  15. Re:Ok... by phrackwulf · · Score: 1

    Zuck doesn't get the girl for much longer.. His happy little Kingdom has a serious Introvert shortage.

    --
    What would Richard Feynman do, if he were here right now? He'd do some math and he'd follow through!
  16. They were right in one sense. by gallondr00nk · · Score: 4, Insightful

    We are being suckered into an immense data gathering exercise for the sake of a few pages which are "ours".

    Perhaps commodification is a better word. I sometimes feel that we have been duped into becoming a product rather than a customer or a user. Worse, this is becoming acceptable for many people.

    The thought is disconcerting. After all, what rights do products have? What ramifications does that have for the future? We rely on some misguided sense that these companies or our lawmakers are ethical or reasonable enough to provide safeguards and prevent abuse. That is our only defence, and I have little faith in the competence or ethical integrity of either.

    If our personal data is a commodity, as FB and Google and others seem to indicate by their business models, then its only a matter of time before systematic and serious abuses of that data mining become commonplace. Selling fucking personalised ads is the tip of an incredibly large iceberg.

    1. Re:They were right in one sense. by Anonymous Coward · · Score: 2, Insightful

      You fucking moron. Does your underdeveloped brain allow you to understand that in the cases you mention nobody can know about anything your private data?

      No one can profile you or target anything while you watch TV, or listen to radio or look at a billboard. Read what is being discussed, try to think, and only then, if you have something of a minimal value to add to the discussion, post it. Otherwise do the world a favor and just shut the fuck up.

    2. Re:They were right in one sense. by Deliveranc3 · · Score: 2

      "We rely on some misguided sense that these companies or our lawmakers are ethical or reasonable enough to provide safeguards and prevent abuse. That is our only defense, and I have little faith in the competence or ethical integrity of either."

      Agreed, that notion is inherent in the idea of a constitution, and theoretically should be part of a company's incorporation.

      It would certainly be nice to have an idea about the values of large companies and clandestine organizations like the FBI, Microsoft, or the CIA. There's few reasons for them not to provide their moral outlook but the public hasn't given them reason TO share it.

  17. Vendor lock-in by Anonymous Coward · · Score: 5, Insightful

    They're not idiots over there at facebook. They took a cue from Microsoft. They know their survival depends on keeping people's data in facebook, and locked-in there. Things go in to facebook, not out. Your site links to facebook, not the other way around.

    You would not need facebook if you were easily able to link up with other social networks, or worse yet your facebook friends were able to seamlessly link with your google+/Dispora/Whatever.

    1. Re:Vendor lock-in by s0nicfreak · · Score: 1

      Uh... facebook does link out Your site links to facebook and it IS the other way around, unless you are stupid and didn't put your link on your site's facebook page, it is right at the top. And you can seamlessly connect MANY social network sites to facebook - ever seen that "sign in with facebook" thing? - some that I know first hand are twitter and pintrest. If you don't change the settings, every time you do something on those sites there will automatically be a post made on facebook containing a link to the site. That's good because even though people may be spending time on those other sites, people will still come to facebook for an easy, gathered version of what their friends are doing - you don't have to go to twitter and pinterst and etc, to see everything Billy did today, it's all there on facebook, and you can spend a lot of time on facebook looking at it. It's just the sites they see as direct competitors, such as Google+ and Dispora, that they don't want connected, because if Billy doesn't go to Slashdot and share a story about Dispora or Google+ and then that share doesn't get shown at the top of Joe Facebook-user's timeline, Joe will never know Dispora and Google+ exist.

  18. In hindsight... by multicoregeneral · · Score: 3, Insightful

    I think their biggest problem was setting up a kickstarter page before actually writing a prototype. Had they waited until the prototype was ready before starting the media blitz, they could have been humble about the current state of their code, and been honest about where they want to go. When it comes to software hype, capturing people's imaginations is key. They did that. But they didn't leave themselves any wiggle room. I've been there. Done that kind of thing. I totally feel for them, and what they went through. Everybody has to learn this stuff eventually.

    --
    This signature intentionally left blank.
    1. Re:In hindsight... by am+2k · · Score: 1

      Everybody has to learn this stuff eventually.

      Yes, and those lessons are best learned with Other People's Money(tm).

  19. Sugar coated... by Lumpy · · Score: 1

    It was stillborn. Honestly, they never had a chance. The only thing it ever created was a PR buzz. Most everyone that had any technical clue and then learned that the founders had no experience at all knew that it was never going to do anything.

    --
    Do not look at laser with remaining good eye.
    1. Re:Sugar coated... by tobiah · · Score: 1

      Ya know, it works. It got off to a rough start but the current software is stable. Whether you call it dead or not, it is still used and functional. It is alive!

      --
      "The ability to delude yourself may be an important survival tool" - Jane Wagner -
  20. Too complex by YrWrstNtmr · · Score: 4, Interesting

    Out of interest, I tried to create an account. Way too confusing.
    Apparently, you must join a 'pod'. What is a pod, what are the differences between Pod A and Pod B, do I have to join the same Pod as my known friends, can I contact people in other Pods?
    Dunno.

    Input textboxes that don't 'act' like textboxes.
    Confusing uptime stats. (Is this Pod good or bad?) Do I care?

    If you actually want people, yo must make the initial signup dead easy. If all you want is a developer wankfest, well, I guess you have that. Actual users, not so much.

    1. Re:Too complex by Sloppy · · Score: 1

      If you actually want people, yo must make the initial signup dead easy.

      This is a recurring problem with freedom. The whole reason Facebook "needs" replacing is that it's centralized and under exclusive control of one party. (And such a party is always going to have a "fuck the users" attitude. Their money comes from elsewhere.) That is why signup is easy. If you fix the problem of centralization, then you simultaneously fix all the things people don't like about Facebook, because now there's decentralization, competition, etc. But as a side-effect, it creates the problem of users having to choose where to host. (Half the people here, are probably outraged that I just said "having to choose" instead of "getting to choose.")

      How "dead easy" is it to sign up for email? (Or OpenID? Or Jabber/XMPP?) It's both utterly trivial beyond even thinking about, but also impossibly difficult. It all depends on your point of view, whether selecting (or installing) an email host is more than you want to think about, or exactly the answer to all your problems. Same goes for any other protocol, as opposed to proprietary service.

      If you look at it "the right way" Facebook is just as hard to sign up for as Diaspora pods, because the first step of signing up for Facebook, is to figure out whether or not Facebook is a good service to use. But is that really the "right" way to look at it, or the "stupid" way? Everyone knows that Facebook is perfectly reliable and dependable and trustworthy, so it's an obvious Yes. Except for all of us who know that's not true, and that it's an obvious No.

      See how much freedom sucks? Er, I mean, rules? Oh, whatever!

      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    2. Re:Too complex by humanrev · · Score: 1

      It has become a reoccurring pattern in the consumer technology world that people often don't like and don't even want freedom. Freedom means more options and more choices, which increases the amount of effort required to choose something which may or may not be the "optimal" choice. At least with Facebook it's easy - everyone uses it, so why use anything else?

      It's the same reason why closed systems like iOS-based devices are so popular. Apple are the gatekeepers, so it tends to result in a reasonably high level of app quality and consistency. That's not freedom by any means, but given you can find almost any app for whatever purpose you require, people don't' care because they get what they want without too much effort.

      Freedom sucks because for many cases it's not a net benefit, but rather a crutch. Sounds stupid for us, but we're not mainstream technology users. Hell, look at Iraq. I have read interviews with Iraqis who have lived during and after Saddam's rule. The general consensus was that so long as you didn't piss the ruling party off and weren't one of the "undesirables", life was pretty sweet. The streets weren't dangerous because he kept the warlords under control. Now they've got (forced) democracy, and no one in their right mind would want to visit unless they were armed to the teeth. So, by removing Saddam and providing freedom, one thing was traded for another. Whether it's a net positive or not will be left to history.

      tl;dr - Freedom is overrated.

      --
      Most people on Slashdot are fucking idiots.
    3. Re:Too complex by YrWrstNtmr · · Score: 1

      See how much freedom sucks? Er, I mean, rules? Oh, whatever!

      Freedom (and choices) are great. We need more of that. But in this particular instance, the why was missing. The user is required to do an extra middle step of choosing a Pod. A Pod run not by Diaspora, but by 'just some dude'. What will he do with my data? No idea.

      How easy was it to get an account here? email address and create a pwd. Done. Same with Facebook. Or any of a number of other social networks.

      Diaspora seems to interject extra layers into the process. And in doing so, turns off the geeks (you and I) and the masses of Facebook transferees.

    4. Re:Too complex by pravi.a · · Score: 1

      Out of interest, I tried to create an account. Way too confusing. Apparently, you must join a 'pod'. What is a pod, what are the differences between Pod A and Pod B, do I have to join the same Pod as my known friends, can I contact people in other Pods? Dunno

      A pod is a diaspora server. Pod A and Pod B are like different email servers, say gmail.com and yahoo.com. Account in any one pod is sufficient to contact anyone having account in any other pod (like you can email someone on yahoo from your gmail id).

  21. A sad tale by RaySnake · · Score: 3, Informative

    Part of the reason for the slow failure of the project is the suicide of one of the co-founders, Ilya. A death has a lasting effect on any project, particularly a small one by people new to the whole thing.

    1. Re:A sad tale by jampola · · Score: 1

      Don't hate on Rails! They could have coded it in PHP instead!

  22. Writing good software by MrEricSir · · Score: 4, Funny

    It's almost like there's more to writing good software than throwing up a Kickstarter page and getting PR. Who knew that actual work would be involved?

    --
    There's no -1 for "I don't get it."
    1. Re:Writing good software by Omnifarious · · Score: 1

      I'm certain the people who started the project were well aware that work would be involved. You can't fault them for other people's unrealistic expectations.

    2. Re:Writing good software by SomePgmr · · Score: 2

      Well, and one of the co-founders (who I believe were college buddies) died. I imagine that could take the wind out of your sails on a project.

    3. Re:Writing good software by Omnifarious · · Score: 1

      Well, the project is still going strong. I've been keeping tabs on it from afar, waiting until I felt it was likely safe and reasonable to bring up my own seed.

    4. Re:Writing good software by Pope · · Score: 1

      The "unrealistic expectations" is what they hyped themselves on delivering to the world.

      --
      It doesn't mean much now, it's built for the future.
    5. Re:Writing good software by Omnifarious · · Score: 2

      I disagree. They presented an idea of what they wanted to accomplish and where they wanted to go and why they wanted to go there. That idea resonated with a lot of people. Yes, they wanted to build a replacement for Facebook, but everybody else expected an immediate Facebook killer that everybody would immediately be able to jump to. The real world doesn't work like that. Even if their initial version was flawless it would still necessarily have had limited functionality (what can actually be accomplished in 3 months of development from a fresh start by 4 people, no matter how much money they have?), and it's quite clear that it would've taken quite awhile for everybody to switch to it from Facebook.

      I was somewhat disappointed with the mass of security flaws that my money bought. But once I put in my money, I knew that I was taking a risk. And I felt that what I did get out of it was worth the money I put in. Because part of what I got out of it was a large community of people who all shared the same vision and pushed the project forward even after the initial disappointing (though clearly an honest and strong effort) start.

      My hopes were high, and my expectations low. That's how I treat all the Kickstarter projects I donate to. It's a 'donation' for a reason.

  23. Freedows by Tough+Love · · Score: 1

    Remember Freedows, another all hat, no cattle project. Eventually ReactOS was developed in a more modest way and has long since achieved useful status. A good project needs a lot more than good ideas. Essentially all successful open source projects are lead by highly skilled coders.

    --
    When all you have is a hammer, every problem starts to look like a thumb.
  24. Not backed by an evil monetizing corporation by gigaherz · · Score: 1

    What the subject says.

  25. Not only did you start your by Anonymous Coward · · Score: 1, Insightful

    Post in the subject line, but you also capitalized the "H" in Have?

    I hate you.

  26. Technical Capabilities vs. Social Critical Mass by billstewart · · Score: 1

    I haven't tried Diaspora, but while they did need to get the technology to be marginally adequate, so they don't alienate users, their biggest hurdle was going to be to get users to adopt it in the first place. The reason to join Facebook was never that it was technically cool, it was that it was at least marginally usable and half a billion other people were joining it, including your relatives and you actual in-real-life friends and the people you went to high school with and the people who you used to know on Myspace and that girl you met hula-hooping outside the concert the other night.

    And the reason to stay on Facebook was not only to talk to those people, but because you got hooked on Farmville when one of your not-actually-real-life friends sent you a shrubbery and you decided to put out a hit on your other friend who'd just become Godfather in Mafia Wars, so you got sucked into the online cow-clicking game environment, plus it was what your friends started using for party announcements. And the combination of Facebook and its add-ons was enough to keep lots of people sticking around there to be marketable eyeballs instead of migrating off to the next such mud/LambdaMoo/Friendster/Orkut/LiveJournal/MySpace/Instagram competitor, maybe not forever but at least long enough to get an IPO out the door.

    Diaspora had to find ways to attract some of those users, enough to get social critical mass. If the technology was too broken to get people to stick around after the initial "We're Not Facebook" PR campaign, it could be too hard to get those people back after fixing it (and without enough users, it's hard to get the momentum to get it fixed.) So what's next - CryptoCat?

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
    1. Re:Technical Capabilities vs. Social Critical Mass by siride · · Score: 4, Interesting

      You missed the early phase of Facebook when it was cool because it was only for colleges, had a clean layout (unlike the ugly pages people frequently had for MySpace). It was exclusive and pretty.

  27. Comment removed by account_deleted · · Score: 2

    Comment removed based on user account deletion

  28. Re:Ok... by gmhowell · · Score: 4, Funny

    Probably has a bigger dick, too.

    --
    Jesus was all right but his disciples were thick and ordinary. -John Lennon
  29. 2 things actually by jampola · · Score: 2

    Firstly, The founder capped himself and Secondly, they're taking far too long on the product itself to get it to the open market.

    But under the circumstances of what happened to Zhitomirskiy, I think it's understandable.

  30. Bugs and Security Holes by utkonos · · Score: 1

    It's open source software. Bugs can be squashed, security holes can be closed. Over time with enough effort the project can mature. If it doesn't there will be forks that use parts of it that are good and grow from there. That's the way the community and projects work.

    1. Re:Bugs and Security Holes by tobiah · · Score: 1

      yup

      --
      "The ability to delude yourself may be an important survival tool" - Jane Wagner -
    2. Re:Bugs and Security Holes by DerPflanz · · Score: 1

      It's open source software. Bugs can be squashed, security holes can be closed. Over time with enough effort the project can mature. If it doesn't there will be forks that use parts of it that are good and grow from there. That's the way the community and projects work.

      Or: "It's open source software. Bugs will be left open for years to implement new features nobody wants (Firefox), over time more and more fragmentation will come because of forks and nothing really works. Also, when a project is finished to the original developer (aka "it works"), the whole thing is abandoned.

      That is also the way the community works.

      --
      -- The Internet is a too slow way of doing things, you'd never do without it.
  31. I never signed up. by Anonymous Coward · · Score: 1

    Don't laugh, but seriously. Stupid name. Peripherally it reminds me of either desperation or diarrhea.

    1. Re:I never signed up. by fyngyrz · · Score: 1

      It's a great name...

      "the dispersion of any people from their original homeland"

      You know... like "facebookers" leaving to join a new decentralized, non-data-mining system.

      --
      I've fallen off your lawn, and I can't get up.
  32. Diaspora is pretty good by DrXym · · Score: 2
    Diaspora in the past has been buggy and slow but recent visits to the site have shown it has turned into a slick and intuitive experience. The problem now is not the software so much as the lack of users. Some small site is never going to be able to compete with the wallets or resources of Google or Facebook.

    Diaspora is designed as federated software where many servers can be part of the same network and users and content are shared across those servers in interesting ways. The problem at present is setting it up is very messy and that suppresses interest people have in using it. Therefore I think the best way of increasing its use is to make the setup easy to get it into the hands of as many universities, libraries, schools, businesses and individuals as possible. Make Diaspora a no-brainer to setup - Diaspora in a Box - a script or executable that asks few questions and has a node up and running. If they get to this state then it's likely that some dists might even pick it up or at least support it to some level.

  33. Friendica vs Libertree vs Buddycloud by Herve5 · · Score: 1

    I am the most basic user here, only able to clumsily setup a php/MySQL script.
    I quickly read the how-to for all three LiberTree, Friendica and Buddycloud.

    Honestly, I am capable to install Friendica, and absolutely no other, would it be just because I only handle shared-hosted sites.

    Now, I don't know if this ease of install will be important for their success or not...
    H.

    --
    Herve S.
    1. Re:Friendica vs Libertree vs Buddycloud by macraig · · Score: 1

      You were setting up your own tree/pod/whatever? That's not absolutely required, you can just join an existing one. That is all I have done so far.

  34. Diaspora was bad code quality from the start by allo · · Score: 1

    First thing i tried on their demo installation: click login without filling out the form.
    Result? A nice error message? A white page telling me "wrong login"? No ... a exception! No wonder, no normal person would like this piece of software.

    Another problem is the concept of a distributed social network. This concept have to fail on the promises, because anyone can patch their own node, so it stores everything locally, once its retrieved. Who uses a patched node has advantages over people on normal nodes, but if your friends use patched nodes you have disadvantages. But you cannot know.

    so now facebook knows more about you than you would like, and they retain your data even when its deleted. With distributed systems, all your pals know these things, and are able to still store them even when you delete them. So the promise "you will be able to remove your data from the web again" cannot be fulfilled, once its used enough, so people start tinkering with their nodes.

  35. What happened? by AtomicDevice · · Score: 1

    Nothing at all

    womp womp

    --
    Ze Atomic Device! It iz Ztolen!
  36. Make It Into A FOSS Project by assertation · · Score: 2

    It probably already is, but forget about the source code that didn't happen and make it into an ongoing FOSS project.

    Get some enthusiastic and veteran programmers to take it over. There have to be more than a few uber geeks who don't like Facebook and who want something to replace it.

    Some Google programmers may even contribute some of their spare time as it will chip away at their rival.

  37. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  38. This Is A Nasty Post, Feel Free Not To Read It by assertation · · Score: 3, Interesting

    I have been programming a long time. I know how much work and how hard it is to make even something decent, but ordinary.

    I have to admit that I was offended by the hubris of the original Diaspora group. That some college kids, with no real world programming experience who haven't even completed their educations yet were going to pull something like that off.

    To be fair, I am still offended by Mark Zuckerberg's existence, that an ignoramus in his mid 20s who hasn't finished growing up is where he is.

    I saw both of these contributing to the bullshit expectations bosses and others have that programmers can just "whip out" something nice, useful, reliable, interesting, etc.

    Okay, I ranted my ugly rant.

    I wish the kids from Diaspora the best. Their heart was in the right place. They can feel good knowing that they stood up to Zuckerberg, which somewhere along the lines will likely inspire others to do the same. It is also much better to try and fail, then never to try. They will have no regrets, be happier and enjoy victories other people will not for not having given it a shot.

  39. Not Dead ! by GreenCore · · Score: 1

    I am a Diaspora member and reading this post I couldn't help asking myself what I like about Diaspora. Is it the decentralised Pod structure, the circles, the simplicity of the interface, the lack of ads and arrogant apps that want access to my data? All this is valuable of course but, at the core, what I like are the people that are slowly entering my circle. It is about serendipity, my Diaspora page is like a bubbling pot of soup on a small camp fire in the middle of a meadow on a starry night. People happen to pass by, sit by the fire and have some soup. Some stay, other leave. The one who stay, become part of my cycle. No big app will run through my entire address book and suggest "friends". This is not industrial. This is a bit like real life. I am being told that development is on-going. That DIaspora will survive and eventually grow. I hope it does, I know it will. It will as long as its ethics are well spelt out and adhered to. Of course the only way it can be sustainable is if never becomes a big commercial machine, it will only live if it remains not for profit, by the members for the the members. Like Linux, like Permaculture, like a traditional village.

  40. Non-thinking by YaddaMinski · · Score: 1

    FB increased its membership numbers by infringing privacy via reading the email addresses of the person who signed up and sending out invitations to those email addresses as if they came from the person requesting those to join (network effects). If the infringed person would have read fine print, maybe this could have been avoided. But now we have the result. Net conclusion: idiots.

  41. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  42. Re:Interesting by Impy+the+Impiuos+Imp · · Score: 1

    That's correct!

    You get modded down for pointing this out!

    --
    (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
  43. Diaspora dead? What will I do... by Jalfro · · Score: 1

    ...with my evenings now? And to think I was only on there five minutes ago! https://diasp.eu/