Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
lopsidedBrain
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
35 ms
·
1.
▲
by
lopsidedBrain
6y ago
Yes. x86 processors translate instructions to internal micro opcodes before scheduling or running them. Those look nothing like the x86 instructions.
2.
▲
Ask HN: How automated is exploit-generation these days?
1 points
by
lopsidedBrain
6y ago
|
1 comments
3.
▲
by
lopsidedBrain
6y ago
It is partly historical notoriety. It allows one to prove certain statements that seem counter-intuitive. So proofs that employ it can often be viewed with some skepticism. Moreover, this axiom is _independent_ of the other axioms in ZFC. I
4.
▲
by
lopsidedBrain
6y ago
One of my highest-cited papers didn't pass peer-review. But that's okay. The citations (of the pre-print version) speak for themselves. If papers like these are good enough that new students entering the field use it as a ramp-up
5.
▲
by
lopsidedBrain
6y ago
I couldn't actually figure out how to opt out of third-party tracking. They say I have to visit my wireless account, but not sure where to from there.
6.
▲
by
lopsidedBrain
6y ago
Huh, for some reason I had just assumed that it must be open based on the buzz around it. Cool.
7.
▲
by
lopsidedBrain
6y ago
For the uninitiated, WTH does semi-public mean? Did GPT-3 only provide an API but not the model?
8.
▲
by
lopsidedBrain
6y ago
Hmm. You're right, not if we are restricting ourselves to rectangles. But if we make A u-shaped, with B nestled in it, we'll be in business!
9.
▲
by
lopsidedBrain
6y ago
If they have customers who need that kind of database, I'm sure they will be willing to help out with the testing. The setup doesn't have to be too crazy. Storage appliances with 20-30 hard drives are fairly common, actually. Even
10.
▲
by
lopsidedBrain
6y ago
https://sqlite.org/limits.html > SQLite was originally designed with a policy of avoiding arbitrary limits. [...] Unfortunately, the no-limits policy has been shown to create problems. Because the upper bounds were not w
11.
▲
by
lopsidedBrain
6y ago
It does, in that it's much easier for me sign up with a throwaway username. It's also part of the reason HN doesn't require these SSO integrations.
12.
▲
by
lopsidedBrain
6y ago
The material nature of hardware is barely any higher than that of software. Yes, you cannot just copy bits around, but you can take the same design and fabricate millions of chips for pennies. The cost of production for any given chip of Si
13.
▲
by
lopsidedBrain
6y ago
To an extent. I'm actually curious about its angular resolution.
14.
▲
by
lopsidedBrain
6y ago
I haven't looked at your past blogs, but it certainly sounds like you are making perfection the enemy of good. Your blogs don't have to be perfect, it just needs to be better than the current state, while not causing unanticipated
15.
▲
by
lopsidedBrain
6y ago
People generally expect equality to produce either true or false. Not a tri-value pair. That interpretation makes sense to me when I read the docs, but is way too easy to miss when I'm actually doing comparisons.
16.
▲
by
lopsidedBrain
6y ago
The comparison is fair because it tries to automate expertise. I'm sure you know exactly how much of which filter to apply for similar results. Laymen like ourselves will need a lot more trial and error. Their contribution here is to p
17.
▲
by
lopsidedBrain
6y ago
I work in exactly two modes of `gcc` usage. I either accept `./a.out` as the name I deserve, or I write a `CMakeLists.txt`. There nothing in between.
18.
▲
by
lopsidedBrain
6y ago
My trick has always been to rely on tab auto-completion. mv foo-<tab> mv foo-bar-baz foo-<tab> mv foo-bar-baz foo-bar-baz Now I can edit the second part pretty quickly. Downside: you have to at least type `foo-`
19.
▲
by
lopsidedBrain
6y ago
> Why is storage necessary? Have you ever tried wiring any non-trivial logic without flip-flops? Say, a simple signal routing layer. Even the most basic bits of logic becomes much less efficient to downright impossible without storage.
20.
▲
Diamond samples in Canada reveal size of lost continent
(bbc.com)
1 points
by
lopsidedBrain
6y ago
|
0 comments
21.
▲
by
lopsidedBrain
7y ago
That is sounds more appropriate for either terminating the program or resumable exceptions like division by zero. In languages with a try-catch construct (specially C++), the complexity of implementing exceptions has to do with stack unwin
22.
▲
by
lopsidedBrain
7y ago
http://maxima.sourceforge.net/ is closer to Mathematica, and is open source.
23.
▲
by
lopsidedBrain
7y ago
Pretty much every successful open source project that people pay attention to is one that has had long-term support behind it. Linux, Mozilla, gcc, clang, git. Almost always, that support begins with the original author. Protects that don&#
24.
▲
by
lopsidedBrain
7y ago
Press release: http://www.academyofathens.gr/en/announcements/press-release...
25.
▲
by
lopsidedBrain
7y ago
I can't speak for the toolchain maintainers. But with appropriate flags to force or skip those passes, yes I can see something like this being merged in.
26.
▲
by
lopsidedBrain
7y ago
GCC does this too fwiw. Whether or not it is considered a bug, it doesn't have one particular root cause. Several common optimization passes assume small function body. Since functions are typically small, many optimizations use this a
27.
▲
by
lopsidedBrain
7y ago
TL;DR: Don't autogenerate a large monolithic function. Generate many small functions instead.
28.
▲
by
lopsidedBrain
7y ago
The paper: https://arxiv.org/abs/2001.04383
29.
▲
by
lopsidedBrain
7y ago
I didn't read the book yet, but I'll take a crack with a couple of examples: Unix file systems, and its philosophy of "everything is a file". It wasn't common before Unix to interact with devices through a filesyste
30.
▲
by
lopsidedBrain
7y ago
The part you quoted does not talk about buggy code. Bugs will always exist, the idea is to prepare for them. Migrate systems incrementally, run versions in parallel, have tested rollback strategies at every step, so on and so forth. Not cut
More ›