Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
zeroimpl
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
31.
▲
by
zeroimpl
2y ago
I don't think they're going to let you claim a donation to an open source developer as some sort of charitable donation, which means the tax write off would be no different here from any other business expense.
32.
▲
by
zeroimpl
2y ago
But listening on port 80 and revoking the key also won’t help either as the active MitM would have been smart enough to internally proxy to port 443 or return some other fake response. The real point is to break the application during devel
33.
▲
by
zeroimpl
2y ago
In my experience (full stack web development), unit tests are mostly useless and it is the high-level system tests which add real value. Unfortunately it can take a fair amount of work or skill to architect the test suite in the first place
34.
▲
by
zeroimpl
2y ago
While great inventions, neither of those are "scientific achievements" IMO. The silicon transistor on the other hand is a good example of an invention that came directly as a result of science.
35.
▲
by
zeroimpl
2y ago
Doesn’t make much sense to me. If you are going to use a credit card for some payments, why wouldn’t you use it for all?
36.
▲
by
zeroimpl
2y ago
While OR can be performance killers, in other cases it works perfectly fine, or sometimes even better than the equivalent UNION ALL query. In this case the problem is that they are applying a LIMIT with ORDER BY so it can’t do the usual Bit
37.
▲
by
zeroimpl
2y ago
Even if the tracker didn’t alert the thief, how hard is it for a thief to find a tracker on the bike on their own? I don’t think an AirTag is going to save too many bicycles. Seems like the calculus would only make sense when you are talkin
38.
▲
by
zeroimpl
2y ago
But sudo already doesn’t do that either. Eg sudo may ask for a password, and output some control sequences which hide the text so your password is not visible. This feels like much ado about nothing. Edit: Also don’t forget the “with great
39.
▲
by
zeroimpl
2y ago
> Deferred or alternative scenario planning should be adopted, especially for large and expensive queries. As it is today, your plan is finalized before it is executed, even though earlier stages of execution could provide information (l
40.
▲
App developers required to reveal home address to EU customers
(developer.apple.com)
10 points
by
zeroimpl
3y ago
|
1 comments
41.
▲
by
zeroimpl
3y ago
This new requirement from Apple related to the EU's Digital Services Act will display developer's contact information (address and phone number) on app store listings in the EU. It's not clear to me what problem this is solvi
42.
▲
by
zeroimpl
3y ago
This seems so obvious that it’s baffling to me that the article doesn’t discuss this issue.
43.
▲
by
zeroimpl
3y ago
Note the ids appear to be 40-bit numbers, which isn’t great for security in the first place. I’m not sure off hand if there’s an efficient way to test all 2^40 values but seems feasible.
44.
▲
by
zeroimpl
3y ago
There’s several things which break down if you eliminate layer boundaries. Can you still have a layer that is bigger than the image boundary, or would pixels get cropped when they move outside? What happens if you apply a noise filter? Does
45.
▲
by
zeroimpl
3y ago
Makes sense. You mentioned index so I thought maybe you were were querying a table. Would be nice if postgresql could tell you when the flags don’t match. I think anytime you deal with timestamps you can have problems since the expression m
46.
▲
by
zeroimpl
3y ago
An immutable function cannot query a table because the table itself isn’t immutable. If your stable/immutable flags don’t match reality, the function can’t be inlined.
47.
▲
by
zeroimpl
3y ago
The way I deal with this is my history tables have 3 fixed columns: * OperationType: An ENUM of "INSERT", "UPDATE", "DELETE" * OperationTimestamp: TIMESTAMPTZ * OperationId: BIGSERIAL (needed to c
48.
▲
by
zeroimpl
3y ago
While renting does typically cost more than owing, from a purely financial perspective, in practice you can argue that the difference is simply what you are paying the landlord for the services they are providing. The landlord is responsibl
49.
▲
by
zeroimpl
3y ago
Also nobody is asking why it's pointed up, but it's the same reason. Your hand is usually below your eye-level. From a theoretical point of view, the most intuitive cursor would be a crosshair, but I've tried that and don
50.
▲
by
zeroimpl
3y ago
Even if not cleanable, the machine isn't going to actually know if they need to be replaced or not. It will depend on how dirty the air was and how much stuff got filtered out. Normal air purifiers would have a reset option to reset th
51.
▲
by
zeroimpl
3y ago
Yeah I assumed that's what you were doing, since you mentioned Github blocked specifically. If you need to proxy through a protocol other than SSH, likely need to keep using ProxyCommand.
52.
▲
by
zeroimpl
3y ago
Try ProxyJump instead - it’s the newer way of doing it.
53.
▲
by
zeroimpl
3y ago
The part I’m confused on is the documentation saying the returned object from Object.groupBy doesn’t extend from Object.prototype. Is it still an object? The return value of groupBy is an object that does not inherit from %Object.prot
54.
▲
by
zeroimpl
3y ago
Probably gotta define h(x) = f(g(x)) and then invoke h. Or they should build a REPL or Fiddle interface to let you test arbitrary expressions.
55.
▲
by
zeroimpl
3y ago
> Remove leading zeros and convert to a number This is stupid. If a leading zero was input, it was intended to be there and probably isn't a number. Been burned by this many times. > Keep first 15 digits of long numbers and conve
56.
▲
How to fix the disastrous new Xcode 15 console
(lapcatsoftware.com)
52 points
by
zeroimpl
3y ago
|
15 comments
57.
▲
by
zeroimpl
3y ago
It's a matter of defaults, and no choice of default will work for everybody. I agree that "rsync --archive" ought to preserve extended attributes, same with creating a tarball. But when copying a file, as opposed to creating
58.
▲
by
zeroimpl
3y ago
There's an important difference between metadata owned by a file and metadata that a user/program has attached to a file. Metadata onwed by a file ought to be embedded in the file's data, so that it will be preserved if you c
59.
▲
by
zeroimpl
3y ago
The article kind of implies it's Apple's fault, but Google was the well established leader before iPhone launched. Apple did build a Google Maps alternative, but it took a while for it to become good.
60.
▲
by
zeroimpl
3y ago
Surprising to see stuff like this included in a patch release: core: Updated conf/mime.types: - .js moved from 'application/javascript' to 'text/javascript' That’s probably going to break som
More ›