CosmicGiraffe

joined 1 year ago
[–] CosmicGiraffe@lemmy.world 2 points 2 weeks ago (1 children)

The upside of IANA doing it would be a standardised place for sites to move to. Without coordination, different sites would move to different TLDs, probably mostly based on what isn't already registered. IANA could create a new TLD for this and give existing whatever.io owners a chance to register whatever.iox before its generally available

[–] CosmicGiraffe@lemmy.world 4 points 1 month ago

It's marked solved, but since OP didn't post the solution:

-e uses basic regular expressions, where you need to escape the meta-characters ((|)) with a backslash. Alternatively, use extended regex with -E

$ echo a | grep -E "(a|b)"
a
$ echo a | grep -e "\(a\|b\)"
a
$ echo a | grep -e "(a|b)"
$ echo a | grep -E "\(a\|b\)"
[–] CosmicGiraffe@lemmy.world 0 points 3 months ago (1 children)

The xz compromise having demonstrated that FOSS projects are totally immune to interference from state actors...

[–] CosmicGiraffe@lemmy.world 3 points 5 months ago (2 children)

They pay Microsoft for access to the bing index

[–] CosmicGiraffe@lemmy.world 2 points 5 months ago (1 children)

The x390/x280 are the same era as these but smaller, so might be a better fit here. The X390 has soldered RAM though, so I'd look for the 16GB version if you can find it (there's not much of a price difference used)

[–] CosmicGiraffe@lemmy.world 1 points 11 months ago

I've always got them from eBay.

The T and X series are the high-end ones. Between those it mostly depends on what size of laptop you're looking for. Its worth checking a guide for how you replace the SSD/RAM/battery - some of the newer ones have these soldered in place, which means you're stuck with whatever it originally came with.

Personally, I think the sweet spot is around 4 years old. By that point they're pretty cheap (maybe 10% of the original RRP), and going for older ones doesn't save you much more money. I recently got an X390 and it's doing everything I need from a laptop

[–] CosmicGiraffe@lemmy.world 4 points 11 months ago

DNS = Domain Name System. This is used to lookup an IP address (e.g. 123.234.54.32) from a domain name (e.g. lemmy.ml). A DNS query is one of the first things your computer does when you visit a site.

Plain DNS is unencrypted, which means that anyone with the ability to read your requests (e.g. your ISP) can see the names of sites that you're visiting.

TLS = Transport Layer Security. This is a protocol that's used to create an encrypted connection between your device and another one, in this case the DNS server. When this is used, the content of your DNS requests is hidden. Your ISP can still see that you're talking to the DNS server, but not what you're saying to it.

TLS also allows your device to cryptographically verify the identity of the DNS server. Without it, someone with the ability to modify your connection could change the responses from the DNS server. That would allow them to send you back the IP address of a server they control, rather than the real servers IP.