blashork

joined 2 years ago
[–] [email protected] 2 points 2 weeks ago

Lot of people mentioning kde connect. I'm going to take a moment to clarify, kde connevts functionality is modular. you need the sshfs package for it to mount the phones filesystem over ssh. Once you've done that, it works pretty normally.

[–] [email protected] 9 points 10 months ago (1 children)

You know what, I'll bite. I want to see this, genuinely. Please link me the study of innovation you're referencing.

[–] [email protected] 33 points 10 months ago (4 children)

you sound like someone gave chatgpt a prompt about shoving the word innovation into a meaningless set of sentences as many times as possible.

[–] [email protected] 5 points 10 months ago* (last edited 10 months ago) (4 children)

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

[–] [email protected] 11 points 10 months ago (6 children)

I also agree sed and some regex is your best bet

I recommend formatting the regex with regex101.com, I'm down to help you if you post some examples

Additionally there is a cli tool, I think jq or something like that, for processing json on the command line

I have foundry too, let me see if I can find the files that need to be updated

[–] [email protected] 31 points 10 months ago (2 children)

I will not stand for this anti goblin propaganda >:(

[–] [email protected] 2 points 10 months ago

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.

[–] [email protected] 1 points 10 months ago

tbh I always go with env variables, usually $SHELL or $zsh are set

[–] [email protected] 8 points 10 months ago (1 children)

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.