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

Diprount_Tomato , to lemmyshitpost in Radiolysisposting
@Diprount_Tomato@lemmy.world avatar

Mfw I’m directly facing 15 kilotons of highly enriched uranium (I’m a Japanese guy in Hiroshima)

DannyBoy , to noncredibledefense in Happy Thanksgiving NCD!

You’re a month and a half late, but thanks!

nuke OP ,

I made this for you eh ❤️

https://files.catbox.moe/fz38i6.webp

SpermHowitzer ,

As a Canadian, I can confidently say geese would drop nukes indiscriminately because they’re straight up assholes.

DannyBoy ,

Beautiful

Shit ,
@Shit@sh.itjust.works avatar

Neat

Anti_Face_Weapon , to memes in Pfff, HTML

Funny meme, but I don’t think we should gatekeep. HTML is the path to HTML5 and thus JavaScript.

Tak ,
@Tak@lemmy.ml avatar

Do we gatekeep Java though?

Anti_Face_Weapon ,

No. But we do get to hate Java.

nuke OP , (edited ) to noncredibledefense in Happy Thanksgiving NCD!

And they said the fuzzy seat upgrade package was wasteful and doesn’t increase combat effectiveness. Pfft

wieson , to noncredibledefense in Jarhead

Now do Mitsubishi, Samsung and Yamaha

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

WarmApplePieShrek , to piracy in Naming Torrents

Just name them in scene format even if you’re not scene.

ZombiFrancis , to noncredibledefense in The Third Rome is Finnish

I mean this is basically how nobility ever justified claims to various thrones and titles throughout history.

bjoern_tantau , to memes in Pfff, HTML
@bjoern_tantau@swg-empire.de avatar

coding != programming

retiolus ,
@retiolus@lemmy.cat avatar

xcuse Shakespeare

GreenMario , to memes in "OpenAI Staff Threaten to Quit Unless Board Resigns"

Surprised they are backing up a sister-fucker.

CluckN ,

If he did the board would list that as a reason and be done with it. I haven’t seen any articles connecting those claims to his dismissal.

canis_majoris ,
@canis_majoris@lemmy.ca avatar

I’ve seen this in a number of threads but I’ve never seen direct proof?

ssboomman ,

You can google it. She’s said on numerous occasions and in many many social media posts that he abused her

Johanno ,

Everytime smb. says “you can Google it” I think about googling it and expect some weird niche article from some esoteric sites. But then I think, why didn’t you Google it and posted an link? Why should I try to find a trustworthy source for your claim?

ssboomman ,
  1. Because you asked
  2. It’s not my claim
  3. Because it’s a sensitive topic revolving SA and I feel weird sending the link.

Regardless it doesn’t actually matter. I don’t owe you a link. If you want it I told you how to get it.

Johanno ,

What I wanted to say is:

If all you have to say “you can google it” then maybe consider being silent.

ssboomman ,

Nah I’m ok. Thanks for the advice though!

ReversalHatchery ,

See, here I searched for it in the internet, the earth is flat: duckduckgo.com/?q=the+earth+is+flat&ia=news

Even The Guardian confirms it!

This is a garbage method. You can find everything and the opposite too by searching for it on the internet.

ssboomman ,

I’m not trying to have a debate or prove anything. I’m also not trying for find the most accurate ‘method’ fuck off with their Reddit debatelord shit.

ReversalHatchery ,

Or, you could just shut up and not say “just google it” anymore. I think that’s the real solution.

ssboomman ,

Just google it.

tweeks ,

You’re willingly confirming something you rate as sensitive, trying to bring more credibility to it by being an extra shout and referencing a virtually unverifiable needle in a haystack ‘authority’ as Google, but find the sensitivity a reason for not sharing your information.

How can you reason like this?

ssboomman ,

Easily

TheAnonymouseJoker ,
@TheAnonymouseJoker@lemmy.ml avatar

Accountability is not a strong suit of slimy weasels in the world.

ReversalHatchery ,

I can also google that the earth is flat

ssboomman ,

Cool

mino , to memes in Pfff, HTML
@mino@lemmy.ml avatar

Unrelated: anyone knows what this template is called? I can never seem to find it or describe it intelligently enough to search engines.

dangblingus ,

civil war elevator?

runner_g ,

Captain America Elevator meme.

mino ,
@mino@lemmy.ml avatar

Thanks!

tetris11 , to noncredibledefense in The Third Rome is Finnish
@tetris11@lemmy.ml avatar

How true is this? I really want to reshare this, but need to know if its true

PugJesus ,
@PugJesus@kbin.social avatar

The chart is all technically true. Finland was united in a crown union with the Russian crown, when the tsar abdicated, the decision was made for the Finnish parliament to take up sovereignty in his abscence. Thus, in a sense, you could say that Finland maintained the claims of the Russian crown in that the same instrument of government was continued and responsible for the transition to a republican and independent Finnish government, while the Russians overthrew the old regime entirely and replaced it with the shiny new Soviet system.

No one takes it seriously though, it's really just a kind of historical joke, and as the chart alludes to, there are more claimants to the Roman Empire than residents of the city.

squaresinger ,

Nothing of this is as clear-cut as it says here.

But all in all, it’s a ship-of-Theseus situation. Is something the Roman Empire if it doesn’t contain Rome, consists of land that was never occupied by Romans, uses a language that wasn’t spoken in the Roman Empire, doesn’t have any societal or political connections to the Roman Empire, doesn’t call itself the Roman Empire and ultimately is no empire?

In the case of Russia and then Finland it’s a case of “I once touched someone who touched someone who touched someone who touched the Queen, so I am now the Queen.”

And calling the Western Roman Empire illegitimate (even though it contained Rome) and then the Ottomans too, but calling the Russian Empire (which never had anything to do with the Roman Empire) legitimate is more than questionable.

All in all, a fun little meme, but no factual basis to back it up.

PugJesus ,
@PugJesus@kbin.social avatar

And calling the Western Roman Empire illegitimate (even though it contained Rome) and then the Ottomans too, but calling the Russian Empire (which never had anything to do with the Roman Empire) legitimate is more than questionable.

I mean, obviously it's a joke chart so it stretches interpretations to get the conclusion/punchline, but it might mean 'illegitimate' because, as it notes, the West was 'reunited' (extremely temporarily) with the Eastern Roman Empire, and the ERE always claimed to be the 'one' true legitimate Roman Empire.

squaresinger ,

Nothing wrong with a joke chart, and as such it isn’t bad at all.

I was just answering to the commenter before me who asked how true the chart is. And if you want to know whether the chart is factually correct that Finland is the (heir of) the Roman Empire, then the answer has to be no.

FuglyDuck , to cat in In their favorite spot
@FuglyDuck@lemmy.world avatar

in each other’s arms? or are they just fighting for the bed by the window?

yo_scottie_oh ,

yes

nul ,

Ginger: I love you so much

Mittens: I tolerate you so much

rubythulhu ,

clinging together out of fear because it’s the only thing that makes them feel safe from the monster on the other side of the camera

FuglyDuck ,
@FuglyDuck@lemmy.world avatar

That monster! Always grabs the weird noisy suck up-monster and makes it go vrrrrrrr all over the place.

Mischala , to memes in Pfff, HTML

HTMX and AlpineJS would like a word.

PugJesus , to noncredibledefense in The Third Rome is Finnish
@PugJesus@kbin.social avatar

The Finnished product

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