Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
unilynx
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
unilynx
3mo ago
Elastic/Opensearch uses GET requests with a body for search, which is complicated or forbidden (not exactly sure) with the HTTP spec. Not all HTTP clients are willing to submit a body with a GET. So opensearch also allows you to POST s
2.
▲
by
unilynx
4mo ago
The noise probably makes the lava lamp wall just as effective as pointing the camera at the Mona Lisa - the lamps themselves are not that unpredictable frame-to-frame.
3.
▲
by
unilynx
5mo ago
They were working on it since at least halfway March, because that's when MS got annoyed at AWS & OpenAI negotiating - https://www.datacenterdynamics.com/en/news/microsoft-conside...
4.
▲
by
unilynx
6mo ago
> But I like this review of techniques, even the simplest ones are very effective, that surprised me. because harvesters don't care until one technique gets massive use. if you come up with a unique but simple enough scheme for your
5.
▲
by
unilynx
6mo ago
At least the error goes away immediately, for everyone, once you fix the cert. .net seems to serve DS records with at least 18 hours TTL. so worst case it takes your monitoring up 18 hours to notice your record was broken, and then another
6.
▲
by
unilynx
11mo ago
> but it is not the operational hazard it’s made out to be Until you flip that DNSSEC toggle
7.
▲
by
unilynx
11mo ago
Poll takes a timeout parameter. ‘Not polling’ is just a really long timeout
8.
▲
by
unilynx
11mo ago
Don't forget about Bootcamp for the (soon) obsolete Intels . With a debloated Windows 10 (which we're not going to connect to the internet anyway) they can live on for older games.
9.
▲
by
unilynx
1y ago
I think the 'K-thing' was a big and helpful part of getting early volunteers onboard to build apps for KDE. They really seemed to enjoy rebuilding existing applications into a K-version. So I guess you just have to live with it, b
10.
▲
by
unilynx
1y ago
Except for infinite loops in JS. Firefox still handles those better.
11.
▲
by
unilynx
1y ago
How so? I don't remember ever having seen issues with this. If anything CSP steers you towards this (instead of inline scripts directly assigning to JS variables)
12.
▲
by
unilynx
1y ago
Exactly this. Don't look at the renewal proces, look at its output. It'll work for all certificate sources and catch other potential errors too (eg the webserver reporting success but not presenting the new certificate)
13.
▲
by
unilynx
1y ago
Can't remove a certificate from the revocation lists until it's expired, leading to boundless growth of those lists. Risk of private keys/certificates from old backup media being leaked (remembering the adobe password leak...
14.
▲
by
unilynx
1y ago
They're not an April fool's joke. A 90's linux might have these services enabled by default. I assume they were built to make network debugging slightly less boring
15.
▲
by
unilynx
1y ago
> Also, the prices may become more sustainable if LLM providers find ways to inject ad revenue into their products. I'm sure they've already found ways to do that, injecting relevant ads is just a form of RAG. But they won'
16.
▲
by
unilynx
1y ago
and not having sponsored links back then
17.
▲
by
unilynx
1y ago
Cool solution, but I'd assume/hope Windows currently has sufficient memory protections to not allow applications to rewrite their own memory - especially if the function was already in a DLL to begin with and not JIT-generated cod
18.
▲
by
unilynx
1y ago
People actually do this?? Suddenly having to prefix `this.` in JavaScript to every member bothers me a lot less
19.
▲
by
unilynx
1y ago
> Iframes don’t expand to fit content Actually, that was part of the original plan - https://caniuse.com/iframe-seamless
20.
▲
by
unilynx
1y ago
ugh. these kind of changes should not be made in a minor release..
21.
▲
by
unilynx
1y ago
We did this for a long time for our CMS - although we did simulate a filesystem structure. We also set up a git-like system to store versioning information and set up WebDav to mount it all and allow direct source code editing. It worked pr
22.
▲
by
unilynx
1y ago
Because (accidentally) mailing an unsubscribed user hurts your deliverability. And because there are users out there that will attempt to add spam traps to your mailing lists, sou you keep them off the list (double opt-in doesn't reall
23.
▲
Ask HN: Has anyone adopted or seen adoption of RFC8959 secret-token?
5 points
by
unilynx
1y ago
|
2 comments
24.
▲
by
unilynx
2y ago
Even if they freeze typescript development after the native implementation, given that the current performance was apparently acceptable to the current users, type complexity will just grow to use up the headroom Plus, using TS directly to
25.
▲
by
unilynx
2y ago
ARM already has them. https://developer.arm.com/documentation/ddi0602/2022-03/SIMD...
26.
▲
by
unilynx
2y ago
All taxes are ultimately paid by the consumer, companies just collect them. So German consumers who buy American cars pay their tax to Germany. When a company buys from another company, no net VAT is collected - it’s only collected when a c
27.
▲
by
unilynx
2y ago
> In 2004 you'd be shit outta luck trying to backup a mobile device as most were self contained and didn't interface to pc/mac. True but .. > Also mobile devices back then had limited storage, didn't have cameras,
28.
▲
by
unilynx
2y ago
SEPA is not free - it's just often free for consumers (and likely until your bank considers your usage patterns to be 'too business like') and it can't be free.. even though the systems might have no further marginal cos
29.
▲
by
unilynx
2y ago
'using' fixes having to do cleanup in a finally {} handler, which you can a) forget, and b) often messes up scoping of variables as you need to move them outside the 'try' block.
30.
▲
by
unilynx
2y ago
> navigator.locks.request("my_resource", async (lock) => { This would be so much more readable with `using` { using lock = navigator.lock('my_resource'); await do_something(); await do_something_els
More ›