> In summary, the idea is to give all of the information to help others to judge the value of your contribution; not just the information that leads to judgement in one particular direction or another.
Sometimes I think if we could extend this principle to human communication in general, we'd end up with a lot less misinformation.
I try to communicate doubts or possible weaknesses in my arguments when I can, though it's difficult and I'm sure I've failed to do so on numerous occasions. It occurs to me that perhaps we simply don't have the cognitive capacity to include that level of information in our everyday communications. Still, I wonder if perhaps this should be an ideal to strive for. Information travels so fast now, and it seems like most people aren't very mindful of how they participate in this transmission.
As others have pointed out, in the court of public opinion, ideas are not a meritocracy. Loudest wins, and hedging is seen as weakness.
There is an experiment here that can be applied to start ups. Can you predict the success or failure of a start up based on how confident the founder is perceived?
Perhaps the answer is a kind of confident non-confidence. "I have studied this problem and am about 70% confident that the answer is this, and I am confident there's not enough information available to be more certain than that. If anyone tells you they know the answer for certain, they are probably trying to sell you something."
Surely You're Joking, Mr Feynman is a brilliant read. My high school Physics teacher lent it to me a few years ago; it really opened my eyes and increased my love for the subject.
I just happened to finish it today. I already knew throughout the book that it would be a very important read, in several aspects. The very end is about the cargo cult in science, and it looks like he put this collection of anecdotes of his life in the sole point of illustrating the cargo cult problem, only exposed in the end. It's almost the sole time he talks extensively about science in this book (and it's why it's so awesome). Cargo cult is the result of a trap that our own brain seem to be wired to fall in. We all know or knew at some point how to avoid the trap, but it gets another perspective when reading about someone that put it in practice his entire life.
Question everything, discover everything, take nothing for granted.
If it's seems unrealistic, just read the book, it'll just teach you how it happens. If it's intimidating, it's by its ruthless simplicity.
> Cargo cult is the result of a trap that our own brain seem to be wired to fall in
That's because we're over-sensitive pattern matching machines. This is good because often recognising and learning patterns quickly is extremely important, far more so than some false positives. Our amygdala, for example, responds very quickly to simple patterns ("AAAAH A SNAKE"). Slower processing can then tell us it's actually a stick. The cost of a false positive VS a false negative here are quite clear.
"Cargo Cult X" is always about us recognising a pattern and just blindly following it without understanding the causal links. Our poor (innate) understanding of probabilities means we can't really combine evidence well, but we can pattern match. Worse, because we start to feel like we understand what's happening we don't delve more into the problem. Even worse than that, we start to ignore evidence that doesn't fit the pattern since those examples look like outliers, and we quickly forget how often we've seen them.
As situations get more subtle than "Snake or stick" the costs of being wrong in different ways change massively. A poor understanding of statistics in healthcare can kill significant numbers of people, similarly with economic or political interactions.
Our brains are awful at complex statistics, but to be fair to them if our ancestors had waited for a double blind study on how likely a tiger was to eat you we would be here. Good work brains, but we need to stop listening to you now.
Information on fear responses and the role the amygdala plays:
Over the years I've come to the conclusion that "science" is all about the customs designed to defeat the brain's imperfections. (It's pretty impressive that we can build such a reliable system on top of a such an unreliable system.)
One important conclusion is that scientists are not more believable than other people. "You should believe me because I am a scientist" is not acceptable answer. That scientist is still a meat-bag, just like you. The entire field of science is built up so we can trust the results of science despite it being done by meat-bags, not because we have created high priests that are more believable.
Cargo cult is the result of a trap that our own brain seem to be wired to fall in.
Yeah, tell me about it. I fell into the trap a couple of months ago. I was tasked with porting my company's browser's 2D graphics backend onto Android OpenGL. My first attempt allowed the browser to draw into graphics buffers that I would load into a texture using glTexImage2D.
A few co-workers felt that this was less efficient than the old 2D APIs, where we would draw into a buffer that would be directly read by the blitter hardware, without having to do a load step. I agreed - on the face of it, if we could arrange things to draw into the texture buffer directly we could save memory and processor cycles, so I started hunting on the Internet to see if anyone else had come to the same conclusion.
It turns out that the guys that were developing Firefox for Android had had exactly the same problem, and they hacked together a solution where they used some internal Android APIs for graphic buffers, that they accessed through dlopen/dlsym. They then linked the buffer to an eglImage, and created a texture from the eglImage. I figured that hey, if the Firefox guys are doing it, then it's probably not to bad an idea.
Unfortunately I should have taken the next step in my investigations, and ask myself exactly what that code that created an eglImage and linked it to a texture was actually doing. If I had investigated that more closely, I would have realised that behind the scenes there's an implicit equivalent of glTexImage2D being done - the problem being that the internal format of a texture is not a simple bitmap. The image is tiled so that OpenGL can draw a texture to the screen with any rotation and have roughly the same performance - if you use a standard bitmap layout, memory paging makes drawing tall thin rectangles much slower than drawing wide short rectangles. So, for OpenGL (or at least OpenGL ES) to be able to draw the texture to the screen, it first reads the data in from the eglImage, tiling it as it goes. This is exactly the same workload that you have in glTexImage2D, and it requires you to keep two copies of the buffer - the one you draw into, and the one that has been tiled for OpenGL.
Anyway, it took me about a month to get the eglImage solution to work (apart from everything else, you are exposed to odd behaviour by the graphics libraries of each Android tablet that your code runs on, that you have to write special code to handle, ie it's not very portable as a solution). Once I realised that I wasn't actually gaining anything from the exercise, I had to go and rip out all of that native graphic buffer code, and put back in the original standard texture code. I probably wasted 6 weeks stuffing around with all of this.
Lesson learned - if you are worrying about optimising code, you need to understand what is being done by the compiler / hardware, and it is pointless changing code until you have that understanding. Don't just accept stuff that you read on the Internet, where possible you need to go and look at source code, or official documentation. Anything else is running the risk of cargo-culting.
I first spotted that book in 1993, when a semi-illiterate guy passed it to my dad. The book came from a person who runs a school "Feynman public school" in a place called Bharatpur in northern India. It was the best thing that happened to me in 1993 and there was quite a lot that happened that year in my life...
The part that got me hooked was "he fixes radios by thinking" and then sure enough I learnt a bit of safe-cracking too :-)
His lectures on physics were the most beautiful books sitting on my shelf during my school years(never read them), but in India cool kids aren't supposed to be theoretical physicists... they are supposed to be Engineers..and so here I am...
Reading the Feynman Lectures on Physics is a lot to ask of anyone, even many physicists. But if you'd like to appreciate a gem, crack open Volume I and read Chapter 22 - "Algebra". He starts with the ability to count integers, and then proceeds to derive Euler's Formula. Not rigorous mathematics to be sure, but easily my favorite piece of writing (fiction or non-fiction).
Excellent read. Maintaining integrity in daily life has been a constant struggle. For many people, myself included, paying bills or taking care of people that depend on you can get in the way of integrity and it's a shame. Mr Feynman is lucky in that his skills will allow him to have his cake and eat it so to speak, not to discredit his message.
> Except he died of cancer (probably related to his work on the manhattan project)
Feynman was a theoretical physicist. Direct exposure to fissile materials in a lab or factory environment is hard enough to reliably correlate with cancer rates[1][2] (we're all exposed to a lot of ionizing radiation over the course of our lives), but Feynman's exposure during the Manhattan project would have been extremely minimal, making any connection to his eventual cancer is virtually impossible.
We can probably agree that Feynman's cancer wasn't directly due to his work on the Manhattan Project, but not for the reasons you cite. He died >40 years after the Manhattan Project. Feynman tells several anecdotes which indicate that he and others may have had significant exposure, and that he certainly had many opportunities for exposure. The Manhattan Project was unlike any other science project to follow in that not only was worker safety much less of a concern but the danger was also less well understood than in any successive project. Additionally, all involved persons were encamped together at Los Alamos, Oak Ridge, Hanford, and Argonne, working closely together on a daily basis, milling about each others' labs, sharing other facilities. It is lucky, with the safety regime in place that more people were not killed or harmed.
I'm not sure what you mean; that was exactly my point. His exposure was likely minimal (I can't recall anything suggesting he was close to any criticality assemblage tests), but his exposure level is still more or less irrelevant. It's basically impossible to separate anyone involved in the Manhattan project that didn't die immediately from exposure from expected background population cancer rates.
That's stated pretty explicitly--even for those few most directly exposed in accidents--in the discussion section of the paper you link (which my first linked paper was a followup study to, 20 years later, btw), and it was found to be true in the larger population of nuclear material workers in the second paper (who were, indeed, working in an environment where much more was known about how to control the dangers of what they were working with).
"worker safety much less of a concern but the danger was also less well understood"
Another important point is to people who don't understand the physics, something not understood "must" be feared, therefore the most dangerous part must have been the physics. However I understand at least some of the chemistry and industrial processes using bulk hydrofluoric scare me more than the physics. Aside from the mechanical / explosive hazards, of course (machine plastic explosives to precise shapes on a milling machine for the implosion weapons, are you insane? You're hooking up a zillion blasting caps to .. what?)
Would being a witness to the first blast be a source of radiation?
At the first test explosion of an atomic bomb, Feynman was the only scientist who eschewed protective goggles and watched the blast with unshielded eyes — he wanted to see the explosion clearly, and had researched the danger and confidently concluded that the risk to his vision was negligible.
Were cancer rates among those witnesses much higher than in the general population? (Note that the goggles really do nothing when it comes to cancer, so that bit is irrelevant.)
The immediate radiation dose from a nuclear explosion is generally low. It's the fallout that gets you, hours or days later. Even then, the risk is acute poisoning, not so much long-term cancer risk.
IIRC, he sat behind a vehicle's windshield for the benefit of the UV protection it offered. But, no, remember, he died in 1988, more than 40 years later. What type of cancer takes 40 years to show up?
Not to distract from the Important Scientific Discussion, but Esalen is as wonderful today as it was back then. The hot tubs and showers have been rebuilt, and the scenery is just as striking. Out of this world.
How does it compare to Harbin? I was just there and it was also lovely (a bit too much like a resort than i'd prefer, though)
Also off of the scientific tangent: If you find yourself in a hot tub with a beautiful nude and no idea what to say, compare poetry to liquid thermodynamics. "Rock Star" doesn't begin to cover it.
Very different vibe from Harbin, plus of course the ocean. Much more of a sense of "community" at Esalen, while at Harbin you generally interact with the people you came with, if any.
This story has been particularly sccessful on HN recently partly because of this year's Burning Man festival's theme being "cargo cult". Quite happy to see this pop up again. Feynman never goes out of style.
This year at Burning Man, I happened to notice a car with the California state license plate "TUVA". I recognized it as belonging to Ralph Leighton, Feynman's close friend and author of Surely You're Joking, Mr. Feynman!. (The plate is a reference to the story recounted in [Tuva or Bust!](https://en.wikipedia.org/wiki/Tuva_or_Bust!).) I reached out to Ralph, and it turns out he wasn't there but his son was. I thought it was a fun coincidence given the theme of the burn.
And it's unreasonable to have never seen this if you're older?? I don't know about you, but I still discover new things despite being twice the quoted age.
His point is something along the lines of, the older you are the more likely that you've heard of it, especially if you have a history of reading HN much.
"More likely" is a far cry from "there's a lot of 16-year-olds around here" (paraphrased). There's no reason to think that's the cause rather than the alternate theory that there are new people joining HN all the time (as you suggest), or simply that even people who have seen this thing before still upvote it.
Despite having a curious mind I still find things I didn't know about. Being 42 I experience this while feeling a combination of frustration and delight. I am working on the silly frustration bit :)
BTW I read the book last summer for the first time. Its brilliant and the underlying message even more.
"BTW I read the book last summer for the first time."
In the proud tradition of founders generally solving problems that mostly affect themselves rather than the rest of the population, I propose the startup idea of a hackers bookshelf startup. Not the first time its been tried, its a hard problem which means its a good startup topic.
I've been reading HN regularly for the last few years and never seen this. I wouldn't be surprised if I've read popular things you haven't too, unless you're on here every second of every day.
I've never seen it here, and based on a limited search [1] it appears that the story hasn't made it to the front page (i.e. gotten a non-zero amount of comments) in three years.
Feynman is great, but not as well-known as you would like to think. Even people who recognize specific widely-related events (O-ring in ice water, or Trinity through the windshield) usually won't be able to tell you who he is. Even in tech, I only occasionally encounter people outside certain Internet Echo Chambers who have read anything at all by him.
I'm not so sure about the user base being 16, but this story does seem to make the rounds quite a bit. Perhaps so much so that I cringe when I hear Cargo Cult misused in the popular jargon. It's a shame because Feynman does have so much to say.
I'm familiar with Richard Feynman, have read this before and voted it up anyway. Why? Because it's a really fantastic read and being reminded of the content every year or two is definitely a good thing.
I didn't truly respect and understand Feynman until I read American Prometheus: The Triumph and Tragedy of J. Robert Oppenheimer And it really shows how important Mr. Feynman was to not only making the first computerized filing system for the manhattan project, but also in solving some of the crucial challenges they faced. He had such a unique way of approaching physics that I think a lot of his contemporaries admired.
Sometimes I think if we could extend this principle to human communication in general, we'd end up with a lot less misinformation.
I try to communicate doubts or possible weaknesses in my arguments when I can, though it's difficult and I'm sure I've failed to do so on numerous occasions. It occurs to me that perhaps we simply don't have the cognitive capacity to include that level of information in our everyday communications. Still, I wonder if perhaps this should be an ideal to strive for. Information travels so fast now, and it seems like most people aren't very mindful of how they participate in this transmission.