I know of no good books on this subject. In my experience, you have to understand what it's like to use many different software paradigms and how they are implemented.
Maybe Concepts, Techniques, and Models of Computer Programming? I haven't finished that one, but the first part was good.
Then the week afterwards, the world learned that Emergent had put ingredients for the AstraZeneca vaccine into a batch of Johnson & Johnson vaccine, running the entire batch of 15 million doses.
Did you mean "ruining"?
U.S. pauses J&J COVID-19 vaccine over rare blood clots
Zvi argued pretty persuasively that it was a massively bad idea when most of Europe suspended the AZ vaccine for similar reasons.
Are we making the same mistake now, or is it different this time for some reason?
Are sperm necessary at all? Eggs have also gone through meiosis, so they're haploid just like a sperm nucleus. Can you just implant the nucleus from a selected embryo's egg into another selected egg and then add the "you've been fertilized" chemical signal? I'm not sure how complex that process is.
If that's too hard, what about surgically swapping in the nucleus from an egg cell produced from a selected embryo into a healthy sperm cell? Would the sperm function for long enough to fertilize an egg?
Of course, we can only produce females this way, but that co... (read more)
Searching around the web, it looks like most miscarriages are due to aneuploidy. That would be easy to detect and select against.
It's hard to find good numbers for the human mutation rate. I saw numbers ranging from 42 to 200 per generation. Sperm seem to have more mutations than eggs on average. It can vary based on environmental exposure to mutagens, and older parents tend to have more mutations on average. Perhaps embryonic parents simply wouldn't have the time to accumulate many mutations. On the other hand, one has to do unnatural things to get these embryonic cells to turn into gametes. If any of these steps are mutagenic, then the mutation rate could be even worse.
Wouldn't genes which stop the baby from being born, quickly exit the gene pool?
Yes, by killing the fetus before it's born. New mutations still happen all the time. Usually they hit junk DNA and not much happens, but what if it breaks something vital? And it's possible to inherit deleterious recessive alleles from both parents. That why incest is still a problem, from a genetic standpoint.
Similarly for gamete formation processes which allow such mutations to arise?
And yet we still have transposons. Evolution requires some amount of mutation, which is... (read more)
There's another problem with iterated embryo selection that I haven't seen accounted for. I don't recall the exact numbers, but some surprisingly large fraction of natural human pregnancies result in a spontaneous abortion. Exact causes of this may vary, but I think a significant fraction of those are simply not viable due to genetic mutations. Adult parents have at least proven they have the genes necessary to both survive until adulthood and find a mate. Embryonic parents haven't proven that. Certainly we can use genetic tests to screen them for known genetic diseases, and that is kind of the point, but how do we screen them for unknown genetic diseases?
Wouldn't a more limited form of iterated embryo selection still be possible with the oocytes alone? You'd still have to fertilize the eggs with sperm from the current generation, but the eggs could be derived from a selected female embryo, then you do it again, sperm from the current generation, but eggs from second-generation selected female embryos, etc.
This one's better. Not in such bad taste like the last one. Are you actually finding these on Twitter, or making them up? I feel like better examples exist. This one still feels like it could be more about culture war than intelligence, but maybe that's most of what's stupid on Twitter. Given the snark in the rest of the page a funnier example would fit better. Maybe something so not-even-wrong you want to facepalm.
Yes? I mean, other vimmers might feel differently, but I basically don't use counts like that. Counting to move the cursor is too much effort, especially if you're counting higher than 2-3. It's not worth the time it takes.
ww
is the same number of keystrokes as 2w
. I might use the latter if I needed a single motion operator to repeat later with .
, like c2w
, but ww
or even www
would be easier most of the time. Past that, we're getting to the 4-5 keystrokes where /
is better, and you can probably do it in two to three keystrokes with f
-something (;
) as easil... (read more)
The choices become much more obvious with experience. Waiting 3-5 seconds is completely unrealistic once you know what you are doing. I'd fall back to using the mouse well before 3 seconds, unless I'm in a remote terminal or something that doesn't support it, in which case I'd use /
/ ?
and n
.
You could theoretically target any character in the file using only Space to advance the cursor and gg
to go back to the start (well, depending on your settings). But nobody even thinks to do it this way (because it's stupid), so it doesn't seem to drain any mental re... (read more)
I very much agree with the premise, if taken literally rather than as satire. Communities that refuse to defend their borders eventually get destroyed.
That said, I can take most of the wording in the linked page as humor, but the blocked example was, at best, in bad taste, if not literally racist without context.
If LW did have an Eternal September-like crisis, I'm not sure what we'd do about it. A simple entry test like this seems like an option. But rather than an IQ-captcha, I'd like to see a rationality-captcha. Intelligence is not the same thing as rationality. Clever people tell themselves clever lies.
You have to reach farther for Escape
than for CapsLock
, which makes Escape
slower.
I mapped fd
to Escape
, because that's what Spacemacs uses. It's also much less error-prone than jj
and jk
, which seem to be common choices.
There's the paradox of choice and having more choices to accomplish a task costs mental resources.
As your vocabulary has grown, has your speech slowed down? Is it faster to look at the keyboard and type with one finger, or touch-type with all ten? Have you ever played fighting video games? Is someone who knows more moves at a disadvantage? It might depend on how much they've practiced them!
More conscious choices slow me down, it's true, but once it's ingrained at the level of habit, you can do it almost as fast as you can think it, just like speaking o... (read more)
I've found that /
is still often faster for that. Not always, but often. I still use the mouse sometimes.
At least for PyCharm, this was somewhat easier on macOS than on Windows, since you have control
, option
, command
and shift
, instead of just Ctrl
, Alt
, and Shift
(well, and the Win
key, but the OS reserves too many bindings there.) On macOS, The IDE uses command
for most things, while Vim usually uses control
when it needs a modifier at all. On Windows they both want to use Ctrl
, so it's more difficult to configure all the bindings.
Vim is far from optimal, but it's very customizable, which makes it easy to paper over the more obvious cracks.
For alternative ideas, the Canon Cat had a pretty well-designed interface for text editing, which Jef Raskin described in The Humane Interface, which has influenced my thinking about UI design. It's still not as fast as Vim, but much easier to learn. The 80% solution for the 20% effort maybe. If you want to try it out, it's old enough that you can emulate it in your browser, although I had to download MAME to get all the keybindings working.
I've done pair programming with devs who don't know vim, and remember on multiple occasions watching the other dev try to make an edit while thinking that I'd be done by now if I was the one typing.
Most of the time, what I do with vim is at the level of habit and "muscle memory". I don't have to think about it. If I'm programming a macro or writing a regex, sure, I have to think. But the motion commands just happen now.
I have an AutoHotKey script that copies any highlighted text, pops up a gVim window with that text, and then I can save it back into the clipboard with :wq. I works on any plain text field in any app that respects the C-c copy-selection shortcut. I'm sure someone with your skills could put together something similar. I think I had a variant that would also C-a to select all and then C-v after I closed gVim.
I also have a more involved AHK script that does a subset of vim commands in any normal text field while I hold down the tab button. Getting the f
comma... (read more)
Not being an expert in Zen, I'm not sure what "Zen rhetoric" means. Could you provide examples quoted from the Sequences of what you are talking about and what makes it "Zen"?
I think a collection of examples and analysis would be a post in itself.
But I can give you one suggestive example from Twelve Virtues itself: "If you speak overmuch of the Way you will not attain it."
It is a Zen idea that the essence of enlightenment cannot be discovered by talking about enlightenment; rather one must put one's mind in the state where enlightenment is. Moreover, talk and chatter - even about Zen itself - drives that state away.
Eliezer is trying to say here that the the center of rationalist practice is not in what you know about rati... (read more)
Having tried both now, I can say they're basically the same thing.
If we're talking about orbital propellant depots, the individual launches of fuel don't have to be very big, as long as the price per kilogram to LEO is favorable. Rockoons are but one methods circumventing the rocket equation. Many others are known, with some being more realistic than others in the short term.
the vast majority of that fuel is burned in the lower atmosphere.
Then why not launch from high-altitude balloons?
Mary has perfect knowledge - that is, all knowable information she possibly can - about an experience
I dispute this premise. If Mary knows how to visualize something red (and learned how to do so through some means other than seeing it with her eyes) and knows that it's called "red", then that's knowledge, and she won't learn anything new by seeing it for the first time. This isn't knowledge that Mary could acquire by reading black-and-white textbooks about cone cells and neurons, but hypothetically the knowledge could be implanted in her brain via some technology while bypassing her eyes.
OK, I think we agree that subjective mental states correspond to physically real states in the brain, and that Mary's Room is insufficient to refute physicalism. Was that your point/conclusion?
What I'm not understanding is your argument for getting there. Either it's not valid, or I don't understand what you mean.
The experience of recalling experiences is itself an experience. The experience of imagining an experience is itself an experience. These internal mental experiences are less vivid than a direct sensory experience is in the present for most people most of the time, but sometimes dreams can be as vivid as waking life. Internal mental experiences still have qualia, and they use the same sensory channels as the direct sensory experience does. You can recall or imagine or dream about how something looks or sounds or feels like etc.
The memory doesn't have qualia except during the act of recalling it consciously.
This whole post strikes me as extremely confused. I'm trying to put my finger on why.
What then is the difference in qualia between this version of Mary and the version of Mary that did genuinely leave the room?
Nothing. Assuming Mary can mentally visualize colors (not everyone can), then she now has access to e.g. the "redness" quale, and has that experience of redness whenever she recalls her false experience, and now has the ability to imagine red things, and when doing so will also have the experience of "redness". She can generate the "redness" qual... (read more)
As long as the borrowing rate is lower than the expected return on SPY, leveraging will always improve your return.
Maybe not what you meant, but this wording is too strong. If you leverage high enough to exceed the Kelly bet size by 2x or more, then your long-run portfolio value will be zero.
I guess if we’re writing -2 as a simplification, that’s fine, but seems to introduce a kind of meaningless extra step
is the simplified form of , not the other way around, in the same sense that is the simplified form of .
Why do we think it's consistent that we can express a multiplicative inverse without an operator, but we can't do the same for an additive inverse? A number system with compliments can express a negative number on its own rather than requiring you to express it in terms of a positive number and an inversion opera... (read more)
The point was to outlaw artificial molecular assemblers like Drexler described in Engines of Creation. Think of maybe something like bacteria but with cell walls made of diamond. They might be hard to deal with once released into the wild. Diamond is just carbon, so they could potentially consume carbon-based life, but no natural organism could eat them. This is the "ecophagy" scenario.
But, I still think this is a fair objection. Some paths to molecular nanotechnology might go through bio-engineering, the so-called "wet nanotechnology" approach. We'd start... (read more)
Maybe it's not better. I could be wrong. My opinion is weakly held. But I'm talking about eliminating the arithmetic of subtraction, not eliminating the algebra of negation. You'd still have a minus sign you can do algebra with, but it would be strictly unary. I don't see high-school algebra changing very much with that. We'd have some more compact notation to represent the , maybe I'll use ^ for now. So you can still write for algebra, it just simplifies to ^8 for when you need to do arithmetic on it. And instead of writing , you write . ... (read more)
Maybe that would incentivize lab-grown organs? Which seems like a better long-term solution anyway.
And while we're at it, I think that when we teach arithmetic, we should be representing negative numbers using compliments like computers do. It makes negation a little more difficult, but still pretty easy, and eliminates subtraction as a distinct concept from negation and addition, along with the entire subtraction table.
So, for example, a -2 is like saying . We're used to having a weird unnecessary special case when going below zero, but if we mechanically use the normal subtraction rules, realizing that there are an infinite number of implicit leadi... (read more)
We're still teaching children arithmetic in base ten. The objectively correct base is six.
I'm serious. This is not just my opinion. The base we choose had better be a whole number, but the size of the multiplication table we have to memorize goes up roughly quadradically in the size of our base (although there are regularities that can sometimes make this easier), so it has to be a fairly small whole number. There just aren't that many choices, and we've checked them all. Base six is optimal.
I think it's not so much the height of the spike that did it that time, but that combined with how low the VIX was just before that spike. Inverse ETFs are strange beasts. There's no hard limit to the upside of what they're tracking, but the inverse ETF can't drop below zero, and this is a good thing compared to shorting the underlying yourself, since it caps your losses. For daily-tracking inverse ETFs with 1x leverage, a one-day move of the underlying of 100% of its previous day's value would mean a total wipeout. For a 2x inverse ETF, it would only take... (read more)
Are the kind of people who take out P2P loans the same kind of people who have a lot of excess money to invest in the stock market? How correlated would they be?
That depends. If you're investing in small businesses, maybe a lot. People borrow money for various reasons, and have different risk profiles, and as the investor, you can pick and choose.
For example, a recent college graduate who just landed a high-paying job may get a P2P loan to consolidate credit card debt. How correlated do you expect that to be to the stock market?
Individuals are still affect... (read more)
It's not about the absolute returns, but their correlation to your other investments.
Having uncorrelated return streams in your portfolio drastically lowers the volatility of your portfolio.
Even if it's a worse investment than the stock market on its own, adding it to your portfolio can make the overall portfolio better, if sized appropriately to its volatility. That's why I said not to start with this unless you're already investing in the usual instruments.
I don't do all the ceremony, but my experience of doing the actual meditating when I tried it for a while was similar. Isn't something more interesting supposed to happen though? People I take seriously take meditation seriously, for reasons they seem to have trouble articulating, but seem to think the practice is worth it somehow, for reasons I still don't fully understand, so I tried it. I had hoped to at least get a glimpse of these reasons, but after a month or so of practice, I didn't notice any progress beyond what you're describing and kind of moved on.
The behavior of the VIX is a lot more predictable than something like a stock. It tends to hang out at a certain level, and occasionally spike. If you could trade it directly, this suggests a simple strategy: Buy when it's steady, and then sell when it spikes. Even if you can't time the spikes perfectly, you'll make a lot of money.
So can you do this with the futures? No, because someone has to take the other side of the trade, and they know it might spike, so they'll price that in! It's like buying insurance. You have to pay a "risk premium" to the market ... (read more)
There are other coronavirus types that cause the common cold. If this type of peptide vaccine is effective in protecting against the novel coronavirus, it might work for the older types as well, if made with the appropriate peptides, of course.
I'll answer with some of the "rationalist" ideas I've personally learned and consider important. (I expect that I still have important knowledge gaps compared to other experienced rationalists though. I'm working on it.)
Intelligence is not the same thing as rationality. So much of "Epistemic Rationality" comes down to not lying to yourself. Clever people tell themselves clever lies. The Litany of Tarski is the correct attitude for a rationalist.
Raising the Sanity Waterline is a mini-sequence in its own right, if you read its links. The worldviews taught b... (read more)
started off like 5% of my portfolio. Now it is like 70%.
Is that because your portfolio's crypto ratio inflated that much on its own before you started rebalancing, or did you sell other assets to buy that much more in crypto?
Bitcoin is just a bit over 5% of my portfolio at the moment. I'm using the same dynamic volatility targeting I use for the stock and bond ETFs, but because of its sky-high volatility, that means I have to leverage down. BTC has historically been (mostly) uncorrelated with the stock market, which makes it a powerful portfolio diversifier.
This means that your portfolio's overall volatility can actually be made lower by adding the extremely volatile Bitcoins to the mix, counterintuitive as that may seem, but only by adding them in sufficiently small amounts.
B... (read more)
Benzalkonium chloride is a surfactant, which might help the hypro form a gel layer, and also an antimicrobial agent. I do not know if it would affect viruses.
From previous discussion, BZK appears to effective against the coronavirus
Skimming that link, I think it shows backtesting; have you actually beaten the index yourself with real money?
I am not rich yet. I haven't been doing this long enough for my results to be meaningful. Ask me that again in five years. Or ten.
... (read more)When the hypothesis at hand makes time valuable - when the proposition at hand, conditional on its being true, means there are certain things we should be doing NOW - then you've got to do your best to figure things out with the evidence that we have. — Eliezer Yudkowsky, You're Entitled to Arguments, But Not (That
Don't discount bonds just because they have lower returns. They also have lower volatility. E.g. BND (Vanguard total bond market) has a Sharpe ratio of about 0.81, while VTI (Vangaurd total stock market) has a Sharpe ratio of about 0.56. That makes BND a better investment overall. If you had borrowed money to leverage BND up to the same volatility as VTI, you would have gotten a better return than from VTI alone.
Buying index funds is a much better plan than not buying assets, or using that money to buy liabilities. But I Can Beat the Index, and it's not th... (read more)
"Not even wrong."
"This sentence is a lie."
Box spreads. That's still margin though.
Leveraged ETFs.
Leverage is very important for maximizing returns, but too much is counterproductive. Sometimes even 1x is too much, or even 10x is not enough. The right amount is the Kelly fraction and it depends on the payoff distribution of your strategy, which you can only estimate. This is mostly what I was getting at in How to Lose a Fair Game
They all have a range of distributions but largely they are money-losing (on average). The reasons for this are fairly straightforward. Everyone likes lots of upside, with limited downside, so those bets get bid up and their expected returns fall. Personally I think these are a bad thing to do systematically*.
This is basically what I was trying to say in The Wrong Side of Risk.
Zack_M_Davis isn't the only one.
I've also written Hissp now. I'm curious how they compare for data science work (and other applications).
I've also seen evhub, the author of Coconut, here on LessWrong.