Hacker Newsnew | past | comments | ask | show | jobs | submit | schmidtc's commentslogin

But, there is a clear incentive to answer the question incorrectly. The wrong answer is funny and will give the human some level of pleasure thinking about it. I would certainly reply with "walk" just for fun and apparently 28.5% of people agree with me.


The actions are policed and no one here is suggesting thoughts be policed. These individuals are free to shout their ideas in the public square. Facebook is a corporation not a government agency and they have the right to control their own products. Facebook isn’t refusing people based a protected status. Should a baker be required to make a cake promoting a hateful cause?


> Facebook is a corporation not a government agency and they have the right to control their own products.

It's always fascinating how quick people are to jump on the free market bandwagon when it suits their ends. Free speech protections also sometimes apply to privately managed public spaces, like malls.

> These individuals are free to shout their ideas in the public square.

Facebook is arguably the new public square, which is precisely my point.


It's always fascinating how quick people are to jump on the slippery slope bandwagon when it suits their ends.

Your suggestion that privately held malls are subject to free speech protections is misleading. See Lloyd Corp. v. Tanner. There are counter examples of course, be these apply only in niche situations.

Regardless, Facebook is not a public space. It's very much a private space. Suggesting that Facebook be treated as a public space is a pretty radical idea.


> Your suggestion that privately held malls are subject to free speech protections is misleading. See Lloyd Corp. v. Tanner.

Not misleading at all, I said it sometimes applies, which is true because some states recognize it as a right and some don't.

> Regardless, Facebook is not a public space. It's very much a private space.

A private space that anyone and everyone can freely access, and are, in fact, encouraged to frequent as much as humanly possible, and arguably has become intrinsic to the daily life of many, perhaps most, Americans. In fact, it's probably one of their primary means of socializing with friends and family, and definitely a medium for political discourse. Arguing it's a private space seems increasingly flimsy, frankly.


> Regardless, Facebook is not a public space. It's very much a private space. Suggesting that Facebook be treated as a public space is a pretty radical idea.

Further precedent I recently came across suggests it's not so radical after all:

https://en.wikipedia.org/wiki/Packingham_v._North_Carolina

Unanimous decision by the Supreme Court actually called social media the public square.


Are there no constitutional protections if you live in a company town? Facebook is effectively the company town of mass real identity to real identity communication. One of the Net Neutrality arguments championed by the EFF was that private oligopolies being allowed to do whatever they want with their own property constituted a threat to free speech.

https://www.eff.org/deeplinks/2017/06/attack-net-neutrality-...


> Facebook is arguably the new public square, which is precisely my point.

Hey, I think Clay Shirky wants his point from 2008 back. Since we actually have more than 10 years to have reflected on this idea, we can now see it's patently nonsense, given that the idea of the "public square" doesn't encompass harvesting the conversations which happen therein, aggressive tailored marketing, and leaking of personal information from everyone who crosses through. Facebook capitalises on the notion of a public square. That does not make it one.


> given that the idea of the "public square" doesn't encompass harvesting the conversations which happen therein, aggressive tailored marketing, and leaking of personal information from everyone who crosses through.

Oh, so marketers aren't allowed to poll, film or listen in on conversations that happen out in public? In fact that's perfectly legal.

> Facebook capitalises on the notion of a public square. That does not make it one.

And free speech protections also need not be limited to overly strict definitions of public square. The question these types of controversies should be raising is whether free speech protections should extend to services like Facebook.

Facebook is a private space that anyone and everyone can freely access, and are, in fact, encouraged to frequent as much as humanly possible, and arguably has become intrinsic to the daily life of many, perhaps most, Americans. In fact, it's probably one of their primary means of socializing with friends and family, and definitely a medium for political discourse. Arguing it's a purely private space seems increasingly flimsy, frankly.


Going back to your slippery slope argument, where does it end?

Is HN not a public forum as well? Are my constitutional rights being violated when a moderator deletes something a post here on HN?

What about all those shadow banned users, are they entitled to their free speech on any website that allows comments?


Firstly, I don't think I ever made a slippery slope argument. That seems to be something you've read into my comments somehow.

Secondly, any legal distinction is established via a multi-part test. As a first pass, I would ask:

1. Is the site open and particularly, targeted to the general public?

2. Does the site enjoy widespread use by the general public?

3. Is the site intended to foster open discussion on any topic? For instance, the public itself drives most conversation on the platform.

This isn't necessarily exhaustive, just a first pass. HN is targeted at a technical audience (although its open to anyone), it's typically used only by this subset of the general public, and its content is narrowly focused on technical subject matter, so it would fail two parts of this test.

Facebook definitely passes all three qualifications, Twitter doesn't have as widespread use by the general public but it continues to grow.

> What about all those shadow banned users, are they entitled to their free speech on any website that allows comments?

Shadow banning seems like a poor idea. Terms of service that encourage civil discussion are perfectly fine, and violators should get an explicit and public timeout, never a ban. I've toyed with the idea that repeat offences trigger exponentially increasing timeouts.

Judging violations of ToS should be a transparent process. Something like jury duty as a term of using a service also seems like it might be a workable idea. Corporations have their own motives for censorship, primarily profit motives to draw in advertisers, and so they have incentives to bury anything even remotely controversial and are not incentivized to evaluate anything "fairly".


This is old, but I just discovered it. Makes a slow ssh connection feel like a fast one.


I was expecting this article to provide some insight in regards to the title. It does not. The article should be titled, “Here Are Some Examples of Expensive ‘Affordable’ Housing Projects”.


Hot keys for Bookmarks in Favorites Bars (Command+Option+N).


I run a small 4 node mesos cluster. So far it's been great, took a day or two to setup and has been running for about a year now with little to no maintenance. (I should probably update). I launch long running services through Marathon and crons with Chronos. I use haproxy for service discovery and load balancing. It's mostly used for data processing, but does serve data to a production web environment (~40k req / day).

The things I like the most about mesos is that it is light weight and removes a like of the friction in deploying new services. So I can test out a new idea without a big investment or f*ing around with the giant monolith. I found container based approaches too resource intensive for my budget.


> "it's only a `git grep` away"

Off topic, but how did I not know this was thing? You never know what you're gonna learn reading hn comments.


You forgot to RTFM.


Thanks, never thought of that.


Creator of geoScore here. We're looking for contributors to help get this code out and help with documentation. I'll do my best to answer any questions. As far as the javascript client, it is almost ready to release, but I'll be a lot more motivated to put the hours in if there's interest.


just for fun...

  import itertools
  colors = ["brown", "red", "green", "yellow", "yellow", "brown", "brown", "black"]
  dict([(color, len(list(grp))) for color, grp in itertools.groupby(sorted(colors))])
or

  dict([(color, len(filter(lambda c: c==color, colors))) for color in set(colors)])
...because sometimes job security is important too.


Or this (not efficient but fun, and using a dict comprehension and no itertools):

    {a: sum(a == b for b in colors) for a in set(colors)}


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: