ArisKatsaris comments on 2012 Survey Results - Less Wrong

80 Post author: Yvain 07 December 2012 09:04PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (640)

You are viewing a single comment's thread. Show more comments above.

Comment author: MTGandP 29 November 2012 09:08:06PM 5 points [-]

I was surprised to see that LW has almost as many socialists as libertarians. I had thought due to anecdotal evidence that the site was libertarian-dominated.

I was also surprised that a plurality of people preferred dust specks to torture, given that it appears to be just a classic problem of scope insensitivity, which this site talks about repeatedly.

I was happy to see that we have more vegetarians and fewer smokers than the general population.

Comment author: ArisKatsaris 30 November 2012 02:51:21PM 16 points [-]

Generally, half the time we get visiting leftwingers accusing us of being rightwing reactionaries, and the other half of the time we get visiting rightwingers accusing us of being leftwing sheep.

So if you thought that the site was libertarian-dominated, I'm hereby making a prediction with 75% certainty that you consider yourself a left winger. Am I right?

Comment author: Vaniver 30 November 2012 09:01:36PM *  15 points [-]

There are a number of old posts from the Overcoming Bias days in which EY comments that the audience is primarily libertarian- which makes sense for the blog of a GMU economist. A partial explanation might be people reading that and assuming he's talking about the modern population distribution of LW.

Comment author: Vaniver 02 December 2012 09:37:36PM *  7 points [-]

Related analysis on the public dataset:

1045 responders supplied a political orientation; they're 30% Libertarian, 3.1% Conservative, 37% Liberal, 29% Socialist, and 0.5% Communist.

226 responders supplied a political orientation and have been around since OB; they're 42% Libertarian, 3.5% Conservative, 31% Liberal, 23.5% Socialist, and 0% Communist.

242 responders supplied a political orientation and were referred from HPMoR; they're 30% Libertarian, 2.5% Conservative, 37% Liberal, 30% Socialist, and 0.4% Communist.

Note that analysis of current LW users who have been here since OB is not the same as OB users several years ago, but they are still significantly more libertarian than the current mix.

Comment author: Eugine_Nier 02 December 2012 10:51:52PM 4 points [-]

Also interesting that the HPMoR distribution almost exactly equals the current mix.

Comment author: gwern 03 December 2012 01:00:19AM *  7 points [-]

Oh yes, that reminds me - I've always wondered if MoR was a waste of time or not in terms of community-building. So let's divide the dataset into people who were referred to LW by MoR and people who weren't...

Summary: they are younger, lower karma, lower karma per month participating (karma log-transformed or not), more likely to be students; but they have the same IQ (self-report & test) as the rest.

So, Eliezer is successfully corrupting the youth, but it's not clear they are contributing very much yet.

R> lw <- read.csv("lw-survey/2012.csv")
R> hpmor <- lw[as.character(lw$Referrals) == "Referred by Harry Potter and the Methods of Rationality",]
R> hpmor <- lw[as.character(lw$Referrals) != "Referred by Harry Potter and the Methods of Rationality",]
R> t.test(hpmor$IQ, hpmor$IQ)
Welch Two Sample t-test
data: hpmor$IQ and hpmor$IQ
t = 0.5444, df = 99.28, p-value = 0.5874
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-2.614 4.591
sample estimates:
mean of x mean of y
139.1 138.1
R> t.test(as.integer(as.character(hpmor$IQTest)), as.integer(as.character(hpmor$IQTest)))
Welch Two Sample t-test
data: as.integer(as.character(hpmor$IQTest)) and as.integer(as.character(hpmor$IQTest))
t = -0.0925, df = 264.8, p-value = 0.9264
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-2.802 2.551
sample estimates:
mean of x mean of y
125.6 125.8
R> t.test(as.numeric(as.character(hpmor$Income)), as.numeric(as.character(hpmor$Income)))
Welch Two Sample t-test
data: as.numeric(as.character(hpmor$Income)) and as.numeric(as.character(hpmor$Income))
t = -4.341, df = 314.3, p-value = 1.917e-05
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-29762 -11197
sample estimates:
mean of x mean of y
33948 54427
R> t.test(hpmor$Age, hpmor$Age)
Welch Two Sample t-test
data: hpmor$Age and hpmor$Age
t = -7.033, df = 484.4, p-value = 6.93e-12
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-5.318 -2.995
sample estimates:
mean of x mean of y
24.51 28.67
R> t.test(as.character(hpmor$WorkStatus) == "Student", as.character(hpmor$WorkStatus) == "Student")
Welch Two Sample t-test
data: as.character(hpmor$WorkStatus) == "Student" and as.character(hpmor$WorkStatus) == "Student"
t = 4.154, df = 389.8, p-value = 4.018e-05
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.0791 0.2213
sample estimates:
mean of x mean of y
0.5224 0.3723
R> hpmortime <- hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> hpmortime <- hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> t.test(hpmortime, hpmortime)
Welch Two Sample t-test
data: hpmortime and hpmortime
t = 1.05, df = 642.7, p-value = 0.2942
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-4.257 14.036
sample estimates:
mean of x mean of y
17.69 12.80
R> hpmortime <- log1p(hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity)))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> hpmortime <- log1p(hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity)))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> t.test(hpmortime, hpmortime)
Welch Two Sample t-test
data: hpmortime and hpmortime
t = 2.263, df = 396.9, p-value = 0.02416
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.03366 0.47878
sample estimates:
mean of x mean of y
1.1978 0.9415
Comment author: NancyLebovitz 03 December 2012 01:59:08AM 4 points [-]

The interesting question might be whether people whose primary interest is HPMOR are understanding and using ideas about rationality from it.

Comment author: gwern 03 December 2012 02:24:28AM 2 points [-]

Not sure how one would test that, aside from the CFAR questions which I don't know how to use.

Comment author: Unnamed 09 December 2012 11:49:56AM 3 points [-]

Looking at the four CFAR questions (described here), accuracy rates were:

74% OB folks ("Been here since it was started in the Overcoming Bias days", n=253)
64% MoR folks ("Referred by Harry Potter and the Methods of Rationality", n=253)
66% everyone else

So the original OB folks did better, but Methods influx is as good as the other sources of new readers. Breaking it down by question:

Question 1: disjunctive reasoning
OB: 52%
MoR: 42%
Other: 44%

Question 2: temporal discounting
OB: 94%
MoR: 89%
Other: 91%

Question 3: law of large numbers
OB: 92%
MoR: 85%
Other: 81%

Question 4: decoy effect
OB: 57%
MoR: 41%
Other: 49%

Comment author: NancyLebovitz 03 December 2012 03:26:35AM 2 points [-]

One possibility would be for Eliezer to ask people about it in his author's notes when he updates HPMOR.

On the second reading, I realize that I'm asking about HPMOR and spreading rationality rather than HPMOR and community building.

Comment author: Qiaochu_Yuan 03 December 2012 01:37:27AM 4 points [-]

Mean karma doesn't seem like the relevant metric; that reflects something like the contributions of the typical MoR user, which seems less important to me than the contributions of the top MoR users. The top users in a community generally contribute disproportionately, so a more relevant metric might be the proportion of top users who were referred here from MoR.

Comment author: gwern 03 December 2012 01:48:56AM 4 points [-]

The average user matters a lot, I think... But since you insist, here's the top 10% of each category:

R> sort(hpmor$KarmaScore, decreasing=T)[1:25]
[1] 9122 6815 4887 4500 2782 2600 2545 2117 2000 1800 1300 1017 1000 1000 858 771 694 575 560
[20] 443 425 422 350 285 274
R> sort(other$KarmaScore, decreasing=T)[1:83]
[1] 47384 32394 27418 15000 12200 11094 11000 10000 9000 8799 8000 8000 8000 6164 5000 5000
[17] 5000 5000 4658 4000 4000 4000 3960 3800 3693 3600 3500 3500 3500 3353 3300 3000
[33] 3000 3000 3000 3000 3000 3000 3000 2700 2500 2486 2400 2300 2204 2200 2100 2000
[49] 2000 2000 2000 2000 1977 1975 1900 1800 1800 1800 1750 1700 1653 1650 1648 1600
[65] 1590 1540 1520 1500 1500 1500 1500 1500 1500 1400 1253 1250 1200 1200 1115 1095
[81] 1044 1000 1000

The top MoR referral user is somewhere around 10th place in the other group (which is 3.3x larger).

Comment author: Qiaochu_Yuan 03 December 2012 01:54:37AM *  2 points [-]

The average user that sticks around might matter a lot, but people with low karma are probably less likely to stick around so they'll have less of an impact (positive or negative) on the community. So maybe look at the distribution of karma, but among veteran users resp. veteran MoR users?

Comment author: gwern 03 December 2012 02:53:19AM 2 points [-]

What's 'veteran'? (And how many ways do you want to slice the data anyway...)

Comment author: Vaniver 03 December 2012 03:49:33PM 2 points [-]

I imagine that when you divide karma by months in the community (while still restricting yourself to the top ten percent of absolute karma) the MoR contributors will look better. I'll do it tonight if you don't.

Comment author: gwern 03 December 2012 06:25:30PM *  2 points [-]

They do a bit better at the top; the sample size at "top 10%" is getting small enough that tests are losing power, though:

