Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rp1
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
rp1
5y ago
The article makes no mention of changes to insurance claims.
2.
▲
by
rp1
5y ago
My searches are mostly for esoteric error messages that I tweak a dozen times to get Google to stop returning unrelated results. Then I usually give up, get lunch, and the answer comes to me when I sit back down.
3.
▲
by
rp1
5y ago
True, bandwidth is a concern. It might be possible to copy memory directly from disk to the GPU, which may be more efficient.
4.
▲
by
rp1
5y ago
Ultimately, the developers on Asahi are trying to play catch-up with massive GPU driver teams comprised of dozens of talented engineers. It’s not feasible to catch up, but I’d be happy to be proven wrong.
5.
▲
by
rp1
5y ago
Bitmaps take memory, but are quite efficient from a runtime perspective because they aren’t encoded.
6.
▲
by
rp1
5y ago
You still haven’t given an example of how coordinating the two agencies can lead to a bad outcome. If all that can be done is enforce the law, then there is no issue. You keep implying something extra-legal can be done through the coordinat
7.
▲
by
rp1
5y ago
Having 10 officers beat an individual with clubs doesn’t exactly seem good either…
8.
▲
by
rp1
5y ago
Normally people say that power is being wielded dangerously when the power is used to do something disagreeable. Simply enforcing the law correctly doesn’t seem dangerous to me.
9.
▲
by
rp1
5y ago
This is just a small microcosm of what’s going on in the cable TV world. Many channels are raising their fees, but the cable providers are very reluctant to raise the price charged to end users. Instead, cable providers are opting to drop c
10.
▲
by
rp1
5y ago
This would be more convincing if you had specific reasons, unrelated to the enforcement, that JPM shouldn’t be punished for this.
11.
▲
by
rp1
5y ago
That’s not really an answer to the question. It would be nice if all situations could be de-escalated, but that’s obviously not the case. De-escalation also has its own risks for the officer. Again, not saying I support what happened, but i
12.
▲
by
rp1
5y ago
How else would you subdue someone? You can’t expect all cops to be able to go 1-1 or even 2-1 with someone to subdue them physically. Cops also have guns strapped to their sides that can be reached for. I’m not justifying their behavior, bu
13.
▲
by
rp1
5y ago
Almost none of the reasons have anything to do with releasing the source. You can release the source but still maintain central control. They shouldn’t even have posted this. Obviously they want to make money from their products, and that’s
14.
▲
by
rp1
5y ago
Why are they evil? Or at least more evil than humans? Humans have eradicated wolves almost everywhere due to the danger they pose humans, particularly children. How is this situation different? The monkeys are even targeting the very same
15.
▲
by
rp1
5y ago
I think you’re generalizing way too much. Java is old. The libraries are old. There is a lot of bad old code out there, and very little glory in fixing it.
16.
▲
by
rp1
5y ago
Maybe… but the article had an anecdote of asking Ian Goodfellow for ideas and none of those ideas working. I would assume Ian Goodfellow would have the requisite amount of experience for sufficient intuition.
17.
▲
by
rp1
5y ago
This question was asked last time the author posted this few months ago. I’m surprised they didn’t update the benchmarks. Kind of makes me think Vaex is faster.
18.
▲
by
rp1
5y ago
Mortality is often used when talking about the likelihood of dying.
19.
▲
by
rp1
5y ago
You could write the above easily with a typewriter. The point isn't to use the most primitive method of writing possible. Rather, it's to acknowledge that writing on a computer has a certain set of drawbacks in addition to its ben
20.
▲
by
rp1
5y ago
Your experience rings true to me. It's one of my biggest frustrations with ML at the moment. There are so many ideas I'd like to try, but I know only a small fraction of them will work, and discovering which of the ideas fail and
21.
▲
by
rp1
5y ago
I don’t think this is a good analogy. Cars can get you long distances quickly. Having this ability means you can have suburbs outside of city centers, travel between cities in a day thus necessitating highways, etc. Cars make possible all s
22.
▲
by
rp1
5y ago
I’m not arguing. I was just highlighting that you could easily implement a json library that uses go generate instead of reflection. I was positing that such a library hadn’t been made yet because the perf hit of reflection is fine for most
23.
▲
by
rp1
5y ago
Hackers can easily get anyone’s phone number. Just Google <name> phone number. There are so many data brokers out there happy to sell this information.
24.
▲
by
rp1
5y ago
There is a more serious downside that you don’t mention: splitting things into modules takes time and involves making decisions you likely don’t know the answer to. When starting a new product, the most important thing is to get something u
25.
▲
by
rp1
5y ago
Go could do something similar if you're willing to run `go generate` as part of your build process. For most Go applications, the reflection overhead is a fine price to pay for convenience, just like GC is a fine price to pay for not h
26.
▲
by
rp1
5y ago
This exploit was found within a year of Bloomberg's article being published: https://www.wired.com/story/supermicro-bug-virtual-usb/ Whether or not that was the exploit being referred to by Bloomberg is unkno
27.
▲
by
rp1
5y ago
This exploit was found after the article was published: https://www.wired.com/story/supermicro-bug-virtual-usb/
28.
▲
by
rp1
5y ago
The Go code parsing libraries are quite good though. Not sure what else you could want re. code generation.
29.
▲
by
rp1
5y ago
That does clean stuff up a bit, but still requires nesting if you need to access more than one value generated in the chain at a time. Go's pattern of val, err := ... is a little cleaner in that regard, but does have a lot of redundant
30.
▲
by
rp1
5y ago
I’ve been doing a lot of rust programming recently, but how exactly is the Result monad better? I feel like I end up with nested match statements for chained results, but maybe I’m doing something wrong.
More ›