Viewing profile — Nimelrian
Nimelrian
HN member- Joined
- Fri, Jul 07, 2017, 6:18 AM UTC
- HN karma
- 139
- Public activity
- 41 items
- HN profile
- View on Hacker News ↗
About Nimelrian
No profile information was provided.
Recent public activity
-
comment
Comment #36359624
Can confirm, I ran an edit-delete purge a couple of years ago and now have comments from ~10 years ago visible again, with the original content.
-
comment
Comment #27712069
127 HTTPS requests, each building a new TLS encrypted TCP connection, makes for quite a latency for anyone not living in Japan (aside from the fact that doing 127 independent reque…
- story
-
comment
Comment #24290788
What a hackjob that is.
-
comment
Comment #22533816
Getting stuff to mercury is hard though. IIRC it takes around 16,000 m/s of dV to get from LEO to the surface of mercury. Titan would take even more (19,000) but a huge chunk of it…
-
comment
Comment #20564880
I'm living outside of the US and this is the first time I heard of this. I did not have any intentions to link my release to a recent shooting.
-
comment
Comment #20564435
I didn't create the post here, only the original one on Medium. I can't correct the title over here.
-
comment
Comment #20564290
That would definitely fix the "my small React CRUD SPA relies on 10k package maintainers" issue, but would still leave other issues open. There's actually an active proposal for a …
-
comment
Comment #20564279
You are indeed correct in that assessment. I actually put it into a small footnote in case people reading the post miss the "joke".
-
comment
Comment #20564243
Author here! Yeah, it was just a parody of the articles The Onion regularly releases regarding another topic and to be honest I didn't quite expect my post to take off the way it d…
-
comment
Comment #20419905
The jobs at risk are not only those in the coal industry but also the jobs powered by the coal. You can't run a business without electricity. So if coal makes up about a third of t…
-
comment
Comment #20283904
You inform your national data protection authority: https://edpb.europa.eu/about-edpb/board/members_en
-
comment
Comment #19837488
Not the person you're responding to, but I was on a team which probably did the same thing. Instead of listening directly to the event store for events you have another non-abstrac…
-
comment
Comment #19643551
And today I learned something new. Been a long time since I wrote my last lines of C++ anyway.
-
comment
Comment #19643494
It's much easier to implement in Javascript, too, even though JS has a much smaller standard library. The main problem is Go's lack of generics.
-
comment
Comment #19643435
Yup, you can implement the whole ordeal in C++ like this: int main(int argc, char** argv) { std::vector strings{ "apple", "cAt", "cat", "Dog", "apple", "dog", "Cat", "Apple", "dOg"…
-
comment
Comment #19366113
I recommend reading through this issue [1]. It's amazing how much the JS community is firing against a bigger standard library, just because stuff like lodash exists and everyone c…
-
comment
Comment #19366089
The npm docs also state that the "files" property of the package.json limits what gets installed if you install that package in another project. Ever tried installing a local packa…
-
comment
Comment #19151346
Nowadays you'd use fetch anyway which would reduce that code to not much more than the jQuery samples. That is, if you don't need to support IE (And I feel like we're finally in th…
-
comment
Comment #19143902
Good rust code doesn't have to be free of unsafe blocks. In some cases you can't avoid them, e.g. when doing memory mapping. Instead, the unsafe blocks semantically designate areas…
-
comment
Comment #19112308
Like this? https://nginxconfig.io
-
comment
Comment #18910283
Higher kinded types are currently not supported by the TS compiler and would be a highly appreciated feature.
-
comment
Comment #18910216
The proposal explicitly states that everything in the standard library would not be tied to specific target environments: Such a library would only cover features which would be us…
-
comment
Comment #18910200
Not entirely. For example, a function which takes a property path (in the form of an array of strings) and an object as parameters and returns the value at that path inside the obj…
-
comment
Comment #18845357
Last time I checked, the extraction process for lithium, which is needed for the batteries, still has a heavy impact on the environment. This article mentions a cost of 500,000 gal…