R> lw <- read.csv("lw-survey/2012.csv")
R>
R> hpmor <- lw[as.character(lw$Referrals) == "Referred by Harry Potter and the Methods of Rationality",]
R> other <- lw[as.character(lw$Referrals) != "Referred by Harry Potter and the Methods of Rationality",]
R>
R> hpmor <- hpmor[order(hpmor$KarmaScore, decreasing=TRUE),][1:25,]
R> other <- other[order(other$KarmaScore, decreasing=TRUE),][1:83,]
R>
R> hpmortime <- hpmor$KarmaScore / as.numeric(as.character(hpmor$TimeinCommunity))
R> hpmortime <- hpmortime[!is.na(hpmortime) & !is.nan(hpmortime) & !is.infinite(hpmortime) ]
R> othertime <- other$KarmaScore / as.numeric(as.character(other$TimeinCommunity))
R> othertime <- othertime[!is.na(othertime) & !is.nan(othertime) & !is.infinite(othertime) ]
R>
R> sort(hpmortime, decreasing=TRUE)
[1] 506.78 300.00 283.96 203.62 138.46 133.95 117.61 115.92 72.22 66.67 59.09 50.00 36.92
[14] 35.05 35.00 33.90 28.60 26.67 24.82 23.96 20.36 19.28 17.71 11.91
R> sort(othertime, decreasing=TRUE)
[1] 1895.36 647.88 456.97 338.89 263.16 250.00 250.00 235.71 184.90 183.33 173.91 166.67
[13] 165.00 146.93 146.65 145.83 142.86 133.33 133.33 133.33 125.00 125.00 125.00 116.45
[25] 102.73 100.00 97.22 84.38 83.33 83.33 83.33 83.33 75.00 75.00 74.51 72.00
[37] 69.60 68.88 66.67 66.67 63.33 61.11 60.71 60.34 58.33 57.14 55.95 53.43
[49] 52.17 50.00 50.00 50.00 50.00 48.48 46.46 44.12 43.75 41.67 41.43 40.00
[61] 39.66 36.36 35.91 33.33 33.33 31.67 31.32 30.00 30.00 30.00 27.50 27.47
[73] 26.95 25.33 25.00 25.00 24.06 23.33 22.73 18.25 16.67 16.67
R>
R> t.test(hpmortime,othertime)
Welch Two Sample t-test
data: hpmortime and othertime
t = -0.544, df = 72.4, p-value = 0.5881
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-87.52 49.99
sample estimates:
mean of x mean of y
98.44 117.20
Comment author: dbaupp 04 December 2012 11:29:33AM 1 point [-]
R> hpmor <- lw[as.character(lw$Referrals) == "Referred by Harry Potter and the Methods of Rationality",]
R> hpmor <- lw[as.character(lw$Referrals) != "Referred by Harry Potter and the Methods of Rationality",]

Is this a typo? Or some text that was lost in the copy-paste?

Comment author: gwern 04 December 2012 03:48:07PM 0 points [-]

Typo. I was operating on two variables, hpmor and others, but I guess a search-replace went awry...

Comment author: [deleted] 01 December 2012 10:11:25AM *  8 points [-]

Generally, half the time we get visiting leftwingers accusing us of being rightwing reactionaries, and the other half of the time we get visiting rightwingers accusing us of being leftwing sheep.

I think the site is clearly left wing slanted if you look at the demographics. Two thirds are liberal, communist or socialist with the remainder being libertarian. Conservative users especially are incredibly under-represented compared to the general population or even the university educated population.

It may however be noticeably less left wing on economic questions than similar high brow sites.

Comment author: CarlShulman 02 December 2012 07:13:46AM 1 point [-]

Conservative users especially are incredibly under-represented compared to the general population or even the university educated population.

Atheism and IQ are enough to explain most of that. See this Kanazawa paper, or this Gene Expression post (using data which does not have 'libertarian', we know from elsewhere that atheist 'conservatives' are mostly fiscal and not social conservatives).

Comment author: [deleted] 02 December 2012 08:26:18AM *  3 points [-]

Atheism and IQ are enough to explain most of that.

I wouldn't expect it not to be, but this doesn't change the problems caused by the under-representation of the political position.

Comment author: drethelin 02 December 2012 08:30:57AM 1 point [-]

Which are?

Comment author: [deleted] 02 December 2012 09:20:49AM *  15 points [-]
  • We are less likley to hear the strongest arguments in favour of those political positions
  • We are less likely to realize we are straw manning a position
  • Convenient but unjustified assumptions are less likely to be called out
  • Our thought and speculation about ethics and values in humans will be skewed
  • Conservative rationalists feel excluded from the intended audience
  • Since there are many many more people in the world who hold "conservative" positions than "progressive" ones we may not be properly mining a source of valuable community members.

In other words the standard pro-diversity arguments apply and arguably they applies more strongly than for some other categories it has been invoked for. I think value and political diversity is one of the best ways to as a community be able to detect motivated cognition.

