HN user

kitsuac

81 karma
Posts0
Comments45
View on HN
No posts found.

Why is the US apparently responsibile for this financially in the first place? For the future, will other countries join financially to up our global defenses against future outbreaks?

It sounds like the US took up a global cause on its own and when the clock ran out they didn't renew because that emergency had subsided.

Is this what was being pinned as Trump's "fault" in recent press and social media?

Low level optimization (assembly) is mostly only useful with algorithms which have instruction level parallelism. Modern compilers are incredibly good at optimizing serial algorithms.

Making use of compile time branch reduction can be massive. For example template parameters which are evaluated at compile time skipping lots of work at runtime.

Consider if your trading algorithm simply searched the history for that sliding window of data and then presented the following data as it's "prediction" -- it's utterly useless. This is the function of a compressor rather than a predictor.

Without AGI there are still cases when the lower probability prediction will be better, and will lead to escaping a local minima. I'd argue that the potential benefits of calibrating that axis dynamically exist with or without AGI.

It isn't /fundamentally/ conservative, it is just typically programmed to choose the most conservative (highest probability) predictions. You could integrate a liberal aspect by fuzzing the decision process to choose from lower probability predictions.

More creativity, and ability to escape local minima, but at some cost when dealing with 'typical' cases and when making particularly damaging mispredictions.

[dead] 7 years ago

What's coming through is alive What's holding up is a mirror But what's singing songs is a snake Looking to turn this piss to wine They're both totally void of hate But killing me just the same

Battle Chess 7 years ago

Me too. Loved it so much. Had to try every combination of pieces to see them all

GitLab 12.5 7 years ago

I ran my own personal GitLab EE on EC2 and it cost a fortune per year to use an instance type with enough memory. Then I realized GitLab.com private is... free and unlimited? How is that even possible?

The “Talk” 7 years ago

This was a very effective way to describe it, I've read a great deal about QM and you made it click much better.

Yea, I never knew these news diffing sites existed. Looks like "Wiretapped" was indeed removed at some point in time, which seems to contradict the description given in the redaction/apology article. But this tool doesn't give any insight as to when that change occurred since its final snapshot was only a day after the original article was posted.

Yes as usual everything the world is built on top of is totally wrong. POSIX, C++, any conservative principle, any majority race or sexuality etc.

It's easy to criticize everything endlessly, much more challenging to make things better without tossing out the babies with the bathwater.

You are still introducing a conditional by detecting the need to subtract, and iterating backward through memory is horrific for cache performance. If you need a specific, non power-of-2 sized buffer, then of course you make that design decision and pay the performance penalty. But I restate it's odd that you weren't even aware of the cost in 1992 as a system level programmer.