Viewing profile — n_e
n_e
HN member- Joined
- Sat, Feb 23, 2013, 4:41 PM UTC
- HN karma
- 503
- Public activity
- 115 items
- HN profile
- View on Hacker News ↗
About n_e
Site: https://www.even.li/
Recent public activity
-
comment
Comment #49097406
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é…
-
comment
Comment #48982297
> 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 ar…
-
comment
Comment #48644514
> 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 con…
-
comment
Comment #48612031
You have web workers, and for shared memory and synchronisation respectively SharedArrayBuffer and the Atomics namespace.
-
comment
Comment #48569474
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 …
-
comment
Comment #48438379
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: …
- story
-
comment
Comment #48424884
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 t…
-
comment
Comment #48415420
> 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…
-
comment
Comment #48411401
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 m…
-
comment
Comment #48357714
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 …
-
comment
Comment #48353322
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 co…
-
comment
Comment #48241494
> It runs code that Node et al can't run What kind of code can't node run?
-
comment
Comment #48236327
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…
-
comment
Comment #48192143
> 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 packag…
-
comment
Comment #48133903
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 f…
-
comment
Comment #48101855
> 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 l…
-
comment
Comment #48101801
> 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?
-
comment
Comment #48085703
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 t…
-
comment
Comment #48027699
Why not use swarm? On a single node it isn't really more complicated than compose, and you get scaling and rolling deployments.
-
comment
Comment #48014195
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 us…
-
comment
Comment #47953013
The reply looks like it was written by an LLM. Not that this excuses anything.
-
comment
Comment #47913157
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.
- story
-
comment
Comment #47905603
> 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 connec…