HN user

CookiesOnMyDesk

41 karma
Posts0
Comments21
View on HN
No posts found.

It’s covered in the article

It means the decline you would normally expect in one year would take four years after treatment, giving patients decades of "good quality life", Prof Sarah Tabrizi told BBC News.

The first symptoms of Huntington's disease tend to appear in your 30s or 40s and is normally fatal within two decades – opening the possibility that earlier treatment could prevent symptoms from ever emerging.

Something like this, depending on how you want your input and output to be supplied.

    public async IAsyncEnumerable<HttpResponseMessage> SendTwelveRequestsAtATimeAsync(IAsyncEnumerable<HttpRequestMessage> requests)
    {
        HttpClient client = new();
        List<HttpRequestMessage> requestsBatch = [];

        await foreach (var req in requests)
        {
            if (requestsBatch.Count < 12)
            {
                requestsBatch.Add(req);
            }
            else
            {
                foreach (var res in await Task.WhenAll(requestsBatch.Select(client.SendAsync)))
                {
                    yield return res;
                }

                requestsBatch = [];
            }
        }
    }

He means that the price of the bonds backing the mortgage fall. Since the bonds are fixed interest, when interest rates rise, new bonds at a higher interest rate are more profitable than the old bonds at a lower interest rate. As such the free market price of the old bonds will drop to until the selling-at-a-loss reaches an equilibrium with the expected increased profit from higher interest rates of the new bonds over the lifetime of the bond.

This lets the loan taker buy back their own bonds for less than what they were paid (the loaned amount) when the bonds were issued.

Discord uses 0% CPU (4770k) and 85mb ram on my pc currently, while being in an active call. What would it take for it to no longer be "too bloated" to have idling in the background?

Do you use a well named function like and(), or do you use the double ampersand (&&) syntax trick? What about a not() function, or the exclamation mark syntax trick (!)? :)

Every use of operators can be considered a syntax trick until it becomes common, which is what the author hopes will happen to ~~

Every time I start “New Teams,” it asks me if I want to go back to Old Teams

Are you sure you’re not accidentally opening the old Teams application? When you update to new Teams it leaves the old version in place so you have both, and if you open Teams with the new shortcut/application you won’t get prompted to switch back.

The risk from pregnancy is way higher than the risk from covid. You'd accept a 5% risk to avoid a 10% risk, but you wouldn't accept a .5% risk to avoid a .001% risk. From the vaccine blood clot data it looks like ~.07 thousands of a percent die from blood clots, while for young people the risk of death from covid is around ~.7 thousands of a percent. Thus if a) the blood clots are caused by the AZ vaccine, and b) the risk of getting covid as an individual is <10%, taking the AZ vaccine carries a higher risk of death than not taking it does.