• 0 Posts
  • 114 Comments
Joined 2 years ago
cake
Cake day: July 1st, 2023

help-circle

  • Wireguard doesn’t necessarily need to have those limitations, but it will depend in part how your VPN profile is set up.

    If you configured your wireguard profile to always route all traffic over the VPN then yeah, you won’t be able to access local networks. And maybe that’s what you want, in which case fine :)

    But you can also set the profile to only route traffic that is destined for an address on the target network (I.e your home network) and the rest will route as normal.

    This second type of routing only works properly however when there are no address conflicts between the network you are on (i.e. someone else’s WiFi) and your home network.

    For this reason if you want to do this it’s best to avoid on your own home network the common ranges almost everyone uses as default, i.e. 192.168.0.* and 10.0.0.*

    I reconfigured my home network to 192.168.22.* for that reason. Now I never hit conflicts and VPN can stay on all the time but only traversed when needed :)




  • OP specifically said they don’t want to dual boot, and I honestly understand why they would say that.

    When you dual boot you need to worry about what bootloader is in use and how it is set up. You might find yourself in a situation where you later decide to move fully to Linux and use the old Windows drive as storage but you can’t because if you wipe it then everything stops working.

    Windows has even been known to destroy dual boot setups occasionally during Windows updates.

    All very solveable if you have the right knowledge, but if you want to keep your life simple then swapping hardware has guaranteed safety (nothing can go wrong with the contents if a drive if it’s not plugged in, after all) and it’s very predictable and understandable.






  • I recently swapped my Dad’s Windows computer with my old machine, which I installed Linux on ahead of time.

    I told him it was a faster machine - which it was just slightly in the hardware sense, a very minor upgrade. A half-truth to encourage the transition.

    But of course, it’s running Linux, not Windows.

    Next day he phones me up really happy that it’s “so much faster than the old machine!”

    And it really is a lot faster, but it’s not the hardware. It’s just not getting bogged down with all the crap Windows constantly does in the background.

    Either way, mission accomplished.


  • tiramichu@lemm.ee
    cake
    tolinuxmemes@lemmy.worldand they said Linux lacks software support
    link
    fedilink
    arrow-up
    20
    arrow-down
    2
    ·
    edit-2
    2 months ago

    I did buy a (secondhand) nvidia card specifically for AI worlkloads because yes, I realised that this is what the AI dev community has settled on, and if I try to avoid nvidia I will be making life very hard for myself.

    But that doesn’t change the fact that it still absolutely sucks that nvidia have this dominance in the space, and that it is largely due to what tooling the community has decided to use, rather than any unique hardware capability which nvidia have.





  • This is happening because all platforms are optimising for the one single metric that matters most to them - engagement.

    When you consider all users as a whole, the way to get engagement is not to have a good UX that lets you tailor what you see, and search for the specific things you are interested in. The way to get it is to shove a constantly changing and brightly coloured stream of “content” right in people’s faces where they don’t have to do any thinking or make any decisions, they just mindlessly click what is offered and consume.

    From Netflix’s perspective, they want someone to go from opening the app to watching a video in 10 seconds, and if they don’t achieve that, it’s a failure which they will optimise away.

    The platforms have over the years systematically stripped back every control lever you have over what you see, because control means time spent thinking, and time thinking is not time engaging.


  • I remember reading a story a while back about someone who owned a legit CS version with a proper serial and activation.

    They had to change computer, and in doing so had to reactivate Photoshop, but it wasn’t working. They contacted Adobe support and explained the situation but support basically told him nope, not a chance, we aren’t helping you. You need to subscribe to new Photoshop.

    So Adobe accepted that yes, he bought a perpetual licence for Photoshop and that yes, the reason it isn’t working is the online activation, but they still refused to help.

    Scumbags.





  • tiramichu@lemm.ee
    cake
    toProgrammer Humor@lemmy.mlBest error handler
    link
    fedilink
    arrow-up
    64
    ·
    edit-2
    3 months ago

    Back in my days working as .NET developer on Windows 7, I came into work one morning to find a colleague fuming that his machine had died on him.

    He spent the whole morning reinstalling Windows and getting his environment set back up, and then pulled the branch he was working on, happy to finally be done with setup and get back to work. Ran his test suite and bam, machine crashes!

    It was only at that point the penny dropped. We took a look at his branch, and sure enough he’d accidentally written a test that, when ran, deleted his entire C: drive!

    That particular lesson made me very careful when writing any code that does things with the filesystem.