Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
noam_k
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
noam_k
2mo ago
I wouldn't say it's wrong. My preference, however, is creating a fixup commit and using rebase to squash it into the old one. Edit: A sibling comment mentioned "git history fixup" which I'll have to try out.
2.
▲
by
noam_k
5mo ago
Is it really not ELF? The file starts with the \x7FELF magic, but I'm not by my laptop to see what `file btry` outputs.
3.
▲
by
noam_k
7mo ago
You might want to take a look at differential privacy. It takes an unintuitive amount of noise to make the system useless. You also need to account for how "easy" it is to de-anonymize a profile. (Sorry I don't have links to
4.
▲
by
noam_k
8mo ago
I'd like to draw a parallel to carpentry: A carpenter uses tools to shape wood into furniture. Each tool in the toolbox has different uses, but some are more efficient than others. For example, a table saw lets the carpenter cut more q
5.
▲
by
noam_k
9mo ago
https://lcamtuf.substack.com/
6.
▲
by
noam_k
11mo ago
I'm not sure what exactly you're referring to, but one avenue to implement AI is genetic programming, where programs are manipulated to reach a goal. Lisp languages are great for these manipulations, since the AST being manipulate
7.
▲
by
noam_k
11mo ago
That would be cool. I read somewhere that a black hole with the mass of the moon will absorb about as much cosmic radiation as it emits Hawking radiation. This is a fine line between "the black hole disappears before we can examine it&
8.
▲
by
noam_k
1y ago
I'm surprised the article doesn't mention OpenASIP [0], which not only helps you define the architecture, but also provides RTL synthesis and a working (if not always useful) compiler. [0] http://openasip.org/
9.
▲
by
noam_k
1y ago
Can anyone explain why the ID of the div is modified?
10.
▲
by
noam_k
1y ago
I think the issue here is that the server would have to store a copy of the register per peer, as it can't calculate which one is the most recent. Using FHE allows the server to hold a single copy. In other words the server could forwa
11.
▲
by
noam_k
1y ago
This sounds like the "only following orders" argument. _If_ developers _collectively_ were to quit jobs that don't line up with their morals and ethics, we _might_ see a change. I'm not saying this is an easy decision to
12.
▲
by
noam_k
1y ago
You may want to look at Lua[0]. It's often used as an embedded scripting language in larger projects (and games), has good performance, is memory safe, and is extensible in the same manner as Python (write your performance bottleneck i
13.
▲
by
noam_k
1y ago
I happen to be taking a Team Lead course, and forming habits came up yesterday. 21 days weren't mentioned explicitly, the time frame was "a few weeks". We were given 6 criteria when forming a habit: 1. Tangible - you need to
14.
▲
by
noam_k
2y ago
Is this a real issue? SCTP runs over IP, so unless your talking about firewalls and such, the support should be there. Edit: a quick search showed that NAT traversal is an issue (of course!)
15.
▲
by
noam_k
2y ago
But then you can't tell the difference between 0.12 and 0.00012. Unless you're suggesting to use the strings "0" and "00012", at which point you could just use a byte string with the utf8 encoding of the value.
16.
▲
Approaches to Solving SVP in Lattice Cryptography with Quantum Gravity
(eprint.iacr.org)
1 points
by
noam_k
2y ago
|
0 comments
17.
▲
by
noam_k
2y ago
Not a professional mathematician, but you have the benefit of set operations mapping to functions you're familiar with. For example, set union becomes the max function.
18.
▲
by
noam_k
2y ago
I heard this phrase in college and it stuck: "when all you have in your toolbox is a hammer, every problem looks like a nail".
19.
▲
by
noam_k
2y ago
When my daughter is standing, I tell her to sit down. When she slouches in her chair, I tell her to sit up. (I'm American, and curious if British have similar/differing expressions.)
20.
▲
by
noam_k
2y ago
Amazing summary, Jeremy! One nitpick is regarding the double-CRT: you are referring to the RNS encoding, when the original paper[0] uses the term to talk about how polynomials are stored for fast computation. It's a nice philosophical
21.
▲
by
noam_k
2y ago
Good point, but HTML already has a workaround by using strings: <div onClick="func()">...</div> Now, I'm not a JS developer, so my opinion shouldn't count for much, but that looks like a much less usable
22.
▲
by
noam_k
2y ago
This is a somewhat generally accepted theory. (I don't have sources handy, though.) What makes modern matzah hard is the flour/water ratio. When more water is added, the bread is also softer. The issue with soft matzah is that it
23.
▲
A Note on Quantum Algorithms for Lattice Problems
(eprint.iacr.org)
1 points
by
noam_k
2y ago
|
0 comments
24.
▲
by
noam_k
2y ago
Very cool stuff! I haven't done much C development lately, so I'm curious how often `strcpy` and `strcat` are used. Last I checked they're almost as big no-nos as using goto. (Yes, I know goto is often preferred in kernel dev
25.
▲
by
noam_k
3y ago
Well, if we're going to nitpick, light has zero rest mass[0], but does have mass while in motion. This is how solar sails can work, since they use the momentum from the photons. [0] https://en.m.wikipedia.org/wiki/
26.
▲
by
noam_k
3y ago
I can't agree more, and I can't disagree more. There's a great deal to be learned by experimenting yourself. My workflow is: * Learn the concept * Implement it * Research prior art * Throw away my first implementation and rew
27.
▲
by
noam_k
3y ago
I didn't delve too deeply into the code in the post, but no, I wouldn't say that this is example of zero-cost abstractions at all. Zero cost can come in two forms (that come to my mind right now, feel free to comment with more): r
28.
▲
by
noam_k
3y ago
I recommend going through the CryptoPals[0] challenges. I'm halfway and they really beat into you the problems with ECB. [0] https://cryptopals.com/
29.
▲
by
noam_k
3y ago
My preference is 100 characters. I find it usually takes up half the screen, allowing split screen editing (on modern screen sizes). But while on the subject, I can't help bringing up the QEMU coding style[0]: > Some people like to
30.
▲
by
noam_k
3y ago
In addition to the answers already given, there are defects during the process that are more likely to render your chip useless the larger your chip is. This is true for smaller chips as well, and often the design handles a defunct componen
More ›