Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
n_e
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
n_e
2mo ago
It's a mistranslation, the original quote is "Une enquête en recherche des causes de la mort est ouverte afin de déterminer l’origine du décès, aucun élément suspect n’ayant été découvert sur place par les services primo-intervena
2.
▲
by
n_e
2mo ago
> the funniest part of these AI detectors is that if I were to upload any of einstin's paper's they will all be flagged as AI-written. Have you tried doing that or even read the article? The article says that their detector fla
3.
▲
by
n_e
3mo ago
> There is general agreement among participants that he has engaged in off-wiki canvassing and is not here to constructively build the encyclopedia. There is also a significant concern shared by many editors that his actions constitute c
4.
▲
by
n_e
3mo ago
You have web workers, and for shared memory and synchronisation respectively SharedArrayBuffer and the Atomics namespace.
5.
▲
by
n_e
3mo ago
Interestingly, despite the QUERY request being safe, the RFC says it's subject to preflight requests: > A QUERY request from user agents implementing Cross-Origin Resource Sharing (CORS) will require a "preflight" request,
6.
▲
by
n_e
3mo ago
As a user, I like when things appear to sync instantly and perfectly, such as in Google Docs. As a developer, I hated the article and many of the comments I read thus far because: - Having clients and a server properly sync and not lose dat
7.
▲
Universal Paperclips (2017)
(decisionproblem.com)
3 points
by
n_e
3mo ago
|
0 comments
8.
▲
by
n_e
3mo ago
Unfortunately it's not limited to the trendy topics. For example there is a huge amount of factually wrong comments on the topic of npm vulnerabilities. I'm sure it's the same on topics I know less about.
9.
▲
by
n_e
3mo ago
> The app would look up in both databases. If it exists in any, there would be a session. And if you find the session with differing values in both databases, how do you know which one is up-to-date? You need an algorithm to pick which d
10.
▲
by
n_e
3mo ago
Redis is used for plenty of things, not just memory caches. For example if you use it for session storage, you can't have your application read from a random instance that may or may not contain the session.
11.
▲
by
n_e
4mo ago
Yes (assuming they're doing frontend dev and including the resources from the page). The code is fetched and executed from the browser, so It'll have to escape the browser sandbox to do something nefarious.
12.
▲
by
n_e
4mo ago
It works when the phone is in landscape mode. I think the idea is that a site has no use for the status and address bars in portrait mode since the areas are already filled with controls.
13.
▲
by
n_e
4mo ago
> It runs code that Node et al can't run What kind of code can't node run?
14.
▲
by
n_e
4mo ago
The problem with crappy frontend code is not only the maintenance. It's that stuff such as responsive design, accessibility or cross-browser compatibility that work nearly for free with elegant code won't work at all.
15.
▲
by
n_e
4mo ago
> Made me wonder why the packages even need build scripts As the name implies it's for building stuff. Most (all?) packages that use C++ FFI with node-gyp need it. A popular package that needs it is re2. Many newer packages bundle p
16.
▲
by
n_e
4mo ago
The figure is likely wrong. My Mac is currently using 9GB of RAM including 6.5GB of cached files with Safari and a few other apps opened. They likely forgot to subtract the cache from the used memory.
17.
▲
by
n_e
4mo ago
> it used to be that projects that pinned deps were called out as being less secure due to not being able to receive updates without a publish. This is still the right advice for libraries. For security it doesn’t matter a whole lot anym
18.
▲
by
n_e
4mo ago
> Yes, you can lock deps in NPM/Cargo/etc. but that's not the default. It is the default in Go. How is it not the default in npm?
19.
▲
by
n_e
4mo ago
I'm not sure what to make of the graph. On the one hand the acquisition of GitHub may have caused the availability to be worse. On the other hand, the 100.00% availability before the acquisition looks suspicious, wondering if it's
20.
▲
by
n_e
4mo ago
Why not use swarm? On a single node it isn't really more complicated than compose, and you get scaling and rolling deployments.
21.
▲
by
n_e
5mo ago
enums and decorators mainly. There are also subtleties such as having the ts file extension in imports. Also imports aren't transpiled in cjs so you need to need es modules. I'm using it in my projects with no issues.
22.
▲
by
n_e
5mo ago
The reply looks like it was written by an LLM. Not that this excuses anything.
23.
▲
by
n_e
5mo ago
The explanation is at the end of the article: another GoDaddy customer asked for the transfer of a similar-looking domain name, and they transferred the wrong domain.
24.
▲
New text generator built by OpenAI considered too dangerous to release (2019)
(techcrunch.com)
4 points
by
n_e
5mo ago
|
0 comments
25.
▲
by
n_e
5mo ago
> 1.On a system that is handling 10k concurrent requests, the 10GB of RAM is going to be a fraction of what is installed. My example (and the c10k problem) is 10k concurrent connections, not 10k concurrent requests. > 2. It's not
26.
▲
by
n_e
5mo ago
> Why is reserving a megabyte of stack space "expensive"? Because if you use one thread for each of your 10,000 idle sockets you will use 10GB to do nothing. So you'll want to use a better architecture such as a thread poo
27.
▲
by
n_e
5mo ago
I'm not sure what approach you're suggesting? Asking a more junior developer or someone who "show little interest in learning" to discuss their approach with you before they've spent too much time on the problem, es
28.
▲
Why 'Atomic Habits' may not be working for you (2023)
(krishnabharadwaj.info)
2 points
by
n_e
5mo ago
|
0 comments
29.
▲
by
n_e
5mo ago
> Anyone know of a better way to protect yourself than setting a min release age on npm/pnpm/yarn/bun/uv (and anything else that supports it)? With pnpm, you can also use trustPolicy: no-downgrade, which prevents inst
30.
▲
by
n_e
5mo ago
> Why waste a round trip, build time, loss of flow and CI machine queue wait time when you can catch things early? Because we want to be sure that the checks have passed, and that they have passed in a clean environment. Contributors can
More ›