Activity for ShadowsRanger
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #292753 |
Post edited: |
— | about 1 month ago |
Edit | Post #292753 | Initial revision | — | about 1 month ago |
Question | — |
How can I efficiently create a collage of video thumbnails on Linux? I want to create a collage of 20 screenshots from a video, arranged in a 5x4 grid, regardless of the video’s length. How can I do this efficiently on a Linux system? Specifically, I’d like a way to automatically generate this collage of 20 thumbnails from the video, without having to manually sele... (more) |
— | about 1 month ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 |
Post edited: |
— | about 1 year ago |
Edit | Post #289772 | Initial revision | — | about 1 year ago |
Question | — |
How to identify and separate standalone applications from libraries in Linux package lists? I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies. I wrote a script that uses the data from pkgstats to show packages sorted by popularity. However, it doesn't distinguish between applications and libr... (more) |
— | about 1 year ago |
Edit | Post #289008 |
Post edited: |
— | over 1 year ago |
Edit | Post #289008 |
Post edited: |
— | over 1 year ago |
Edit | Post #289008 |
Post edited: |
— | over 1 year ago |
Edit | Post #289008 | Initial revision | — | over 1 year ago |
Question | — |
Getting a Module Error When Running Pytest Even Though the Module is Installed in the Current Virtual Environment Hello everyone, I am encountering an issue when running pytest in my virtual environment. Although I have installed the required modules in my virtual environment using pip, I am still getting a ModuleNotFoundError when running pytest. I had to install some packages globally using the package mana... (more) |
— | over 1 year ago |
Edit | Post #287901 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287901 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287901 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287901 | Initial revision | — | almost 2 years ago |
Question | — |
How to automatically change to the first matching directory using fuzzy search and cd? I want the `cd` command to automatically change to the first directory that matches a fuzzy search, without prompting me to select between multiple options. This is what I've tried: ```bash cd() { local dir="$1" local selecteddir selecteddir=$(find . -depth 1 -type d 2>/dev/null... (more) |
— | almost 2 years ago |
Edit | Post #287714 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287714 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287714 |
Post edited: |
— | almost 2 years ago |
Edit | Post #287714 | Initial revision | — | almost 2 years ago |
Question | — |
Recursively remove files with the same name as the ones that end in `.part` I want to remove all files with the ".part" extension in the current directory and its subdirectories, including files with the same name but different extension. Is this correct? ``` find . -name '.part' -exec sh -c 'base="$(basename "$1" .part)"; find . -name "$base" -delete' sh {} \; ``` (more) |
— | almost 2 years ago |