Reddit Ramps Up Its Threats To Protesting Mods, As Ad Buyers Leave
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearNU
    nulldata
    1y ago 100%

    A few weeks ago I used PDS to edit my comments - using the fork with the 5 second delay. Random pockets of older comments started reappearing after few days. I've been checking all 45 pages of my history every few days and editing the random comments that have reverted from the edited message. It seems like it has mostly stuck now.

    I guessing there's probably some broken code/process somewhere that isn't always able to commit changes and once caches expire the comment returns.

    6
  • Outlook now ignores Windows' Default Browser and opens links in Edge by default
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearNU
    nulldata
    1y ago 100%

    There's a GPO to turn it off, but you'll need to download the latest Office GPO package. Here's a PowerShell script if you're running an RMM tool - it'll need to run as user:

    Function SetRegistryKey($RegistryPath, $Name, $PropertyType, $Value){
        # Create the key if it does not exist
        If (-NOT (Test-Path $RegistryPath)) {
          New-Item -Path $RegistryPath -Force | Out-Null
        }  
        # Now set the value
        New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -PropertyType $PropertyType -Force
    }
    
    SetRegistryKey "HKCU:\Software\Policies\Microsoft\office\16.0\common\links" "BrowserChoice" DWORD "0"
    
    
    4
  • https://support.microsoft.com/en-us/topic/outlook-emails-open-next-to-web-links-in-microsoft-edge-b0e1a1c1-bd62-462c-9ed5-5938b9c649f0

    Apparently also coming soon to Teams to help us "stay engaged in conversations as you browse the web". Thanks so much Microsoft - I always thought it was my social anxiety keeping me from staying engaged in conversations - turns out I was just using the wrong browser!

    9
    2