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

help-circle

  • Congrats - Links Awakening is truly a masterpiece and yes, they really worked hard to get a whole Zelda onto the GB.

    I’ve never played a 3D Zelda before so I am looking forward to OoT

    In case you go the emulation route and don’t use the version on Nintendo Switch Online (or a virtual console version on older Nintendo consoles), you should also take a look at Ship Of Harkinian. They decompiled OoT and ported it to run natively on several platforms. In contrast to other versions, you can play it in wide-screen, with unlocked framerate (instead of 14-20fps of the original) and you can also enable several QoL features (everything optional). You only need to provide a ROM file, but in case you plan to go the emulation route, you’d need that anyways…



  • Windows doesn’t have sudo (not yet, at least) and privileges work a bit different as even as an administrator, you may not have full rights.

    To overcome that obstacle, you’d need to run a shell as an administrator (hold CTRL+Shift, then use the start menu entry or right-click it and select run as administrator).

    Next obstacle: We have a separate drive for each partition, but no root folder.

    If we assume we’re running on a laptop or PC with a single drive and a single partition*, then it’s just

    In cmd.exe:

    del /F /S C:\
    

    In Powershell:

    Remove-Item -Recurse -Force -Path C:\
    

    When you want to delete all (mounted) partitions/drives, you need to iterate over them. (Note that’s from the top of my head, didn’t check the script if it works).

    In cmd.exe:

    REM Not gonna do that, I'm no masochist
    

    In Powershell:

    Get-PSDrive -PSProvider FileSystem | Foreach-Object {
        Remove-Item -Recurse -Force -Path "$($_.Name):\"
    }
    

    Done. Mounting additional partitions before that is left as an exercise for the reader.

    *note that even a standard installation of windows creates 3 partitions. One for the bootloader, one for the recovery system and then the system drive. Only the latter is mounted and will be deleted by this. The other two will still be intact.


  • My newest vps runs with Caddy. Works like a charm. The downside was, that I didn’t think of the automatic certificate deployment when I set everything up and it wouldn’t come up a first when I only wanted to connect locally to it, as it tried to get a certificate but the challenge failed because I hadn’t the firewall open yet. But besides that it was very smooth so far.


  • Amazon Deep Glacier is a lot cheaper for storage (but expensive for retrieval).

    I use Archive Storage in Oracle Cloud S3 for my dr backups which is their equivalent of AWS deep glacier archive. It’s quite cheap, no restore fees, inbound traffic is free and outbound traffic is only paid, when you’re using more than 10TB per month. (Also first 10 GB of S3 storage is free)




  • elvith@feddit.detoSelfhosted@lemmy.worldSelf Hosting Fail
    link
    fedilink
    English
    arrow-up
    3
    ·
    8 months ago

    It’s not the most detailed thing, but I just use a free account on cron-job.org to send a head request every two minutes to a few services that are reachable from the internet (either just their homepage or some ping endpoint in the API) and then used the status page functionality to have a simple second status page on a third party server.

    You can do a bit more on their paid tier, but so far I didn’t need that.

    On the other hand, you could try if a free tier/cheap small vps on one of the many cloud providers is sufficient for an uptime Kuma installation. Just don’t use the same cloud provider as all other of your services run in.


  • No, it’s not „always up“.

    There are three main ways how Google, Bing,… can track you:

    1. When you’re doing a search while being logged in, it’s probably you
    2. If you’re not logged in, they can set a cookie to recognize you on your next visit (although they may not be able to link this to you, your email address,… but that’s not needed). They may mix your searches with those of the other users of your PC, when those are using the same PC, browser and account (e.g. if you have a family PC with a single windows/Linux account that everyone uses)
    3. Even if you’re not logged in and don’t accept / delete your cookies, they still see your IP. Depending on your ISP you might have the same Ip for a long time or you might have it rotated regularly. Now they could only track the searches of your household (assuming everyone isn’t logging in and deleting cookies immediately)

    With Searxng, they can only do the last variant. But assuming you use a “real” server in the internet (and not one at home), it will likely have the same IP for its lifetime. And if you’re using it alone, that’s the only thing they need to identify you and track your searches. The more other people use your instance, the less useful this kind of tracking gets. Too much noise to identify a single person.






  • I don’t mind it with SaaS. Also for enterprise software, you used to pay for the license and then a support package, which basically is a subscription, on top. So there’s nothing changing per se.

    Problem for partners is, that they don’t know whether they’ll stay partners and whether they’ll be accepted in the new program. If not, they cannot provide their SaaS solution to their customers.

    Imagine your company gets a letter from its MSP that basically reads: “Hey, VMWare doesn’t give us information about our way forward, we may be unable to continue to provide you with VMs. This happens to all partners, so no need to ask other MSPs, as those will tell you the same. We currently don’t know how to proceed, but in three months all VMs that you have hosted with us might be toast and the only people who can tell you what to do are at broadcom and don’t give out any information”


  • From what I gathered from news articles it looks like they want more control over how and where you host and will be moving everything to subscription based licenses. So it somewhat makes sense to stop handing out the current licenses and offer new ones. Problem is that it doesn’t seem to be clear which licenses you can get, which conditions apply to those, where and when you can get them,…

    I think it would have been mostly fine if they had allowed for more ti.e to transition and had everything in place for the future. Then add some communication and there might have been a shitstorm, but not the mess that happened now…


  • They canceled the ability to sell new licenses for all partners. For licenses ordered in time but not delivered before this it’s unknown whether you’ll get them. Their license activation portal went offline, so when you bought a license and got it, you couldn’t activate your software. Also they basically “fired” all of their partners and told them that they’re not eligible to offer VMWare hosting anymore unless they’re joining the new partner program and are accepted there. But it is unknown when the new partner program starts and what you hoops you have to jump through to get accepted.

    So… they basically fucked most of their direct and indirect customers and didn’t provide a way forward while doing so. No wonder everyone mistrusts them now and is looking for an alternative




  • Ok, so they’re not targeting “day to day command-line use”, but development in general and want to offer a way to explain error messages, generate code, etc. If done right, and the model is trained in a good way, that might work. All the problems surrounding code gen models and copyright/license issues from the generated code still apply, though.

    Especially the mention of WinDBG support and probably a way to guide you through might be a really nice feature.

    Skimming through the MS blog post, that your link mentiones, I don’t really believe in the hype of “now everyone can be a developer” it offers - I’ve seen that too often with low-code, no-code, RPA,… tools to know that it won’t really scale. There’s more to development than just to generate code…