Comment author: CronoDAS 01 January 2013 10:02:07AM 1 point [-]

"When two opposite points of view are expressed with equal intensity, the truth does not necessarily lie exactly half way between. It is possible for one side simply to be wrong." - Richard Dawkins

I'm perfectly okay with telling people with specific political opinions that they're wrong and should shut up. To try to use an uncontroversial example... should someone in the 1960s have cared about underrepresentation of segregationists in their discussions?

Comment author: [deleted] 01 January 2013 12:17:20PM *  7 points [-]

I will flat out say that I think people with reactionary view points from the past 200 years have had a remarkable prescience in predicting outcomes. It is simply that once those outcomes come about we don't consider them bad any more, indeed we develop sacred feelings around them.

Assume you agree with all changes that occurred in the mentioned time period. Indeed assume you agree with the changes that are likely to occur in the next 20 years as well. Unless you have a good reason to believe "moral progress" is coherent and happening right now history has shown there is literally no way from preventing inhuman processes of memetic and biological evolution from grinding down your complex values.

This should be deeply disturbing.

Comment author: [deleted] 01 January 2013 12:00:09PM *  6 points [-]

I will bite that bullet. Actually yes they should have! Since segregationists where right about specific undesirable consequences of integration that could have been avoided with a better thought out approach or more modest goals. Indeed very basic segregationist arguments against social engineering measures that where undertaken such as forced busing are surprisingly hard to beat.

Now obviously being against such invasive social engineering or affirmative action or disparate impact doctrine is also a possible principled libertarian stance but the result is segregation so segregationists often made those arguments as well and often made them well. They where engaged in motivated cognition finding the best possible reasons against a policy just as many people where engaged in motivated cognition to find the best possible reasons for policies. You need to set up a system where those offset each other as much as possible if you want to be confident in your epistemology. If you don't you are just writing the bottom line first and then generating the system that comes to the conclusion you want.

If you are a normal educated Western person, you have probably never read (certainly not in the course of a normal education) a non-straw-man argument against women's suffrage, for eugenics, against parliamentary democracy or nearly any other kind of social political change our society has done for the past several centuries.

This should scare you unless you believe society without much well informed designing happens to function very much like a FAI when editing our instrumental and terminal values in unpredictable ways.

Comment author: Peterdjones 01 January 2013 06:19:34PM 1 point [-]

If you are a normal educated Western person, you have probably never read (certainly not in the course of a normal education) a non-straw-man argument against women's suffrage, for eugenics, against parliamentary democracy

I've seen the lot, and far wackier, on teh webz.

Comment author: [deleted] 01 January 2013 12:08:17PM *  2 points [-]

I'm perfectly okay with telling people with specific political opinions that they're wrong and should shut up.

You should be open to the possibility that you are wrong.

This obviously does not mean the people you want to shut up are right, but you are very much likely to pattern match people who are right and don't agree with you with them anyway.

Comment author: CronoDAS 01 January 2013 12:19:54PM 1 point [-]

That's true... most political facts aren't as strongly confirmed as scientific facts, so you're somewhat less justified in telling, say, someone with Mencius Moldbug's opinions to shut up and let the grownups talk about politics than you are telling a young-earth creationist to shut up and let the grown ups talk about geology.

Comment author: Kawoomba 02 December 2012 07:40:27AM 2 points [-]

(Kanazawa paper) Since lightning never strikes the same place twice, this is guaranteed to be a nonrecurrent problem.

Untrue. Paper rejected. ;)

Comment author: MTGandP 30 November 2012 09:55:16PM 4 points [-]

Generally, half the time we get visiting leftwingers accusing us of being rightwing reactionaries, and the other half of the time we get visiting rightwingers accusing us of being leftwing sheep.

The first one surprises me because hardly anyone on LW seems conservative (and the polls confirm this).

I'm hereby making a prediction with 75% certainty that you consider yourself a left winger. Am I right?

I'm definitely a non-libertarian, so that may be it.

Comment author: Nornagest 30 November 2012 10:00:47PM *  6 points [-]

The first one surprises me because hardly anyone on LW seems conservative (and the polls confirm this).

Libertarians count as right-wing by most left-wing standards, even far right. And then we've got a small but vocal faction of neoreactionary/Moldbugger types, who don't fit cleanly into any modern political typologies but who tend to look extra-super right-wing++ through leftist eyes.

Comment author: ArisKatsaris 02 December 2012 05:43:29PM *  9 points [-]

The first one surprises me because hardly anyone on LW seems conservative (and the polls confirm this).

