slurp

joined 1 year ago
[–] slurp@programming.dev 10 points 5 days ago

Mull is fine if you use the divestos repo directly, but the f-droid version is behind

[–] slurp@programming.dev 63 points 1 month ago

Masturbation won't do that, you should probably go to a doctor. Also, give a toy a go if it sounds fun!

[–] slurp@programming.dev 3 points 1 month ago

iFixit released a video guide that might help https://youtu.be/pCVBnpyrn3g

[–] slurp@programming.dev 9 points 1 month ago (2 children)

If you or someone you know is handy with a soldering iron, there are replacement hall-effect sensor sticks available now. I am planning on swapping mine out with Gulikit ones because I am very stubborn about giving in to planned obsolescence (I 100% believe this is deliberate on Sony's part).

[–] slurp@programming.dev 4 points 2 months ago

Excited teenagers definitely would. Honestly, I bet anyone that sees the marketing for a game they're excited for and hasnt been burned before in that way is a prime candidate for preordering.

[–] slurp@programming.dev 9 points 2 months ago (3 children)

I agree that it's a bad idea to preorder or pay extra, especially with Ubisoft. However, following that logic they are basically preying on people new to the hobby, which sucks and deserves to be called out.

[–] slurp@programming.dev 3 points 3 months ago (13 children)

You have to install it on a partition. My advice would be to check that the disk is definitely empty (or at least doesnt have anything you want on it), then click the "new partition table" option, which would (I think) reformat the drive and allow you to set up the drive with a more linux-friendly file system than NTFS. From there, you want to select a partition on the drive and install Mint there. You may be able to install it directly on the NTFS partition now but I'm not sure.

[–] slurp@programming.dev 1 points 3 months ago

Ah, thanks for the answer, I'd missed this on the GH page. Unfortunately, that's not what I'm after as I know I will end up with a complete mess of unusable notes or not use it at all if there are any stages of choosing a note type.

Ideally, I want version controlled, editable, searchable, taggable paper I don't have to file away, which I can also type on and use other digital tools with (e.g for things like diagrams, spreadsheets). I haven't seen anything particularly close to what I'm after yet but I'm hopeful that it'll come eventually.

[–] slurp@programming.dev 2 points 3 months ago (2 children)

Is handwriting & drawing support planned?

[–] slurp@programming.dev 15 points 5 months ago (1 children)

I tried PCAPdroid recently and that seemed good

[–] slurp@programming.dev 2 points 5 months ago

Glad I could help! I wasn't sure if I was missing something in what you were trying to do - I get that in some cases folding in those features can make things a lot easier.

[–] slurp@programming.dev 3 points 5 months ago* (last edited 5 months ago) (2 children)

Don't really understand why you're overriding __new__. Surely it'd work better to use:

def __init__(self, source: str | Path, *args: Any) -> None:
        super().__init__(Path(source, *args).expanduser().resolve())

But this removes self.__source and the property. I'm not sure what the advantage of using that is but you could always set that before the line super().__init__(Path(source, *args).expanduser().resolve()).

EDIT: if I've completely misunderstood, please could you explain? I don't really understand what subclassing is trying to achieve here, other than simplifying access to certain os.path functions.

view more: next ›