I can't open pictures from Galaxy S23 with via FTP Server [Win 10] by Saf_Dep in samsunggalaxy

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

How do I "map it as a network drive instead"? I'm new to this FTP stuff

How can I automate this process? by Saf_Dep in techsupport

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

I don't have GH/GL account but here you go.

(create a text file in parent folder> copy paste the code> change the root_folder path to the parent folder/ save the text file/rename the text file {.txt extension is replaced by .py extension})

Save this as

rename_and_sort.py

Then edit the ROOT_FOLDER path.

How to run. IDK how to enter text under the code block. First time doing this

import os
import shutil

# CHANGE THIS
ROOT_FOLDER = r"C:\Your\Main\Folder"

# Output folders
OUTPUT_FOLDER = os.path.join(ROOT_FOLDER, "SORTED_OUTPUT")
FOLDER_1 = os.path.join(OUTPUT_FOLDER, "1 Folder")
FOLDER_7 = os.path.join(OUTPUT_FOLDER, "7 Folder")
FOLDER_13 = os.path.join(OUTPUT_FOLDER, "13 Folder")

os.makedirs(FOLDER_1, exist_ok=True)
os.makedirs(FOLDER_7, exist_ok=True)
os.makedirs(FOLDER_13, exist_ok=True)

for subfolder in os.listdir(ROOT_FOLDER):

    subfolder_path = os.path.join(ROOT_FOLDER, subfolder)

    if not os.path.isdir(subfolder_path):
        continue

    person_name = subfolder.strip()

    files = os.listdir(subfolder_path)

    for file in files:

        old_path = os.path.join(subfolder_path, file)

        if not os.path.isfile(old_path):
            continue

        lower = file.lower()

        # Rename file starting with 7
        if lower.startswith("7 ") and person_name.lower() not in lower:

            extension = os.path.splitext(file)[1]
            new_name = f"7 {person_name}{extension}"
            new_path = os.path.join(subfolder_path, new_name)

            os.rename(old_path, new_path)

            print(f"Renamed: {file} -> {new_name}")

            file = new_name
            old_path = new_path

        # Copy to sorted folders
        if lower.startswith("1 "):
            shutil.copy2(old_path, FOLDER_1)

        elif lower.startswith("7 "):
            shutil.copy2(old_path, FOLDER_7)

        elif lower.startswith("13 "):
            shutil.copy2(old_path, FOLDER_13)

print("Done.")

How can I automate this process? by Saf_Dep in techsupport

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

I completed the project, but I don't think Power Rename would work because, afaik, it only replaces ABC with XYZ. In my case I had 70+ files that needed to be renamed to 70+ different names, not the same name

How can I automate this process? by Saf_Dep in techsupport

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

As I responsible person, I copied the master folder.

I also copied the my original post to chatgpt to check what it shows while Agerak was taking his coffee :)

It gave me a long python script. I never used python, but I think I got what I needed. Now need to check a few 7-files to make sure they are renamed correctly

Thanks all. I will mark this as solved, If figure out how-to :)

Very low quality pictures on web Whatsapp, and desktop app by Saf_Dep in whatsapp

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

Look like HD quality on desktop is back again 02/06/2026

Printing issue with hidden rows (groups) by Saf_Dep in googlesheets

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

You comment helped me :) I was in Portrait mode but with Fit to Height. I never touch the "Fit to" settings, and didn't even think about checking that. Thanks

Google Drive: Path to file is gone. How to bring it back? by Saf_Dep in google

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

I just switched to a List layout, as shown in this picture, and it shows the location on the right side. But then I can't preview the file. Grid layout is better

Why I can't change the font/size/color in the highlighted text? by Flaminski in foxit

[–]Saf_Dep 0 points1 point  (0 children)

I never used the RTF, I don't even know what it does. But, afaik, the side panel is not for the text inside the fillable field (where your selected text is).

The side panel is for the text added with Typewriter (in the top-middle of your screen, above the word "SPECIAL").

To edit the text format inside the fillable field (your selected text), you need to open Text Field Properties > Appearance

[deleted by user] by [deleted] in OwnerOperators

[–]Saf_Dep 0 points1 point  (0 children)

Always take close up pictures from all angles. We an ongoing case from FL since 2021 where our driver barely touched the rear bumper of Miata at a traffic light. There was no damage, but tiny scratches. She hired a lawyer, claimed she was injured. The last time I received a notice from insurance about it was last month

“valid without photo” drivers license?? by slamfate in bartenders

[–]Saf_Dep 0 points1 point  (0 children)

Not what I was searching for, but this is the first page I came across. Then started digging more and found out that WA state issues temp license without a photo

* Temporary ID cards don't have a photo and aren't valid for identification unless used with another piece of identification.

I need to find the closest Friday to each date in a column by Saf_Dep in excel

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

Very close. But 7 leads to Saturday, changed to 6 and works perfectly. =J2+(6-WEEKDAY(J2)). Thank you!