Just in the last two or three months I remember there was one guy that accused us of being the right-wing conspiracy of multibillionaire Peter Thiel (because he has donated money to the Singularity Instittue), a few who accused the whole site of transphobia (for not banning a regular user for a bigoted joke he made on a different location, not actually in this forum), one who called us the equivalent of fascist sheep (for having more people here read Mencius Moldbug on average than I suppose is the internet forum median)...

Fanatics view tolerance of the enemy as enemy action. So, yeah, I think leftwing fanatics will view anything even tolerant of either reaction or libertarianism as their enemy -- even as they don't notice that similar tolerance is extended to positions to the left of them.

Comment author: NancyLebovitz 30 November 2012 10:05:00PM 9 points [-]

The first one surprises me because hardly anyone on LW seems conservative (and the polls confirm this).

However, there are a few fairly common (or at least it seems so to me) opinions on LW which are distinctively un-Left: democracy is bad, there are racial differences in important traits, and women complain way too much about how men treat them. We'll see how that last one plays out.

Comment author: [deleted] 03 December 2012 04:59:22PM *  7 points [-]

there are a few fairly common (or at least it seems so to me)

I think that they appear to be more common than they actually are because their proponents are much louder than everyone else.

democracy is bad, there are racial differences in important traits, and women complain way too much about how men treat them

One of those is a factual question, not a policy question. (Also, there are plenty of left-wingers who wouldn't throw a fit at “it appears that black people and Native Americans have lower average IQ than white people, whereas East Asians and Ashkenazi Jews have higher average IQ; the differences between the group averages are comparable with the standard deviations within each group; it's not yet fully clear how much the differences between the group averages are due to genetics and how much they are due to socio-economic conditions”, at least outside liberal arts departments.)

Comment author: Multiheaded 01 December 2012 10:30:41AM *  5 points [-]

democracy is bad

For the last year or so, I've been thinking that a "real" (read pre-WW2) democracy is not just bad but very much right-wing (see Corey Robin's writings on libertarianism, "democratic feudalism", etc).

Like some other nebulous concepts, e.g. multiculturalism, I see it as grafted onto the "real" corpus of Left ideas - liberty, equality, fraternity, hard-boiled egg, etc - as a consequence of political maneuvering and long-time coalitions, without due reflection. Think of it: today the more popular anti-Left/anti-progressive positions are not monarchism/neo-reaction/etc but right-wing libertarianism and fascist populism, which often invoke democratic slogans.

there are racial differences in important traits

Like Konkvistador already said a few times, eugenics started out as a left-wing/progressive movement, and many old-time progressives - including even American abolitionists - were outright racist.

(Metacontrarianism, hell yeah!)

Comment author: [deleted] 01 December 2012 10:13:25AM *  4 points [-]

They are also practically non-existent in right wing parties in the West. While being contrarian is a bad sign, getting people from all mainstream political positions to go into sputtering apoplexy with the same input can be a good sign.

Comment author: TorqueDrifter 01 December 2012 10:28:37AM -2 points [-]

I dunno, 2 and 3 seem like things I'd expect the right-wing to believe (though probably with less nuance) in America (not to say they wouldn't go into sputtering apoplexy if you said certain formulations of those ideas out loud and there was a camera nearby). And who was calling for revolution after the recent election? (tongue somewhat in cheek there)

Comment author: [deleted] 01 December 2012 10:37:54AM *  2 points [-]

This might be true of 3 perhaps, but is not for 2.

Comment author: NancyLebovitz 01 December 2012 01:06:37PM *  1 point [-]

I'm not sure the link proves your point.

Comment author: [deleted] 01 December 2012 05:13:24PM *  4 points [-]

Derbyshire's firing wasn't a show for public consumption but a genuine rebuke from the National Review establishment caused by ideological differences.

Comment author: NancyLebovitz 01 December 2012 07:05:23PM 3 points [-]

It was also more over the top than just claiming that race and important traits are correlated.

Comment author: [deleted] 01 December 2012 10:52:10AM *  2 points [-]

We'll see how that last one plays out.

Can you please elaborate on what you meant by this? The way you said it made me feel rather uncomfortable.

Comment author: NancyLebovitz 03 December 2012 05:21:12PM *  3 points [-]

I wasn't intending to make you feel uncomfortable. On the other hand, I don't think dark arts require a lot of intent.

Anyway, I believe that anti-racism/some parts of current feminism are an emotionally abusive attempt to address real issues.

Most of the anti-racists here have not been abusive, but imagine a social environment where this is the dominant tone.

The emotional abuse leads to a lot of resistance and avoidance, but the issues being real has its own pull.

I've seen people (arguably including me) who were very unfond of the emotional abuse still come to believe that at least some of the issues are valid and worthy of being addressed. What's more, I'm reasonably certain that at least some of those people don't realize they've changed their minds.

