blashork

joined 2 years ago
MODERATOR OF
[–] blashork@hexbear.net 2 points 3 months 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.

[–] blashork@hexbear.net 7 points 7 months ago (8 children)

tbh why not jsut set them up with an ssh key that doesn't have an associated passphrase? Besides that, if you don't care about encrypting like you say, then you could replace all calls to ssh with telnet.

At least that's my immediate thoughts.

[–] blashork@hexbear.net 4 points 9 months ago

Jesus fucking christ this is a hell of a project, Ill finish reading when I get home today.

Hats off to you for pulling it off. Why is it that every time I read something by a NixOS person I get the inpressiom that they are very smart but are completely mad.

[–] blashork@hexbear.net 20 points 11 months ago

guaido juan guaido has declared himself the interim president of Florida International U

[–] blashork@hexbear.net 3 points 11 months ago* (last edited 11 months ago)

bcache is inherently designed to be an ssd cache that sits in front of slower bigger disks. Bcachefs is an extension of this into it's own filesystem. iirc the words of the bcache creator were: 'we've implemented 80% of a filesystem here, might as well go the rest of the way'. So how much it thrashes a disk is based on what position you give it in the architecture. The caching ssds are going to be used heavily, taking advantage of their fast random access to manage all random accesses, while sequential operations generally go to the slower disk that's set as the background device. The background disks will tend to be accessed less.

So yeah, it's based on what kind of disk and position in the bcache, and what caching options you enable. If you want to look into it further, bcache is fs agnostic, so if you can find some tests that have been done for bcache enabled for classic linux filesystems, like ext4 and xfs, that include hardware degradation info, you'll probably end up with similar usage and hardware wear with the actual bcachefs.

[–] blashork@hexbear.net 9 points 11 months ago (9 children)

Finally, I've been waiting forever for this. btrfs is a mess and zfs in oracle jail forever. Finally we cna have good COW on linux without stupid hoops.

[–] blashork@hexbear.net 3 points 1 year ago* (last edited 1 year ago)

Hey, big AA fan here, whoever told you 2 was a masterpiece must have been trolling.

I played AAI 1 ob emu, for 2 I watched the prozd press buttons and talk voiced playthrough. WHO'S READY FOR QUERKUS FUCKING ALBA TO DEMAND ANOTHER MIND CHESS SECTION BEFORE THE END BECAUSE YOU HAVEN'T ALREADY DONE 20 OF THESE.

It drags on, a lot of the puzzles are dumb, Kay can honestly get really annoying, the little thief is a worse disregard for the laws of physics than just about anything in the other games (including everything invented by iris and herlock in GAA, and all the spirit shit, and the stuff in dd).

It suffers heavily from the same issue that plagues the rest of the series. Once you figure out what's going on you have to find each specific individual step the game wants before you can say what the scenario is (which tends to become really fucking obvious around the halfway point).

I would never recommend actively playing the AAI entries, that prozd playthrough is the best way to experience them imo.

[–] blashork@hexbear.net 28 points 1 year ago

there's a group called johncena141 who do linux specific repacks. They put the windows game in a dwarfs read only compressed archive, and then have an editable layer on top of it where saves and changes get written. The windows games are put into a wine wrapper and then you can run them while they're still compressed. It's pretty cool, but can be a bit finicky. Getting dwarfs installed can be a pain depending on your system. I find their stuff can be very hit or miss, but I like that they exist.

Besides that, ymmv with all the other repacks. Sometimes fitgirl works fine for me, sometimes it fucks up completely. Same goes for dodi. though I've found dodi to be a bit more reliable on wine than fitgirl.

That's my two cents on stuff.

[–] blashork@hexbear.net 9 points 1 year 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.

[–] blashork@hexbear.net 33 points 1 year 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.

[–] blashork@hexbear.net 5 points 1 year ago* (last edited 1 year ago) (3 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<pre>.+)\"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

 

Meta post I've decided to make. I enjoyed the unixporn subreddit a lot when I used reddit more. I enjoy customizing my linux de as much as the next nerd.

But you definitely shouldn't use racist slang to refer to the process.

To be clear, I didn't know the origin of the term 'ricing' until fairly recently. I was chattimg with my friend and used it to describe my de setup. They informed me that apparently it's from car customization, and is a pejorative against generally asian men who customize their car to look like a racecar.

After learning this I was sad to realize just how engrained it is in linux de customization culture. I personally have stopped using the term, and I would ask everyone here stop as well.

view more: next ›