blashork [she/her]

  • 1 Post
  • 8 Comments
Joined 2 years ago
cake
Cake day: April 8th, 2022

help-circle


  • I have made a python script and ran it on a clone of your git repo to confirm it works, simply run it at the root directory of wherever the files are, it will walk through and find module.json and do the replace.

    #!/usr/bin/env python3
    
    import re
    import os
    
    import fileinput
    
    pattern = re.compile(r'(?P\.+)\"compatibility\":{\"minimum\":\"(?P\\d+)\",\"verified\":\"(?P\\d+)\"},(?P\.+)')
    
    def make11(match):
        if match.groupdict().get('min', None) and match.groupdict().get('ver', None):
            return f"{match.groupdict()['pre']}\"compatibility\":{{\"minimum\":\"11\",\"verified\":\"11\"}},{match.groupdict()['post']}"
    
    for root, dirs, files in os.walk("."):
        for file in files:
            if file == "module.json":
                for line in fileinput.input(f"{root}/{file}", inplace=True):
                    print(re.sub(pattern, make11, line))
    

    edit: lemmy is fucking with the formatting and removing the fucking regex group names, which will bork it. I’ve tried fixing it, dm me if you want me to send a downloadable link to the script




  • Take this with a grain of salt, cause I did a rig upgrade not too long ago, and was accidentally shipped far more drives than I ordered, so my storage space is silly.

    Instead of replacing the drive in your machine, maybe try getting a nas or something. You can store a lot of your files there and keep the drive in your rig for things that need to be fast, like games. Also, I usually base my storage increase purposes based on how much room I need for backups. If there isn’t enough room for me to do a full compressed backup, it’s time to add more. Besides that, I replace the drive with most of the other parts in one large upgrade.




  • blashork [she/her]@hexbear.nettoLinux@lemmy.mlbtrfs appreciation post
    link
    fedilink
    English
    arrow-up
    11
    arrow-down
    2
    ·
    11 months ago

    I’m glad it’ working well for you, but I don’t think it’ true to say that btrfs gets beyond its fair share of flak. It gets the exactly correct amount of flak for what it is. Every place I have worked at that wanted to deploy a COW fs on like, a NAS or server, has always gone with zfs. btrfs is such a mess it never even enters the conversation. Even if it can have its bugs ironed out, the bcache dev was right in pointing out that its on disk formats are poorly designed for their job, and cannot be revised except in a new version of the entire fs. I hope bcachefs gets merged into the kernel next year, that’s a filesystem I would actually trust with my data.