malt ipecac
kiwifarms.net
- Highlight
- #901
I use a lot of sites that randomly scramble/hash video names. You'll download it and it'll just be "5cdb881697976796d149ff41690944755a3bfb82f37260b7e26a09fff62c2424.mp4"
Is there any existing tool to either generate or automatically rename downloads to randomly generated words like gifycat does? eg: BigCatPartyWompus.mp4. That would help a lot with just identifying the files immediately after download so you can throw them somewhere else.
I don't know of a dedicated tool, but I think you could achieve this trivially with a shell script/alias (at least in Linux). You just need to get/make a plain-text file that includes a bunch of dictionary words, one on each line. To rename the file, you could do something like:
mv <video_name>.mp4 "$(shuf -n 1 <dictionary_file>)".mp4If you use curl to download files, you could make an alias that looks something like this:
curl -o "$(shuf -n 1 <dictionary_file>)".mp4 <file_URL>Edit: if you want to use multiple words, you could do something like:
Code:
curl -o "$(shuf -n 1 <dictionary_file>)\
$(shuf -n 1 <dictionary_file>)\
$(shuf -n 1 <dictionary_file>)".mp4 <file_URL>
And that'll give you three random words (with repetition allowed). I guess there's a small chance you'll end up accidentally re-writing a filename if you repeatedly use that code to download videos to the same directory, but you get the idea.
I'm referring to case fans, edited the initial post to provide more information. I'll stick to BIOS then, the NVIDIA control panel remains a necessity; barring monitor fps, overclocking isn't my thing.
Those NVIDIA hard limits are new to me, good to know. 47,5 c GPU temp at idle it is.
NV Control panel is useful, I agree. I was more talking about the "GeForce Experience" and whatever else they try to get you to install.
Last edited:


