Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
zeroimpl
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
271.
▲
by
zeroimpl
6y ago
Don’t your clients need their own connection pools anyways? Eg if the webserver isn’t pooling connections itself, that’s a problem regardless.
272.
▲
by
zeroimpl
6y ago
It’s not like you can’t test your script on another file first. If it works fine on a 1GB file with 300K lines, why wouldn’t it then work on the real file? What would you do when the next time this happens it’s 300B lines from a 1PB file?
273.
▲
by
zeroimpl
6y ago
Interesting, seems pretty similar to an Executive Summary which also would have been very useful here.
274.
▲
by
zeroimpl
6y ago
grift: noun, a petty or small-scale swindle. graft: noun, a shoot or twig inserted into a slit on the trunk or stem of a living plant, from which it receives sap. Edit: Ugh nevermind I found more definitions of graft. Google only showed the
275.
▲
by
zeroimpl
6y ago
Betas being available doesn’t solve the problem because you can’t submit updates compiled using beta versions.
276.
▲
by
zeroimpl
6y ago
The question cleverly prevented that - it said "non-Microsoft browsers"
277.
▲
by
zeroimpl
6y ago
The opening question here pre-supposes he was concerned. Unless the prior discussion had Gates explicitly saying he was concerned (which I assume it didn’t based on Gates asking about a document using the term), then it makes complete sense
278.
▲
by
zeroimpl
6y ago
I've literally never seen somebody catch a SQLException and do nothing with it - you quickly learn that just doesn't work, and it would never pass a code review. With respect to exposing implementation details: If the caller is th
279.
▲
by
zeroimpl
6y ago
quicksort kind of proves that the names don't have to be particularly meaningful, just somewhat descriptive and unique. It's not like mergesort isn't quick.
280.
▲
by
zeroimpl
6y ago
No, but the grocery store can choose to not sell any product which does this.
281.
▲
by
zeroimpl
6y ago
That’s not the same thing at all. I’m saying that you bought the product from a grocery store, and the product itself contains information discouraging you from continuing to buy from the grocery store. In the app case, you bought an IAP fr
282.
▲
by
zeroimpl
6y ago
If I buy a box of cookies from a grocery store for $3, should I expect a note in the box which says I can buy them directly from the manufacturer for only $2?
283.
▲
by
zeroimpl
6y ago
What great features do Android users get as a result of being able to sideload apps which aren’t available on the App Store? I believe the (weak) answer to the above is the answer to your question. Features are what matters to the majority
284.
▲
by
zeroimpl
6y ago
The “legitimate websites” that disrespect privacy and security almost always do that in a way transparent to the user (ignoring the cookie prompts, but I don’t think that’s a fair comparison). For example, news websites could try and access
285.
▲
by
zeroimpl
6y ago
The only websites which would force you are: - legitimate websites using this feature for valid purposes, such as to control devices on your local network - targeted malware attacks trying to hack devices on your local network I’m certain w
286.
▲
by
zeroimpl
6y ago
I routinely operate on machines with gigabytes of memory, but rarely write pipelines which output gigabytes of data, so this has never been a concern for me. But even then, there’s still swap space which is effectively like using a temp fil
287.
▲
by
zeroimpl
6y ago
What on earth are you talking about? My response was based on the OP suggesting the account closure was based purely on the App Store policy violation. I’m pretty sure it’s based on more than that, such as the fact that Epic is suing them i
288.
▲
by
zeroimpl
6y ago
They are also being sued by Epic. Would you keep doing business with a company suing you?
289.
▲
by
zeroimpl
6y ago
Apache is also preinstalled. I use it to host some PHP scripts on my local network. The annoying thing is that every OS upgrade causes all the configuration files to get reset so I need to fix it every time. But it's just small enough
290.
▲
by
zeroimpl
6y ago
The idea of being able to update multiple tables in a single query this way is intriguing to me! But I like the fact that the Postgresql syntax makes it crystal clear which table is being updated.
291.
▲
by
zeroimpl
6y ago
I wonder if they could just make this syntax work in Postgres: UPDATE inventory SET quantity = inventory.quantity - daily.amt FROM (SELECT sum(quantity) AS amt, itemId FROM sales GROUP BY 2) daily USING( itemId );
292.
▲
by
zeroimpl
6y ago
Employees paying might make sense if the employees were paid on some sort of commission basis. Then it’s in the employees personal interest to find ways to make themselves more efficient so as to maximize their own income. But for a salarie
293.
▲
by
zeroimpl
6y ago
I would prefer if businesses didn’t sell products at a loss. It just leads to dumb situations all over the place.
294.
▲
by
zeroimpl
6y ago
I’ve never used Perl but I periodically mistake eq and = in bash scripts. It’s quite annoying since there’s no obvious indication that one is for numbers and one is for strings.
295.
▲
by
zeroimpl
6y ago
> Right now PHP 8 is in feature freeze, meaning no new features can be added anymore. > Starting with new features, remember that PHP 8 is still in active development, so this list will grow over time. Something doesn't seem righ
296.
▲
by
zeroimpl
6y ago
Were the files listed when going to http://server.com ? No, the user had to: 1. Find the server via nmap 2. Guess at some URLs until the server finally responded with some hidden data. While neither of those would require being a
297.
▲
by
zeroimpl
6y ago
It's a fictitious example. I didn't say there was no weapon, nor said it was definitely theft. The point is that submitting a GET request in a public setting does not mean no crime. Coercion can be the difference between asking f
298.
▲
by
zeroimpl
6y ago
That’s a very weak argument. If I’m walking down the street at night and somebody comes up to me and says “GET /money”, I may respond with an HTTP 200, but that doesn’t mean the person didn’t just steal from me.
299.
▲
by
zeroimpl
6y ago
It really depends. If I’m building a Java project, I’m pretty sure I’ve got a deterministic build just by running javac pointed at a source directory. If I want a reproducible build, I probably need to do a lot more: - ensure timestamps of
300.
▲
by
zeroimpl
6y ago
Software can be patched by hackers too, which is why you need hardware solutions for security in some cases. How will your software solution guarantee that the code running is what you think it is?
More ›