I don't know where you personally will end up on these issues (it wouldn't surprise me if the discussion of gender prejudice brings in substantial amounts about racism and possibly ablism), but I expect that LW will be taken pretty far towards believing that (many) men mistreat women in ways that ought to be corrected. It wouldn't surprise me if (this being LW) there will also be more clarity about ways that women could and should treat men better.

Lessening Inferential Distance is only the first post in a series. I'm expecting that harder issues will be brought up in later posts.

Comment author: Multiheaded 01 December 2012 11:22:33AM *  3 points [-]

I believe that, with your linked comment getting 32 points, you are making Nancy rather uncomfortable in turn.

I'm fairly certain that we're all suffering from the hostile media effect; e.g. you keep saying how there's creeping censorship of right-wing ideas on LW, while I'm disturbed by such complaints getting karma and support :)

Comment author: Eugine_Nier 02 December 2012 03:02:13AM *  3 points [-]

you keep saying how there's creeping censorship of right-wing ideas on LW,

Consider the way this post was down-voted, along with some of the discussion, particularly here, as exhibit A.

Comment author: gjm 07 December 2012 12:02:46AM 1 point [-]

OK, I'm considering it. How does it indicate creeping censorship of right-wing ideas on LW?

I neither upvoted nor downvoted that post, so my guesses at the motivations of downvoters shouldn't be trusted too far, but my guess is that mostly it was downvoted because, while it was ostensibly about a technique of rationality, (1) what it said about that technique was mostly very obvious, (2) a big chunk of the article was devoted to the discussion of an entirely different topic with considerable mindkilling potential, and (3) this gives some ground for suspicion that the rationality-technique discussion served largely as a pretext for airing the author's views on that topic. (A topic that others in the past have been curiously enthusiastic to air similar views on.)

Having said all that, I'll add that in fact I don't think it likely that MTGandP is a racist or that s/he wrote that post in order to bolster racist ideas, and I think that if anyone downvoted that post because they wanted to discourage a nasty racist (rather than, e.g., to discourage other people who are nasty racists from posting similar stuff) then they made a mistake. But the point is that the downvotes don't look to me like censorship of right-wing ideas; they look to me like some combination of (1) finding the post unenlightening and (2) seeing it as promoting racism.

As for the "discussion, particularly here", again that doesn't look to me at all like censorship of right-wing ideas, nor like people arguing for the censorship of right-wing ideas. It looks to me like one person apparently thinking that racism has gone away and other people objecting that no it bloody hasn't. (Exception: the very first comment in the thread you linked to says, roughly, "race is a needlessly contentious thing to discuss to make your point", which (1) is true if the point is what MTGandP says, rather than that being a pretext for talking about race, and (2) doesn't constitute any sort of attempt at censorship, as opposed to advice that some topics are likely on the whole not to produce helpful discussion.)

Incidentally, I notice that some people in this thread are insisting that there's nothing particularly right-wing about believing in racial intelligence differences, whereas the only thing I can see to link the downvoting of the post you linked to with "right-wing ideas" is its defence of (discussing the possibility of) racial intelligence differences. Curious.

Comment author: Eugine_Nier 07 December 2012 03:01:24AM *  3 points [-]

I neither upvoted nor downvoted that post, so my guesses at the motivations of downvoters shouldn't be trusted too far, but my guess is that mostly it was downvoted because, while it was ostensibly about a technique of rationality, (1) what it said about that technique was mostly very obvious, (2) a big chunk of the article was devoted to the discussion of an entirely different topic with considerable mindkilling potential, and (3) this gives some ground for suspicion that the rationality-technique discussion served largely as a pretext for airing the author's views on that topic.

See my comment here for why I think the example was appropriate. Furthermore, the way you're throwing around the term "racist ideas" suggests you are also making the mistake the post describes with respect to the example given.

As for the "discussion, particularly here", again that doesn't look to me at all like censorship of right-wing ideas, nor like people arguing for the censorship of right-wing ideas.

You might have missed the part where AndrewHickey says:

If you think that racism was only a problem 'not so long ago' rather than being an ongoing, major problem, then you probably just shouldn't discuss race at all.

 

Incidentally, I notice that some people in this thread are insisting that there's nothing particularly right-wing about believing in racial intelligence differences, whereas the only thing I can see to link the downvoting of the post you linked to with "right-wing ideas" is its defence of (discussing the possibility of) racial intelligence differences.

Depends on what you mean by "right-wing". It's certainly true that there are currently a number of left-wing people who believe that discussing race and intelligence is morally unacceptable.

Comment author: Peterdjones 08 December 2012 02:03:29PM 1 point [-]

It's certainly true that there are currently a number of left-wing people who believe that discussing race and intelligence is morally unacceptable.

There's also a number of people who think there are bad intelectual confusions in every race-intelligence comment they have ever seen.

Comment author: gjm 07 December 2012 07:44:21PM 0 points [-]

the way you're throwing around the term "racist ideas" suggests you are also making the mistake the post describes

Why?

You might have missed the part where [...]

No, I didn't miss it. I don't see any attempt at censorship there; I see someone saying: you appear to be ignorant about X, and in view of that you would do better to leave the subject alone.

Depends on what you mean by "right-wing".

No, I don't think it does. Because so far as I can see there is nothing else about the post, or the votes it got, or the ensuing discussion, that anyone would consider an instance of "creeping censorship of right-wing ideas". Given that you cited it as an example of that, I can only conclude that you consider belief in racial intelligence differences to be a "right-wing idea". My own understanding of the term "right-wing" doesn't come into it, unless there's something else in the post that's distinctively right-wing; did I miss something?

Comment author: fubarobfusco 07 December 2012 06:49:41AM 0 points [-]

Incidentally, I notice that some people in this thread are insisting that there's nothing particularly right-wing about believing in racial intelligence differences, whereas the only thing I can see to link the downvoting of the post you linked to with "right-wing ideas" is its defence of (discussing the possibility of) racial intelligence differences.

Depends on what you mean by "right-wing". It's certainly true that there are currently a number of left-wing people who believe that discussing race and intelligence is morally unacceptable.

I think it's interesting that you keep changing the subject from "what propositions Greens believe" to your beliefs about "what topics Blues think are morally acceptable to discuss". It comes across that you're trying to make some sort of deeply subtle point about what beliefs you think it is morally acceptable to believe you have about Blues.

Comment author: [deleted] 01 December 2012 05:18:29PM *  2 points [-]

I believe that, with your linked comment getting 32 points, you are making Nancy rather uncomfortable in turn.

The comment you are referencing was written in disappointment over a discussion with hundreds of posts and a Main level article at 50+ karma.

you keep saying how there's creeping censorship of right-wing ideas on LW, while I'm disturbed by such complaints getting karma and support :)

