this post was submitted on 16 Jul 2024
580 points (97.4% liked)

Programmer Humor

32022 readers
544 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] areyouevenreal@lemm.ee 2 points 2 months ago* (last edited 2 months ago) (1 children)

Just because they open in 7-Zip or whatever doesn't mean they are just a zip file. There are several kinds of archives. EXEs are a special case as well. They aren't archives at all. Rather they can contain archives or extra content along with being an executable. One reason is self extracting archives. Here an archive is packaged with an extraction program as an exe all in one. The other case is exes that have extra resources like images, videos, graphics textures, etc. Either way it's an executable plus some extra stuff, not a zip archive. DLLs I am not sure about, but I suspect something similar is happening here.

Next time you should research stuff before posting it on Lemmy. Things are sometimes more complicated than they appear.

docx you are correct about though. Specifically it's a zip file that contains XML files and resources.

Edit: I actually found an article on self extracting archives, it's quite an interesting technology to be fair even if it causes confusion: https://en.m.wikipedia.org/wiki/Executable_compression

[–] Psythik@lemmy.world 1 points 2 months ago (1 children)

By "zip file", I meant a compressed archive. I'm not as nerdy as you guys are so I see now that there is a difference. I appreciate the correction.

That said, you have to admit that it's still cool that these different file formats are nothing more than archives. Maybe not to you but it blew my mind when I first learned this.

[–] areyouevenreal@lemm.ee 0 points 2 months ago (1 children)

Bruh an exe is not an archive. Some just happen to contain an archive, not all. As me and the other guy discovered some archive utilities can read them, but what they are doing is closer to a binary analysis tool than unpacking an actual archive. It's not about being nerdy, it's about getting your facts right.

[–] Psythik@lemmy.world 2 points 2 months ago (1 children)

Man, even when I try to be diplomatic I still get berated.

Should have just said fuck you and called it a day. (kidding)

[–] areyouevenreal@lemm.ee 0 points 2 months ago* (last edited 2 months ago)

You're still trying to weasel out of being wrong. It's not an archive nor is it compressed. Go read what a Portable Executable is. It's not about being diplomatic or whatever. Just admit you're wrong and go and read about how it actually works. You might learn something.