• 0 Posts
  • 76 Comments
Joined 1 month ago
cake
Cake day: June 5th, 2025

help-circle

  • I think Arch is so popular because its considered a middle of the road distro. Even if not exactly true, Ubuntu is seen as more of a pre-packaged distro. Arch would be more al a carte with what you are actually running. I started with Slackware back in the day when everything was a lot more complicated to get setup, and there was even then this notation that ease of access and customization were separate and you can’t have both. Either the OS controls everything and its easy or you control everything and its hard. To some extent that’s always going to be true, but there’s no reason you can’t or shouldn’t try to strike a balance between the two. I think Arch fits nicely into that space.

    I also wouldn’t use the term “cultists” as much as “aholes”. If you’ve ever been on the Arch forums you know what I’m talking about. There is a certain kind of dickish behavior that occurs there, but it somewhat is understandable. A lot of problems are vaguely posted (several times over) with no backing logs or info to determine anything. Just “Something just happened. Tell me how to fix it?”. And on top of that, those asking for help refuse to read the wiki or participate in the problem solving. They just want an online PC repair shop basically.





  • Almost every laptop I’ve owned in the past 15 years has been this way. Just an old machine people wanted to discard because of viruses or crap performance. They’d give their “junk” to me and go buy a new laptop. After swapping it to linux with a few tweaks here and there, I swear that “junk” would outperform the new one they dropped all the money on.


  • I think the article is pretty accurate about what to expect. The author’s view is grounded in reality. They are a business, but that doesn’t mean “the capitalists are in control”. I would like to think commenters have researched Accel’s prior fundings, but I know that is not likely. In short, they do not attempt to control companies. In 300 fundings, they have never attempted to take a majority stake in any company and do not hold majority stake in any company. They don’t do acquisitions.

    Accel is probably one of the few equity groups that isn’t pure fucking evil. If anyone wants to pick a fight over that, fine, but at least research that company first.





  • The problem here is that it sounds like you think torrenting traffic is using the self-hosted VPN, but that wouldn’t be true. Here is how it sounds like it is currently working: Torrent Client -> VPN interface -> Default interface -> Torrent Users You could probably confirm that with mtr/traceroutes and bmon.

    The reason your internet goes done when you run your iptable statements is because you’re preventing DNS resolution which uses UDP 53 from leaving the device. Even if you are running your own DNS server on that VPS, unless you have trackers’ statically mapped, DNS recursion has to be allowed for your VPS to determine host IPs.






  • These people aren’t involved though. They just signed a petition. That’s near zero effort. The majority of these people think that petition passes = new law. That’s not what the petition does. That’s a main issue I have with all of this (in addition to the other points). The EU committees have previously stated its on the member nations to legislate this, not the EU itself. After the committee on petitions looks at this, the most they can do is refer it to another committee for fact-finding. This is where it has always died for the reason just mentioned. The question I’d have for the people who sign this is: if the EU has stated it is not within their power to legislate this, why do you think after 3-4 asks that they suddenly would now have the power to legislate?


  • You could try something lightweight and easier like sqlite3. You don’t have to have a full blown postgres or mysql server running that way. Just have your .db file and open it with the sqlite3 command. You still would have to learn basic SQL but nothing over the top especially if its only a few columns you’re creating.

    One fun thing you can do technically is store files inside the DB structure as base64 encoded values. So, you might have something like a unique ID, the name of the torrent, then the torrent itself all in one location. If nothing else, something fun to play around with.