I think this may be true to an extent, but this isn't my perception alone, several LWers have complained about this in the past year or so.

What disturbs you about this specifically?

Comment author: Multiheaded 01 December 2012 07:03:27PM *  6 points [-]

What disturbs you about this specifically?

Like I already said a few times, nearly all the highly upvoted posts and comments that explicitly bring up ideology - like yours - appear to come from the right. Duh, you'll say, if most of the LW stuff is implicitly liberal/progressive, then of course what's going to stand out is (intelligently argued) contrarianism. But the disturbing thing to me is that the mainstream doesn't seem to react to the challenge.

What I have in mind is not some isolated insightful comments e.g. criticizing moldbuggery, defending egalitarianism or feminism or something like that - they do appear - but an acknowledgement of LW's underlying ideological non-neutrality. E.g. this post by Eliezer, or this one by Luke would've hardly been received well without the author and the audience sharing Enlightenment/Universalist values; both the tone and the message rely on an ideological foundation (one that I desire to analyze and add to - not deconstruct).

Yet there's not enough acknowledgement and conscious defense of those values, so when such content is challenged from an alt-right perspective, the attacking side ends up with the last word in the discussion. So to me it feels, subjectively, as if an alien force is ripping whole chunks out of the comfortable "default" memeplex, and no-one on the "inside" is willing or able to counterattack!

Comment author: [deleted] 02 December 2012 10:44:14AM *  8 points [-]

The thing is right wing thinkers who end up on LessWrong and stay in the community should be comforting to you, these are the people who believe engaging in dialogue and common goals is possible. And I would argue they empower all members of the community by contributing to the explicit goal of refining human rationality or FAI design (though they might undermine some other implicit goals).

Compare this to the idea of right wing thinkers that take what they can from rationality and the alt right and then seeing they are not accepted in the nominally rationalist community leave for the world. Even as individuals that should concern you, but imagine a right wing community forming powered by the best tools from here. Somehow it seems its left wing only counterpart would be weaker.

Comment author: Multiheaded 06 December 2012 12:25:13PM *  1 point [-]

The thing is right wing thinkers who end up on LessWrong and stay in the community should be comforting to you, these are the people who believe engaging in dialogue and common goals is possible... And I would argue they empower all members of the community by contributing to the explicit goal of refining human rationality

The question is, how much do they contribute to the "value-neutral" goals like epistemic rationality/practical knowledge/whatever, versus the disutility that I suffer by them succeeding at their values - and perhaps getting to influence the future disproportionately, if LW/SIAI achieve a lot and give leverage to all participants? Extreme right-wingers all seem to share the explicit values of institutionalized dominance, rigid hierarchy, rejection of universal ethics and the suppression of any threat to such an order.

