There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

files.catbox.moe

twistedtxb , to piracy in Naming Torrents
@twistedtxb@lemmy.ca avatar

In this day and age where most of not all modern media library management software can decipher almost anything without any problem, is that really an issue?

rikudou ,

Yes.

lukini , to piracy in Naming Torrents
@lukini@beehaw.org avatar

It’s supposed to be a dash before the group name.

setsneedtofeed , to noncredibledefense in Virgin Everything vs Chad Stargate
@setsneedtofeed@lemmy.world avatar
Socsa , to noncredibledefense in Virgin Everything vs Chad Stargate

Star

Gate

umbrella , to piracy in Naming Torrents
@umbrella@lemmy.ml avatar

i just let radarr do it for me nowadays

Astaroth , to piracy in Naming Torrents

why not use underscores?

Octopus1348 ,

They are ugly. Just use -

Dozzi92 ,
@Dozzi92@lemmy.world avatar

What happens when a hyphen is used in a movie title? I think that’s frequent enough, versus an underscore or a period.

Rogue ,

Semi colons wouldn’t be valid in file names so they’re ignored so there’s no reason to include hyphens either

p3e7 ,

kebab-case-for-the-win

rustyricotta ,

I’ve always liked underscores better because it differentiates from the file extension. It just makes sense. Except it is a wider character, so it’d be longer.

Dozzi92 ,
@Dozzi92@lemmy.world avatar

Gotta hit shift though. Period, ezpz.

JustEnoughDucks ,
@JustEnoughDucks@feddit.nl avatar

chuckles nervously in azerty hell

TimewornTraveler ,

wow azerty needs shift to enter a period?

Astaroth ,

well if you’re using a mono font (terminal) then there are no such thing as wider characters anyway, so for me that’s not a drawback either

BrianTheeBiscuiteer ,

Underscores require you to use the Shift key.

Astaroth ,

Do you type with one hand?

And well even if you did you could hold down right shift instead of left shift to only use a single hand.

BrianTheeBiscuiteer ,

When you have RSI you want to minimize every single key press.

StephniBefni , to noncredibledefense in Virgin Everything vs Chad Stargate

Just a heads up, that’s the tenth doctor represented in your meme, but the 11th doctors sonic screwdriver. Oh boy wouldn’t that be embarrassing, hope somebody got fired for that blunder.

the_third , to piracy in Naming Torrents

This is scene, there are standards goddammit!

Yes, there really are.

en.m.wikipedia.org/wiki/Standard_(warez)

Rootiest ,
@Rootiest@lemmy.world avatar

Standards and CONSEQUENCES

en.wikipedia.org/wiki/Nuke_(warez)

SkyezOpen , to noncredibledefense in The Mk66 rocket motor equipped bucket truck

How can we even compete with this level of noncredibility?

nuke OP ,

Reality continues to outjerk us

n3m37h , to piracy in Naming Torrents

Name [Year] (1080p265)
This is how I sort my movies at least

TheLobotomist ,
@TheLobotomist@lemmy.dbzer0.com avatar

Mine is: [Year] Name [Languages][Resolution]

ElectricCattleman ,

[Year] Name

For me. I don’t care about resolution after I’ve downloaded it. Heck, I don’t need to know the resolution before downloading, I can tell by the file size.

SchizoDenji ,

I usually add tvdb id for Series so that fixing identification problems in jellyfin is easier.

robdor , to noncredibledefense in The Mk66 rocket motor equipped bucket truck

Lol is that real? That can’t be but it’s fucking rad if this was a RoboCop movie.

chemical_cutthroat , to noncredibledefense in The Mk66 rocket motor equipped bucket truck
@chemical_cutthroat@lemmy.world avatar

He’s finally gonna go around the swing set.

ShortFuse , to piracy in Naming Torrents

Should be a hyphen instead of period before NAHOM.

retiolus OP , to piracy in Naming Torrents
@retiolus@lemmy.cat avatar

It’s quite strange, I’ve been downloading torrents for more years than I can count, and I upload them from time to time, and I’ve always had the worry myself of how to name torrents: with dots? underscores? dashes? (although with spaces is definitely not an option).

I’ve even asked the questions on several forums and upload sites, read tutorials on these same sites etc and every time I’ve asked the answer has been: THERE IS NO STANDARD, even on the tutorials, I’ve never seen anything mentioned such a thing.

All this to say that I’m making a meme, and after so many years, this is the first time I’ve heard of a Warez scene, and several times in the same comments!, curious, isn’t it? I wish I’d heard about it before.

Socsa ,

You should know that in most filesystems that are not NTFS, spaces in file names are not well supported.

Pyrozo007 ,

Can you give examples? Linux and Mac have no real issues as far as I’m aware. Nor exFAT or FAT32

bam13302 ,

