Skip Navigation

Posts
20
Comments
56
Joined
1 yr. ago

deleted

Jump
  • A yes, a public dns resolver funded by taxpayers money and nothing of it is open source...

    Sounds like a massive waste of money to me. Just give someone like Mullvad (they already have a DNS service that is open source) that money instead of trying to be another shitty DNS Resolver.


    Also the company behind this looks incredibly scummy and their products are mostly buzzword-bullshit. The whole company is based on selling a DNS blocklist for as much money as possible.

    Also: https://www.whalebone.io/aura-for-consumers

    People want to be safe online. They are even willing to pay for it. They just want their telco to offer them a smooth way to get there. Common cybersecurity products struggle with low adoption rates due to the need for downloads. Whalebone Aura requires no installation or updates and activates with a single click.

    That's sounds a lot like the ISP is implementing some kind of deep network inspection "to protect you from the internet"... aka censoring.

  • https://en.wikipedia.org/wiki/List_of_airship_accidents

    Apart from the 80% of the entries that are basically "Crashed during bad weather" - my personal highlights:

    ... breaks loose from its mooring during a storm and is blown over the English Channel; after sightings in Wales and Ireland and a brief touchdown in Belfast, the airship was blown out over the Atlantic Ocean and is never seen again.

    Zeppelin LZ 8 Deutschland II (brand new) is caught by a wind gust while being walked out of its hangar and damaged beyond repair after it smashes on the roof of the hangar.

    ... the airship, weighed down with gold and burgundy paint, reached 600 feet altitude before beginning an unplanned right descending turn, making a "controlled descent" into a garbage dump, impaling the blimp on a pine tree, coming down just a quarter-mile from the site of the Hindenburg's 1937 demise.

    ... suffers an intentional mid-air collision with a radio-controlled airplane.

  • Check that "Filter lists > Privacy > Block outsider intrusion into LAN" is enabled and you should be fine

  • You can already do that:

     
        
    Get-AppxPackage "Microsoft.XboxApp" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxIdentityProvider" | Remove-AppxPackage -ErrorAction SilentlyContinue
    Get-AppxPackage "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxGameOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxGamingOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.Xbox.TCUI" | Remove-AppxPackage
    Set-ItemProperty -Path "HKCU:\Software\Microsoft\GameBar" -Name "AutoGameModeEnabled" -Type DWord -Value 0
    Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -Type DWord -Value 0
    If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR")) {
        New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" | Out-Null
    }
    Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" -Name "AllowGameDVR" -Type DWord -Value 0
    
      

    You're welcome

  • Lemmy is open source, so feel free to go back to Reddit

  • I did this because it looked better this way... and it was totally 100% intentional :D

  • What do you mean? An african or european owl?

  • Permanently Deleted

    Jump
  • That GitHub comment makes my brain hurt and gives me Microsoft community forum advisor (run ChEcKDiSK tO mAYbe fIX tHe ProBLem) and "leave the multi-billion dollar company alone" vibes.

    Also it's not a single line - when looking at the source file - and a complete section instead.

    GitHub Copilot, as used in the documentation here, is free and integrated into the IDE.

    1. It's inside the dotnet Docs. dotnet has nothing to do with an IDE. You can code/run dotnet code in any editor or terminal if you like.
    2. This person assumes that Visual Studio is the only IDE for dotnet. Looks like they never heard of Rider or VS Code or anything else.

    I do not think that you can call it an ad if it is for a free tool.

    WTF is he defining as an ad? "Advertising is the practice and techniques employed to bring attention to a product or service". The whole section is bascially "Hey you can use Copilot to do this" - that's an ad right there.

    Even if you interpret this as encouraging users to pay

    Makes no sense. Does this person think ad = you have to pay for it???

    it is hardly the first time that dotnet documentation guides users towards paid Microsoft products: are we going to start complaining about all pages with references to Azure next?

    1. A deployment target is not the same as "AI"
    2. If a page/section is not named like "How to deploy example app to Azure" then it shouldn't contain any reference to Azure. And yes you should complain about such stuff if it exists.

    The only part of this I actually object to is that I don't think that what essentially amounts to 'prompt an LLM' belongs in documentation, although at the very least the page does disclose that the output may be erroneous.

    That's basically what the whole issue is about. WTF are you even talking about then? Just shut up and give an upvote.

    Overall a totally useless comment.

  • Diese Kommentarsektion ist nun Eigentum der BRD.

  • Not sure if you read this blog post: https://blog.jetbrains.com/pycharm/2025/04/unified-pycharm/

    Rest assured – our commitment to open-source development remains as strong as ever. The Community Edition codebase will stay public on GitHub, and we’ll continue to maintain and update it. We’ll also provide an easy way to build PyCharm from source via GitHub Actions.

    PyCharm is - like all JetBrains IDEs - based on intellij-community and the "Pro" stuff just some fancy pre-installed plugin that requires a license.

    Alternatively, you may choose to manually switch to the new PyCharm immediately and keep using everything you have now for free, plus the support for Jupyter notebooks.

    So all community functionallities will also be available in the unified edition for free.

    Also the Pro license - which you can also get 4 free in like 10 different ways - pricing is extremely fair: A license costs $100-60 for an individual, which is cheaper than most streaming subscriptions...

  • Can't wait for all the other horror stories getting posted here :D

  • IP based blocking is complicated once you are big enough

    It's literally as simple as importing an ipset into iptables and refreshing it from time to time. There is even predefined tools for that.

  • While AI crawlers are a problem I'm also kind of astonished why so many projects don't use tools like ratelimiters or IP-blocklists. These are pretty simple to setup, cause no/very little additional load and don't cause collateral damage for legitimate users that just happend to use a different browser.