2xsaiko

  • 2 Posts
  • 648 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle



  • I tried to get it to work in Firefox by changing the user agent but it only works if you make the window small enough (???). Even trying to hack patch their stupid redirect away with the userscript below leaves the map empty if you resize above a certain size so there’s probably actually something they’re doing that doesn’t work.

    Userscript
    // ==UserScript==
    // @name        New script apple.com
    // @namespace   Violentmonkey Scripts
    // @match       https://beta.maps.apple.com/*
    // @grant       none
    // @version     1.0
    // @author      -
    // @description 2024-07-25, 15:04:37
    // ==/UserScript==
    
    (() => {
      const realSetTimeout = window.setTimeout;
    
      window.setTimeout = (f, t) => {
        const err = Error();
    
        if (err.stack.includes("mapNodeDidFail")) {
          console.log(f, t, err);
          return;
        }
    
        realSetTimeout(f, t);
      };
    })();
    

    EDIT: this is probably the same issue as the scaling one on the iPhone





  • Seems fine to me except for all the firewall and special routing stuff, I’m not familiar with that. Does the wg command show received or only sent data? For the record, this is my config:

    spoiler
    # /etc/systemd/network/mullvad.netdev
    [NetDev]
    Description=Mullvad
    Kind=wireguard
    Name=mullvad
    
    [WireGuard]
    PrivateKeyFile=/var/keys/mullvad/pk
    
    [WireGuardPeer]
    AllowedIPs=::/0
    AllowedIPs=0.0.0.0/0
    Endpoint=146.70.126.194:51820
    PublicKey=ApOUMLFcpTpj/sDAMub0SvASFdsSWtsy+vvw/nWvEmY=
    
    # /etc/systemd/network/mullvad.network
    [Match]
    Name=mullvad
    
    [Network]
    Address=10.64.130.96/32
    Address=fc00:bbbb:bbbb:bb01::1:825f/128
    
    [Route]
    Destination=::/0
    Metric=16384
    
    [Route]
    Destination=0.0.0.0/0
    Metric=16384
    





  • 2xsaikotoLinux@lemmy.mlSome windows help please
    link
    fedilink
    arrow-up
    2
    ·
    14 days ago

    For 2, has this actually ever happened to anyone in uefi times? Mbr overwrite was the good old times, now we have something at least better

    I assume this is just from people remembering how that happens with MBR boot and just assuming it does the same with EFI.



  • 2xsaikotoLinux@lemmy.mlSome windows help please
    link
    fedilink
    arrow-up
    4
    arrow-down
    2
    ·
    14 days ago
    1. Stop using GRUB, it’s a horrible legacy sprawling mess, most of which you don’t need
    2. Windows doesn’t delete the bootloader with EFI boot, just make sure you have free partition space for it to create the system partition and a large enough EFI partition.





  • Right after Windows 8 got released, I upgraded to it on my 2011 budget laptop. I don’t know what exactly the problem was, I think there was both a problem with there being a high chance of not getting any output on the display after waking up from hibernation, and it also frequently bluescreened when booting. I was playing around with various distros before then but that was when I nuked Windows and switched to it as primary OS.

    (That bluescreen bug on the laptop still wasn’t fixed with Windows 10 when that came out. Lmao)