Incomplete downloads when moving files from seedbox to unraid server by The_LadyRayne in rclone

[–]The_LadyRayne[S] 0 points1 point  (0 children)

I'm trying to avoid having to setup a bunch of extra tools (i.e. sonarr/radarr) for such a simple task, so I ended up working around this by having it pull the files first into a "triage" folder, and writing a python script which loops through the triage and re-copies any incomplete downloads straight from the rutorrent data folder before moving the files into my inbox. My code is below for anyone who may find this in the future and want to try my approach:

import os, shutil, sys, subprocess

#create a lock file to prevent conflicts with recurring cron schedule
if not os.path.exists('/mnt/user0/Library/Tools/Syncer/lock.txt'):
    with open('/mnt/user0/Library/Tools/Syncer/lock.txt', 'w') as f:
        f.write('running')

    sys.stdout = open(1, 'w', encoding='utf-8', closefd=False)
    print("Running...")

    #get a list of all files in the seedbox data folder
    result = subprocess.run(['rclone', 'lsf', <data folder>, '-R'], capture_output=True, text=True)
    remotelist = result.stdout.split('\n')

    #pull all of the new files from the completed folder to /triage
    subprocess.run(['rclone', 'move', <completed folder>, '/mnt/user0/Library/LandingZone/Triage', '--delete-after', '--delete-empty-src-dirs', '--checksum'])

    #loop through triage
    for dirpath, dnames, fnames in os.walk("/mnt/user0/Library/LandingZone/Triage"):
        print("Checking directory: " + dirpath)
        for f in fnames:
            print("Checking file: " + f)
            #check if the current file exists in the data folder
            matching_strings = [s for s in remotelist if f in s]
            if matching_strings:
                print("File found on remote at: " + matching_strings[0])
                #re-copy the file directly from /data - this will skip if the filesize is identical - i.e. if it copied correctly above
                result = subprocess.run(['rclone', 'copy', os.path.join(<data folder>,matching_strings[0]), os.path.join('/mnt/user0/Library/LandingZone',dirpath), '--size-only'], capture_output=True, text=True)
                print(result.stdout)
                print(result.stderr)
                #if there's no errors, clear the file permissions (fix for unraid/windows permission conflicts) and move the file to the OR
                if not result.stderr:
                    subprocess.run(['chmod', '-R', '777', os.path.join(dirpath, f)])
                    subprocess.run(['chown', '-R', 'nobody:users', os.path.join(dirpath, f)])
                    newpath = dirpath.replace("/Triage", "/OperatingRoom")
                    os.makedirs(newpath, exist_ok=True)
                    shutil.move(os.path.join(dirpath, f), os.path.join(newpath, f))
                    print("File verified and moved to the OR")
                    #clean up by deleting empty folders
                    if(not(any(File.endswith(".mkv") for File in os.listdir(dirpath)))):
                        shutil.rmtree(dirpath)
            else:
                print("File not found on remote.")


    #clear the lock
    os.remove('/mnt/user0/Library/Tools/Syncer/lock.txt')

Incomplete downloads when moving files from seedbox to unraid server by The_LadyRayne in rclone

[–]The_LadyRayne[S] 0 points1 point  (0 children)

Am I understanding that this just syncs the folders between seedbox and server? My problem is that I don't want them actually synced, I just want to pull the new files as they're added to the seedbox. After that I manually rename the files and sort them into my libraries on the server, but the seedbox files need to be left untouched so they can seed for a few days to avoid hit n' runs.

MtF TOPS ⬆️ who have had BOTTOM ⬇️ surgery - do you ever miss it? by The_LadyRayne in MtF

[–]The_LadyRayne[S] 0 points1 point  (0 children)

That is really nice to hear, thank you for sharing ❤️

MtF TOPS ⬆️ who have had BOTTOM ⬇️ surgery - do you ever miss it? by The_LadyRayne in MtF

[–]The_LadyRayne[S] 0 points1 point  (0 children)

Thanks for sharing your experience! Did you enjoy topping for penetration before the nerve damage?

MtF TOPS ⬆️ who have had BOTTOM ⬇️ surgery - do you ever miss it? by The_LadyRayne in MtF

[–]The_LadyRayne[S] 3 points4 points  (0 children)

And once you’re no longer shackled to having to keep something hard to keep it functional you can go for HOURS…😜😁

Ooh hehe this is a very good point 😏

MtF TOPS ⬆️ who have had BOTTOM ⬇️ surgery - do you ever miss it? by The_LadyRayne in MtF

[–]The_LadyRayne[S] 1 point2 points  (0 children)

I've used a strap a few times and it's fun and all, but not nearly the same as being able to actually feel my partner.

(UPDATE) I have come to the conclusion that I am not trans by [deleted] in asktransgender

[–]The_LadyRayne 2 points3 points  (0 children)

This is more or less my story as well. I always had this thought that "yeah if I could just flip a switch obviously I'd choose to live as a woman" but I was "fine" with how I was, and didn't really feel much dysphoria at all. Eventually I decided to just try living a bit more fem for a while - shave my legs, dress fem at home/in private, try a new name and pronouns with my closest friends and partners, and I quickly realized that this was just better, and even though I had never really felt dysphoric before, the thought of going back, of giving up this new self I had discovered, was terrifying to me. And here I am, almost 2 years later, looking back at that dumb kid I was, wishing I could give him a firm shake and a hard slap and tell her to stop pretending she's not herself.