The problem is really that space is an argument separator, so to safely handle filenames with spaces you need to handle them special, either by escaping them, quoting the entire thing. This means that the filename with spaces can’t be just copy pasted wherever you want, you have handle them special. It adds complications that are resolved by just using a separator that isnt used for other things, like underscore, or dash. Dot I also don’t like as much as it’s used as a separator for extensions, but that’s a far easier problem to handle by just ignoring all but the last dot, leaving only one really bad edge case (a file that does not have an extension, that uses dot separator in its filename having the filesystem imply a wrong extension.

gayhitler420 ,

I’m with the person you’re replying to, what’s an example? I haven’t had a problem working with filenames with spaces in at least ten years on windows, Linux or Mac…

retiolus OP ,
@retiolus@lemmy.cat avatar

Have you ever written a program or simply used a terminal?

gayhitler420 ,

Escape characters and autocomplete exist.

It’s also really good practice to account for weird characters in programs and shell scripts you write because then you don’t have injection vulnerabilities or unicode problems.

Seriously, what’s an example of spaces in filenames causing a problem?

bam13302 , (edited )

for f in *.txt; do cat $f; done

Will error for example. It works fine for filenames without space, but if the filename has space in it, it will be interpreted wrong. But if your testing batch doesn’t have spaces in the filename, you won’t see the issue until it’s used on a file that does. Note ‘cat’ is a placeholder, any function/script that can be used on a file here will have the same issue.

Something similar to that caught me last week while I was unzipping multiple mods in bulk for a game.

gayhitler420 ,

I’m not at a bash terminal, but I think “$f” fixes that. I’ll look tonight.

bam13302 ,

You are correct, that is how I worked around the issue and why I mentioned that work around in my original post

gayhitler420 ,

I didn’t notice that part of your post. 🙏

The point I guess I was getting at was that even having “come up” with Slackware and a whole os that’s just 69 half baked scripts in a trenchcoat I adopted a more universal mindset and specific skill set when using scripts over ten years ago and find it hard to justify expecting sanitary inputs nowadays when it is harder and harder with Unicode and is a serious security threat to treat variables as passable strings.

I wasn’t trying to suggest that there isn’t a way to make a space in a filename cause an error, but that I can’t think of an example where allowing a space to affect things was a good or right way to do something.

In the specific example of the op, no spaces is a scene rule from the days of ftp and irc/usenet. The idea behind having only a subset of the ascii character set was to allow those services to work with the files and commands around them. There’s no reason to treat my own scripts and programs as if they’ll never encounter the galaxy of other characters that are flying around now and to be honest, theres no reason not to work in sane handling of non ascii characters in filenames even for code I only expect to touch scene stuff.

It used to be an unavoidable mistake when we dug up buried utilities. Now that there’s a number to call first it’s only the fault of the knucklehead with the shovel.

Please don’t read this as some kind of an argument. I think we basically agree and I’m not trying to get one over on you.

bam13302 ,

To be fair, I didn’t really focus on the biggest annoyance I’ve had with spaces in the file name: going between terminals and the GUI, most filenames you can copy and paste with wild abandon, but filenames with spaces always require special care, sometimes stripping the auto completed escaped space from file names from the terminal, or quoting or escaping the space when taking one from the GUI.

gayhitler420 ,

That can be a struggle. There used to be a context menu option in maybe xterm or the kde terminal emulator that would copy the wd and maybe even the highlighted file but I might be gpt hallucinating that last one.

After fucking up bad copying from the internet into a terminal about fifteen years ago I have tried to review and understand what’s happening when copying from or to the terminal even in part. It would be bad for me if there weren’t the possibility of (at best) having shit not work when I use middle click with abandon.

I been thinking a lot about designing technology to discourage people from using it. For example it’s a serious mistake when wearable displays are made to look like wayfarers. The danger of people accepting them socially to the point of being manipulated into a state of flow, dissociating from their reality through a combination of sight and sound augmented reality, is too high. Good design of wearable displays should prioritize function over form 100% and make the user look like an insane freak that no one wants to be around, forcing people to remove them in order to maintain social interactions.

I think copying to and from the terminal is like that. When going between an interface which is a very high level mediator of interaction with the machine and one that’s a very low level mediator, we should be alert, on guard and proofreading everything twice. It’s good that we have to check ourselves before we wreck ourselves copying and pasting into the terminal.

ramjambamalam ,

That’s a problem with the shell though, not the filesystem. It doesn’t matter which files filesystem you’re using; most interactive shells use spaces as token separators and therefore spaces in filenames need to be enclosed in quotes or escaped.

eluvatar ,

Clearly the best option then is to just use some of each. Like this: “MovieTitle-2000.Your_mom h.265”

WarmApplePieShrek ,

Scene has standards. You don’t have to be scene to use scene naming standards. scenerules.org

JokeDeity , (edited ) to piracy in Naming Torrents

As soon as the file finishes downloading it becomes only the name of the movie.filetype

I can’t stand the titles on torrents.

bloup ,

“Titles”? It’s not a title, it’s a file name that contains a lot of details about the rip. In the post’s example it tells you that it’s the movie Split, ripped from blu ray, in 1080p, with audio tracks in Italian and English, and encoded in x265. You probably would hate a lot more not being able to tell the difference between split.mp4 recorded on my cellphone in the movie theater and split.mp4 in ultra hd 4k ripped straight from Netflix.

JokeDeity ,

Lol, okay. Calm down buddy. What I do doesn’t affect you. The torrent description let’s me know all that too, I just hate having those file names in my library, looks messy and it’s less easy for my eyes to browse quickly.

bloup ,

I mean I never told you not to rename them lmfao. You just said “I can’t stand the titles on torrents” like people just made these really long filenames for shits and giggles. Also lots of torrent sites will feature several different kinds of rips. It’s not very convenient on the back end to have all rips of the same movie have the same file name.

Also “calm down”? Idk I thought I gave a pretty chill explanation of why things are the way they are but sorry if it didn’t come across that way.

BitsOfBeard ,
@BitsOfBeard@programming.dev avatar

These days, it feels like one needs a disclaimer for every opinion or fact just to avoid setting someone off. I feel like it discourages open conversation…

HerbalGamer ,
@HerbalGamer@sh.itjust.works avatar

fuck your open conversation /s

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines