As many of you know, MeetUp.com will soon be charging organizers nearly $20/month for the privilege of organizing meetings, with the expectation that they pass this cost on to their group. Since most "organizers" are probably reluctant, but do it anyway, this is just another burden. Also, they will have to pay each and every month to *try* to organize a meet, whether one happens or not.
They say that this is a good price for the service. I find this to be baloney. I pay ~$20/month to my hosting provider, and get 7680 MB of storage plus 192 GB of data transfer per month, which is definitely a better value than the dubious privilege of emailing people and begging them to RSVP for a meeting so it can be scheduled.
So, I have quit MeetUp, and remove my login from their system, lest they suddenly decide that I'm the organizer of a group and thus have to pay them money. Yes, it's a protest. Yes, I will no longer get notified of the MeetUps in my area (I only was subscribed to 4). But I really can't bring myself to be a part of something which dumps the organizing responsibility on a volunteer, and then expects the volunteer to front the money for the privilege. I won't be part of the process of screwing over a volunteer that way, regardless of how they say that the person can recover the cost.
Knee jerk? Maybe. But it really, really seems like an abusive situation to me, and I don't want to be part of it.
They say that this is a good price for the service. I find this to be baloney. I pay ~$20/month to my hosting provider, and get 7680 MB of storage plus 192 GB of data transfer per month, which is definitely a better value than the dubious privilege of emailing people and begging them to RSVP for a meeting so it can be scheduled.
So, I have quit MeetUp, and remove my login from their system, lest they suddenly decide that I'm the organizer of a group and thus have to pay them money. Yes, it's a protest. Yes, I will no longer get notified of the MeetUps in my area (I only was subscribed to 4). But I really can't bring myself to be a part of something which dumps the organizing responsibility on a volunteer, and then expects the volunteer to front the money for the privilege. I won't be part of the process of screwing over a volunteer that way, regardless of how they say that the person can recover the cost.
Knee jerk? Maybe. But it really, really seems like an abusive situation to me, and I don't want to be part of it.
From:
no subject
A little networking (the social kind) could build a confederation of regional and local users of said web app to accomplish the same thing as MeetUp.
But, you've probably already figured that one out. ;-)
From:
no subject
The software would probably be LAMP, and not rocket science to write, but I don't know how much the hosting bandwidth would add up to.
From:
no subject
The bandwidth is the main issue, which is why I was thinking a set of regional hosts rather than one central host. Spread the cost, and also reduce bandwidth per host, thereby reducing the cash hit on each node operator (of course, that sounds a lot like what MeetUp is trying to sell, doesn't it? except, it would be an expected expense, not a surprise).
From:
no subject
Unfortunately, I'm not familiar enough with P2P stuff to code it, but...
From:
no subject
It wouldn't really be P2P; more like local mirroring except that, if you did it by region, you wouldn't even have to mirror very much. Sort of like what CPAN and CTAN do, or SourceForge's download mirrors.
Basically you'd have a single main site, www.example.com, that everybody goes to first. That would let them pick a region of interest and redirect them to, say, sfba.example.com or nyc.example.com, both of which would be CNAME aliases for whoever was volunteering bandwidth in that area. Big population centers like the NYC or SF Bay Area would probably have to be further subdivided, perhaps by interest.
Login cookies would be valid across the entire domain, so users would only have to register in one place; the registration database and user profiles are the only things you'd have to replicate across the entire domain. (Actually, if every user has a home region, you'd only have to replicate names, passwords, and regions. Piece of cake.)
You'd do "backups" by replicating each region's information on only a small number of "buddy" sites, probably using rsync. I like to use flat files for everything, with a short file for every entry, because directory updates are atomic. You'd then use something like blosxom or nanoblogger to (statically) roll up RSS feeds, "what's new" lists, and so on.
Can you tell I've thought about this kind of thing?
From:
no subject
From:
no subject
From:
no subject
You're right that programming the basics of similar service would not be hard.