HackerTrans
TopNewTrendsCommentsPastAskShowJobs

XelNika

no profile record

comments

XelNika
·28일 전·discuss
As I understand it, this second complaint is not against the original company, but against the government authority that handled his case.
XelNika
·9개월 전·discuss
> production 1.7GHz quad-core Intel Core i7-based 13-inch MacBook Pro systems with Intel Iris Plus Graphics 645, 16GB of RAM, and 2TB SSD

https://www.apple.com/macbook-pro/#footnote-4

So yes, that is compared to a very old 14 nm design, presumably the i7-8557U per Wikipedia.
XelNika
·3년 전·discuss
They have price limits, but I think GP means volume alert limits. Someone unexpectedly bids a third of the Finnish production capacity, you call them and ask if they are sure.
XelNika
·3년 전·discuss
There are many market participants, some of whom start trading on this information immediately. The Finnish grid is connected to the rest of Europe so a market participant could in principle flow this cheap energy from Finland all the way to Spain if the cables had capacity. I would guess it was too late the moment it happened.
XelNika
·3년 전·discuss
You don't even need to worry about what someone can physically provide. All bids by market participants can (arguably should) be checked for extreme outliers. A bid of multiple GW from a participant that usually only trades hundreds of MW should immediately set off alarms. It only takes a phone call like "hey, are you sure about this?"
XelNika
·4년 전·discuss
With Zig and Rust you have to explicitly opt-out with `ReleaseFast` and `unsafe` respectively, that makes a big difference. Rust has the added safety that you cannot (to my knowledge at least) gain performance by opting out with a flag at compile-time, it has to be done with optimized `unsafe` blocks directly in the code.

Lazy C++ is unsafe, lazy Zig is safe-ish, lazy Rust is safe. Given how lazy most programmers are, I consider that a strong argument against C++.
XelNika
·4년 전·discuss
> Performance topped out at 111 MiB/s (931 Mbps), which is suspiciously close to 1 Gbps.

That's because of overhead in TCP over IPv4. You're testing the payload throughput, not the physical throughput. The theoretical maximum performance without jumbo frames is around 95%.

https://en.wikipedia.org/wiki/Jumbo_frame#Bandwidth_efficien...
XelNika
·4년 전·discuss
Moore's law is about transistor density, not single-core performance. Even if a new generation of chips obeys the "law", there is no requirement that the designers dedicate the improvement to single-core performance. Alternatives include multi-core performance and miniaturisation.
XelNika
·4년 전·discuss
Intel Alder Lake delivered around a 15% improvement to single-core performance gen-on-gen so it's just you.
XelNika
·5년 전·discuss
That is fair, I suppose, but why use a different DNS server than the default for your home network? I still think there's something fundamentally wrong with a DNS configuration that breaks Windows connectivity tests.

I do hope you're using something encrypted. Plain DNS can be redirected and manipulated quite trivially.
XelNika
·5년 전·discuss
Yes, it's not good.

> That way any other people on his network wouldn’t have a problem, either.

Given that he's setting DNS servers statically on his own clients and has working DNS resolution on the DHCP-provided DNS server(s), that shouldn't really be an issue for other people.
XelNika
·5년 전·discuss
While the project is super interesting, this seems like network horror to me. Not only is something "wrong" with the network (guessing dns.msftncsi.com is blackholed), the author is setting DNS servers statically on his clients instead of using DHCP. If I'm right that the domain is simply blocked, I think it counts as yet another horror that the author did not realise that before buying a replacement WiFi card. It pains me that the blog post never explains the root cause of the issue nor whether it was intentional.
XelNika
·5년 전·discuss
Yes, it says so in footnote 1 in the article. It's also not the benchmarked code so it doesn't really matter.
XelNika
·5년 전·discuss
I believe this is the reply in question:

https://twitter.com/colinmbrandt/status/1409577979731058699

See for example: https://hbr.org/2014/08/why-women-dont-apply-for-jobs-unless...
XelNika
·5년 전·discuss
File access should, by its very nature, be asynchronous. If you're only introducing asynchronicity to support Flatpak portals, the original code was flawed.

You could also argue the reverse: if synchronous file access was good enough before, there should be no real reason not to use Flatpak portals synchronously as well.
XelNika
·5년 전·discuss
A lot of ISP routers have the option to disable everything except the modem, often called "bridge mode". Avoids double NAT.
XelNika
·5년 전·discuss
As a human-readable configuration language, YAML probably beats JSON and XML, but the implicit typing rules in the spec make it horrible to work with. I've written a lot of YAML for Ansible and it has some awful footguns.
XelNika
·5년 전·discuss
But if you write defensively, like the post suggests, you won't be surprised by bad library writers.
XelNika
·5년 전·discuss
That much is obvious. The blog post has an example of something that appears to be non-breaking (at least it would be in many other languages), but actually does break things. Both the library creator and user messed up in the example given, but if you're not intimately familiar with the language, both mistakes seem reasonable.
XelNika
·6년 전·discuss
That is not a realistic scenario. Firstly, there's no waking up to find your server is unresponsive. It's part of the deal when you sign up. Secondly, public IPs are always an option. Thirdly, the ISPs I have used have always had relevant FAQ/help articles.

If any of those points do not apply to your ISP, that's not because of CGNAT, it's just a shit company. I've used four different ISPs in the past four years and getting rid of CGNAT has not been a problem once. IIRC only one of them used public addresses by default, two offered free dynamic IPs upon request and my current ISP offers paid static IPs for $3.

Tons of my friends and family have had CGNAT and never known. It's just not a big deal for most content consumers.