Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
sika_grr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
sika_grr
6y ago
You mention the wiki page is badly written, and I have the same feeling whenever I read about anything mathematics related on it. But... it's written by volunteers, so I'll take what I can get. Since you obviously have the talent
2.
▲
by
sika_grr
6y ago
wow, just wow unsubscriber: a system of telephone bills and their fees which can be charged only to subscribers "every item is charged with the unsubscriber"
3.
▲
by
sika_grr
7y ago
There is a difference between preventing a program crash and handling errors. Please don't use catch-all-exceptions clause for either, especially not in hospital machines. The difference between writing if (status != SUCCESS) and catch
4.
▲
by
sika_grr
7y ago
I disagree with both points, in fact with every statement you made. Correctness can be achieved without use of exceptions (whether this is easier or harder to do is up for debate). Next, in some cases correctness may be sacrificed for perfo
5.
▲
by
sika_grr
9y ago
> Even if reCAPTCHA was perfect, a hacker could manually validate their usernames of interest by trying to sign up, then automate an attack on the sign in page. Why is imperfect reCAPTCHA worthless? Do sign up pages even allow brute forc
6.
▲
by
sika_grr
9y ago
If this is one of his worst, I must read the rest. You are unsatisfied with an essay that is merely of correct reasoning, can you recommend some even better reading material than this?
7.
▲
by
sika_grr
9y ago
Does nobody on Hacker News watch Silicon Valley? Or are references in comments frowned upon?
8.
▲
by
sika_grr
10y ago
I only see an O(n) algorithm there, there is no O(k). Am I missing something?
9.
▲
by
sika_grr
11y ago
http://www.toothycat.net/~hologram/Turing/HowItWorks.html
10.
▲
by
sika_grr
11y ago
Yea, I guess that also explains why gradients don't look that smooth.
11.
▲
by
sika_grr
11y ago
Can anyone explain the gradient merging example? If we sum an image in which luminosity is linearly rising from left to right with the image in which the luminosity is linearly rising from top to bottom, then the result should have constant
12.
▲
by
sika_grr
11y ago
Of course you need to log some data in textual format for emergencies, but if you had a tool that indexes events on timestamps, servers, monitorees, severity and event type, while severely reducing the storage required, you would be able to
13.
▲
by
sika_grr
12y ago
Nevermind, I managed to squint enough to get the letters to combine into a perfect image. It should not be possible to get more than 1 correct 3D image, the period of the background should be increased.
14.
▲
by
sika_grr
12y ago
Wait, did it get your name right? It's kinda buggy for me, it draws every letter twice for me (twice in 3D, of course it has to draw it twice in 2D).
15.
▲
by
sika_grr
12y ago
Yea, change a certain .h file and you can go get a cup of coffee while waiting for the build to end. This can't ever happen with Java/C#.
16.
▲
by
sika_grr
12y ago
No. For radix sort this constant factor is quite low, so it outperforms std::sort in most cases. Try sorting a million integers, my results are: std::sort: 60 ms; radix-sort (LSB, hand coded, less than 20 lines): 11 ms. It gets even better
17.
▲
by
sika_grr
12y ago
Please note that radix sort is easy to implement to work correctly with doubles, Table 1 is misleading.