Spyke

Replies

me_irl

Comment on

me irl

Society in general encourages and rewards those who speak more, even if the things they speak have zero contribution or are absolute nonsense.

Comment on

I have unlimited cellular data on my phone but not if I use it as a hotspot.

Reply in thread

Not sure if it's still the case today, but back then cellular ISPs could tell you are tethering by looking at the TTL (time to live) value of your packets.

Basically, a packet starts with a TTL of 64 usually. After each hop (e.g. from your phone to the ISP's devices) the TTL is decremented, becoming 63, then 62, and so on. The main purpose of TTL is to prevent packets from lingering in the network forever, by dropping the packet if its TTL reaches zero. Most packets reach their destinations within 20 hops anyway, so a TTL of 64 is plenty enough.

Back to the topic. What happens when the ISP receives a packet with a TTL value less than expected, like 61 instead of 62? It realizes that your packet must have gone through an additional hop, for example when it hopped from your laptop onto your phone, hence the data must be tethered.

Comment on

Just Switch Over

The "quit having fun" meme is ironically becoming as cringey as the thing it is originally complaining about.

You will help the community more by telling non-Linux people why Linux gaming is better, and this meme is doing the exact opposite of it -- "oh Linux can't play some games, yada yada. But we are still better! Switch over!" -- like what's the logic of it?

What's the purpose of this meme other than circlejerking?

Disclamer: I am a Linux user myself, started with Debian and is now using Arch Linux.

I will share some advantages I experienced in Linux gaming:

  1. Alt-tabbing old fullscreened games won't mess with my monitor.

  2. The compatibility of Wine when it comes to some older games is wild. SimCity 4 actually crashed less when I played it on Linux.

  3. Better performance across the board. Granted it's just a mere 5% difference but I will take it, why not.

Comment on

Lemmy needs more donations

ITT: a mighty showcase of the divide-and-conquer strategy by psyops.

Instead of realizing that our goal as an alternative community to Reddit is first and foremost to... well duh, to build a community and keep it thriving, people here are infighting, preferring to subdivide themselves into tankies and non-tankies.

If Lemmy eventually fails and no other project with a similar feature-set can show up in time, we end up killing the existing momentum.

If that happens, all of you shall remember this very moment, and bravo to the psyops people (be it from the government or corporate) because you won yet again.

Donated. Though because I am living in a third world country it's just a measly ~25 dollars.

linux

Comment on

Rust in Linux lead retires rather than deal with more “nontechnical nonsense”

Reply in thread

They very rarely have memory and threading issues

It's always the "rarely" that gets you. A program that doesn't crash is awesome, a program that crashes consistently is easy to debug (and most likely would be caught during development anyway), but a program that crashes only once a week? Wooo boy.

People vastly underestimate the value Rust brings by ensuring the same class of bugs will never happen.

Comment on

Framework 2880 x 1920 (new) display review

Reply in thread

Agreed. HiDPI is the way to go and we should appreciate Framework for putting that in their laptops instead of continuing the use of shitty 1366x768 screens.

Xorg is the reason why OP is facing the scaling issues. OP, try to force the apps to run on native Wayland if they support it but don't default to it. The Wayland page on Arch wiki has instructions on that. Immensely improved my HiDPI experience.

Comment on

*Permanently Deleted*

Reply in thread

Servo was an experimental ground for Mozilla in some ways (like testing out a new CSS engine and porting it back to Gecko if it works). So it's quite normal for people to be unaware of it, it was not meant for the public.

But later on it was abandoned by Mozilla and stuck in a limbo, until it got picked up by the Linux Foundation. Now it's a standalone project and I wish them well. We really need a new FOSS web engine.

Comment on

I have unlimited cellular data on my phone but not if I use it as a hotspot.

Reply in thread

This also explains why VPN is a possible workaround to this issue.

Your VPN will encapsulate any packets that your phone will send out inside a new packet (its contents encrypted), and this new packet is the one actually being sent out to the internet. What TTL does this new packet have? You guessed it, 64. From the ISP's perspective, this packet is no different than any other packets sent directly from your phone.

BUT, not all phones will pass tethered packets to the VPN client -- they directly send those out to the internet. Mine does this! In this case, TTL-based tracking will still work. And some phones seem to have other methods to inform the ISP that the data is tethered, in which case the VPN workaround may possibly fail.

Comment on

JavaScript

This is why I try my damnedest not to write in weakly typed languages.

string + object makes no logical sense, but the language will be like "'no biggie, you probably meant string + string so let's convert the object to string"! And so all hell breaks loose when the language's assumption is wrong.