For example, you've quoted Roissy around here before as a good instrumental rationalist and worthwhile writer - and, say, Hanson links to him, and Vladimir_M endorsed him - yet I think that he must've already caused enough misery with his blog and his personal actions, never mind whatever political impact his vile thoughts might have. I don't think that our community should be willing to cooperate or communicate with thinkers like him. At all. And he's small fish compared to the intellectual currents that might appear if the "Dark Enlightenment" grows some more. I have pondered where those ideas might lead, and it fills me with equal part horror and rage.

...

If this movement indeed has potential for growth, I wish for a broad cordon against it, from academic liberals like Corey Robin to far-left writers like Matthew Lyons to LW-style progressive technocrats.

Comment author: [deleted] 02 December 2012 10:57:53AM *  4 points [-]

But the disturbing thing to me is that the mainstream doesn't seem to react to the challenge.

Academia and mainstream political and philosophical tradition have no reason to engage what they don't need to engage to maintain their position. The Dark Enlightenment is far from power or influence on society. If it demonstrates the ability to grasp it I am sure something like the counter-reformation will be brought to bare by the major established institutions against it.

Comment author: NancyLebovitz 02 December 2012 11:34:50AM 6 points [-]

I took away one thing from the Dark Enlightenment link-- that it's worth being shocked that cities have districts where the local culture makes it hard for people to live with each other. I don't know whether his claim that first world Asian cities don't have such districts is true.

Comment author: [deleted] 03 December 2012 01:04:58AM 2 points [-]

Yet there's not enough acknowledgement and conscious defense of those values, so when such content is challenged from an alt-right perspective, the attacking side ends up with the last word in the discussion. So to me it feels, subjectively, as if an alien force is ripping whole chunks out of the comfortable "default" memeplex, and no-one on the "inside" is willing or able to counterattack!

As someone who recently realized that the default memeplex is in fact a memeplex and probably wrong, I think I have an idea for why no one on the "inside" counterattacks.

  1. We don't realize we are even in a memeplex that can be attacked. There's no explicit defense of those values because they just feel like the way the world is; we don't recognize them as values needing defending.

  2. The standard universalist immune response is not calibrated to the alt-right, and doesn't recognize it as hostile. Also, some of it is recognized and flagged as "idiocy; ignore."

  3. If we do recognize the attack, we have no canned response. It's hard to get original thought out of people; much easier to get zombie slogan chanting.

I just realized though, that this explanation is entirely a rationalization. It might have no connection to reality.

Comment author: Eugine_Nier 02 December 2012 02:01:25AM 2 points [-]

So to me it feels, subjectively, as if an alien force is ripping whole chunks out of the comfortable "default" memeplex, and no-one on the "inside" is willing or able to counterattack!

They are. They just can't come up with good arguments.

Comment author: JoshuaZ 02 December 2012 10:46:51PM 6 points [-]

They are. They just can't come up with good arguments.

I think what is happening here is a bit more subtle than your summary suggests. First, many of the notions being proposed or discussed while in some sense "conservative'' are things like Moldbug's ideas which while they do fall into one end, they aren't in any way standard arguments or even issues. So people may simply not be able to raise effective arguments since they are grappling with approaches with which they haven't had to think about before. Similarly, I suspect that all of us would have trouble making responses to arguments favoring say complete dissolution of all governments above the county level, not because such arguments are strong, but because we're not used to thinking about them or constructing arguments against them.

Moreover, the meta-contrarian nature of Less Wrong, makes people very taken with arguments of forms that they haven't seen before, so there may be a tendency to upvote or support an interesting contrarian argument even as one doesn't pay as much attention to why the argument simply fails.

Finally, contrarian attitudes have an additional advantage when phrased in a political context: They aren't as obviously political. The politics-as-mindkiller meme is very strong here, so a viewpoint that everyone recognizes as by nature political gets labeled as potential mindkilling to be avoided while arguments that don't fit into the standard political dialogue as much don't pattern match as closely.

Comment author: [deleted] 02 December 2012 10:34:23AM *  4 points [-]

We have seen posters motivated enough to engage in karmassasination of users making right wing arguments so this seems plausible. The weight of evidence certainly seems to be on the alt-right side quite strongly on several issues and has been building ever more that way for decades.

Yet the demographics of metacontrarianism however are something we should keep in mind. Perhaps people clever enough to construct on their own novel arguments rather than just picking them up from academia or mainstream political tradition don't yet have much to signal by doing this. If 10 or 20% of LWers where conservatives and another 10% of reactionaries perhaps they would. For now though they stay in the alternative right wing camp where the fun ideas and displays of cleverness are to be had. I'm basing that number on anti-libertarian arguments being viable in our community.

Comment author: [deleted] 02 December 2012 10:35:31AM 7 points [-]

They are. They just can't come up with good arguments.

I think him being acutely aware of this possibility is what contributes to feeling under siege by scary aliens.