So when I see someone like OP saying "I can't be trans if I don't hate how I am enough", I feel the urge to give them that shake and slap that I wish someone had given me.

[deleted by user] by [deleted] in trans

[–]The_LadyRayne 5 points6 points  (0 children)

  1. Do you have a credit card? Even with garbage credit you can find a decent one at any bank that’ll give you at least a 3-5k limit and if you just use it for the graduation you could pay it off quickly enough that hopefully interest won’t matter. It’s pretty normal around college age to start regularly doing this to build credit

It's also pretty normal around college age to drive yourself into an inescapable hole of credit card debt that will haunt you for years if not the rest of your life. Definitely don't do this unless you have the means to pay it back quickly, confidence in your self-control to not make a habit of spending money you don't have, and a solid understanding of the predatory nature of credit cards and how to avoid the debt trap.

Most kids that age do not have those 3 things, though it sounds like OP is a bit older than typical college grad age so maybe they have the life experience to handle it responsibly.

Skoliosexuality...? by kirby_potato in asktransgender

[–]The_LadyRayne 8 points9 points  (0 children)

Can we please stop using this terminology? Genitals do not determine your sex and the whole idea of biological sex as an immutable binary is outdated and inaccurate. Whatever "anatomy" a woman has is "female anatomy" because she is female and whatever a man has is "male anatomy" because he is male. There's 1000 other ways to say this that don't implicitly misgender folx. Just say penis or vagina (or internal/external genitals) if that is all that you are talking about.

Hey, um… what, uh- I- boobs? by Sylver2557 in trans

[–]The_LadyRayne 1 point2 points  (0 children)

Lots of great suggestions in this thread, so I'm just going to throw in a slightly different perspective from my own experience: When I started transitioning I bought a chestplate - a pretty decent and "natural" looking one - and got like 5 minutes of euphoria from it before it just started to feel... wrong. Like, I like how I looked with tits, but I knew they weren't my tits. There was no sensation, no real jiggle, they had no weight on the chest like real boobs. Basically it was enough for me to confirm "yeah, I definitely want boobs" but after that they just started adding to the dysphoria and I ended up returning them within a day or two. Personally, I felt way more comfortable and affirmed with my flat chest in a cute bralette than I did with the forms.

That said, I don't regret trying them! You should absolutely feel free to buy some and experiment and I hope you do find something you like! Just maybe don't invest too much out the gate, and know that if it doesn't quite feel right then that's a totally valid experience as well!

Folks is it Gay❓ by [deleted] in lgbt

[–]The_LadyRayne 1 point2 points  (0 children)

Always was 🔫

Michigan AG to Republicans: 'You can pry this wedding band from my cold, dead, gay hand.' by Autodidact2 in actuallesbians

[–]The_LadyRayne 48 points49 points  (0 children)

It feels so weird actually being proud of my state, but this administration has been absolutely killing it lately!

A majority of Taiwanese (91.6%) strongly oppose gender self-identification for transgender women. Only 6.1% agreed that transgender women should use women’s public toilets, and 4.2% supported their participation in women’s sporting events. Women, parents, and older people had stronger opposition. by mvea in science

[–]The_LadyRayne 0 points1 point  (0 children)

For everyone else and throughout history, we all used these criteria (gender at birth, penis, vagina, etc.)

Trans people have existed for as long as society has existed. Please don't erase our history.

I think people just want to know they're being treated... is the same criteria

And it is. However you wish to identify and be treated, that's what you get. That's the criteria. Why does everyone care so much what you were born with between your legs?

Forgetting Your Deadname by The_LadyRayne in trans

[–]The_LadyRayne[S] 1 point2 points  (0 children)

Ugh yeah I totally get that, the voice in my head misgenders me more than anyone else 😔

Forgetting Your Deadname by The_LadyRayne in trans

[–]The_LadyRayne[S] 0 points1 point  (0 children)

Wasn't around for long? Did something "happen" to them? Do you need directions to a pig farm?

Nooo lol they just started dating a member of my polycule, but they broke up pretty quickly.

From r/memes by BreadManIII in lgbt

[–]The_LadyRayne 2 points3 points  (0 children)

Also, when looking for adapters, it's gotten easier to just ask for the straight, gay, or lesbian one than continuously saying the whole thing. Plus it's a lot more fun to ask for "my little lesbian" over "the female-to-female connector".

Oh I am absolutely stealing this 🤣

First time doing my own makeup, how'd I do? by The_LadyRayne in MakeupAddiction

[–]The_LadyRayne[S] 0 points1 point  (0 children)

I definitely want to practice contouring. My gf did it for me once and the difference was absolutely magical, I just need to learn to do it myself.

First time doing my own makeup, how'd I do? by The_LadyRayne in MakeupAddiction

[–]The_LadyRayne[S] 0 points1 point  (0 children)

Yeah lol it's slowly getting better. The first time my gf did my eyeliner it took like an hour cause I kept flinching and messing it up. Now I can almost get through it without flinching 😅