672
top 50 comments
sorted by: hot top controversial new old
[-] joyjoy@lemm.ee 95 points 1 year ago

There are 3 types of files. Renamed txt, renamed zip, and exe

[-] Toribor@corndog.social 53 points 1 year ago* (last edited 1 year ago)

I'd argue with this, but it seems like image and video file extensions have become a lawless zone with no rules so I don't even think they count.

[-] Hauskrampf@ttrpg.network 31 points 1 year ago

Looking at you, .webp

[-] gamma@programming.dev 18 points 1 year ago* (last edited 1 year ago)

Video files are just a bunch of zip files in a trenchcoat.

[-] fibojoly@sh.itjust.works 8 points 1 year ago* (last edited 1 year ago)

Back in the day, when bandwidth was precious and porn sites would parcel a video into 10 second extracts, one per page, you could zip a bunch of these mpeg files together into an uncompressed zip, then rename it .mpeg and read it in VLC as a single video. Amazing stuff.

[-] gazter@aussie.zone 5 points 1 year ago

What's it called when you logically expect something to work, but are totally surprised that it actually does?

[-] fibojoly@sh.itjust.works 5 points 1 year ago

Sounds an awful lot like a normal day at work as a dev.

[-] cultpony 17 points 1 year ago
[-] GlitchyDigiBun@lemmy.dbzer0.com 11 points 1 year ago

It's a folder that you put files into, but acts as a file itself. Not at all like zip.

load more comments (2 replies)
[-] ytg@feddit.ch 7 points 1 year ago

Isn't the Windows exe also a renamed zip?

[-] AVincentInSpace@pawb.social 15 points 1 year ago* (last edited 1 year ago)

See, ZIP files are strange because unlike most other archive formats, they put the "header" and table of contents at the end, and all of the members (files within the zip file) are listed in that table of contents as offsets relative to the start of the file. There's nothing that says that the first member has to begin at the start of the file, or that they have to be contiguous. This means you can concatenate an arbitrary amount of data at the beginning of a ZIP file (such as an exe that opens its argv[0] as a zip file and extracts it) and it will still be valid. (Fun fact! You can also concatenate up to 64KiB at the end and it will still be valid, after you do some finagling. This means that when a program opens a ZIP file it has to search through the last 64KiB to find the "header" with the table of contents. This is why writing a ZIP parser is really annoying.)

As long as whatever's parsing the .exe doesn't look past the end of its data, and whatever's parsing the .zip doesn't look past the beginning of its data, both can go about their business blissfully unaware of the other's existence. Of course, there's no real reason to concatenate an executable with a zip file that wouldn't access the zip file, but you get the idea.

A common way to package software is to make a self-extracting zip archive in this manner. This is absolutely NOT to say that all .exe files are self extracting .zip archives.

[-] Appoxo@lemmy.dbzer0.com 12 points 1 year ago* (last edited 1 year ago)

No. But the Windows office suite is
You can rename a docx and extract it.
Don't know how it is with ppt/x and xls/x

[-] MonkderZweite@feddit.ch 8 points 1 year ago

xls & co. (the older ones) are something custom. Only after standardization as OOXML (a shitshow btw, there's a lengthy wiki article about it) they got zip.

load more comments (1 replies)
[-] lord_ryvan@ttrpg.network 6 points 1 year ago

docx are mostly markup language, actually. Much like SVGs and PDFs.

load more comments (5 replies)
load more comments (2 replies)
[-] lemann@lemmy.one 87 points 1 year ago

Ah, good ol' Microsoft Office. Taken advantage of their documents being a renamed .zip format to send forbidden attachments to myself via email lol

On the flip side, there's stuff like the Audacity app, that saves each audio project as an SQLite database 😳

[-] Hexagon@feddit.it 50 points 1 year ago

Also .jar files. And good ol' winamp skins. And CBZ comics. And EPUB books. And Mozilla extensions. And APK apps. And...

[-] neo@lemmy.comfysnug.space 9 points 1 year ago

cbz is literally just a renamed zip

load more comments (2 replies)
[-] beeb@lemm.ee 28 points 1 year ago

an SQLite database

Genius! Why bother importing and exporting

[-] xigoi@lemmy.sdf.org 20 points 1 year ago

Minetest (an open-source Minecraft-like game) uses SQLite to save worlds.

[-] lemann@lemmy.one 8 points 1 year ago

Mineclone2 is an absolute masterpiece of a game for Minetest IMO

[-] xigoi@lemmy.sdf.org 9 points 1 year ago

I prefer games that embrace the difference from Minecraft instead of trying to emulate it. My favorite is MeseCraft.

load more comments (1 replies)
load more comments (1 replies)
[-] tsonfeir@lemm.ee 22 points 1 year ago

SQLite is amazing. Shush.

[-] mogoh@lemmy.ml 16 points 1 year ago

that saves each audio project as an SQLite database 😳

Is this a problem? I thought this would be a normal use case for SQLite.

[-] fiah@discuss.tchncs.de 15 points 1 year ago

doesn't sqlite explicitly encourage this? I recall claims about storing blobs in a sqlite db having better performance than trying to do your own file operations

[-] MNByChoice@midwest.social 13 points 1 year ago* (last edited 1 year ago)

Thanks for the hint. I had to look that up. (The linked page is worth a read and has lots of details and caveats.)

The scope is narrow, and well documented. Be very wary of over generalizing.

The measurements in this article were made during the week of 2017-06-05 using a version of SQLite in between 3.19.2 and 3.20.0. You may expect future versions of SQLite to perform even better.

https://www.sqlite.org/fasterthanfs.html

SQLite reads and writes small blobs (for example, thumbnail images) 35% faster¹ than the same blobs can be read from or written to individual files on disk using fread() or fwrite().

Furthermore, a single SQLite database holding 10-kilobyte blobs uses about 20% less disk space than storing the blobs in individual files.)

Edit 5: consolidated my edits.

[-] OrangeXarot@sh.itjust.works 9 points 1 year ago
load more comments (1 replies)
[-] space@lemmy.dbzer0.com 61 points 1 year ago

Also renamed xml, renamed json and renamed sqlite.

[-] TrustingZebra@lemmy.one 17 points 1 year ago

Those sound fancy, I just use renamed txt files.

[-] neo@lemmy.comfysnug.space 22 points 1 year ago
[-] Natanael@slrpnk.net 6 points 1 year ago
load more comments (1 replies)
[-] xtremeownage@lemmyonline.com 9 points 1 year ago

Amateurs.

I have evolved from using file extensions, and instead, don't use any extension!

[-] H4mi@lemm.ee 18 points 1 year ago

I don’t even use a file system on my storage drives. I just write the file contents raw and try to memorize where.

[-] ArmoredThirteen@lemmy.ml 10 points 1 year ago

Sounds tedious, I've just been keeping everything in memory so I don't have to worry about where it is.

load more comments (3 replies)
load more comments (6 replies)
[-] dan@upvote.au 8 points 1 year ago* (last edited 1 year ago)

SQLite explicitly encourages using it as an on-disk binary format. The format is well-documented and well-supported, backwards compatible (there's been no major version changes since 2004), and the developers have promised to support it at least until the year 2050. It has quick seek times if your data is properly indexed, the SQLite library is distributed as a single C file that you can embed directly into your app, and it's probably the most tested library in the world, with something like 500x more test code than library code.

Unless you're a developer that really understands the intricacies of designing a binary data storage format, it's usually far better to just use SQLite.

load more comments (1 replies)
[-] observantTrapezium@lemmy.ca 40 points 1 year ago

Nothing wrong with that... Most people don't need to reinvent the wheel, and choosing a filename extension meaningful to the particular use case is better then leaving it as .zip or .db or whatever.

[-] CoderKat@lemm.ee 5 points 1 year ago

Totally depends on what the use case is. The biggest problem is that you basically always have to compress and uncompress the file when transferring it. It makes for a good storage format, but a bad format for passing around in ways that need to be constantly read and written.

Plus often we're talking plain text files being zipped and those plain text formats need to be parsed as well. I've written code for systems where we had to do annoying migrations because the serialized format is just so inefficient that it adds up eventually.

[-] AI_toothbrush@lemmy.zip 22 points 1 year ago

When i discovered as a little kid that apk files are actually zips i felt like a detective.

[-] HiddenLayer5@lemmy.ml 15 points 1 year ago
[-] gamma@programming.dev 12 points 1 year ago
[-] dan@upvote.au 5 points 1 year ago

They both have their use cases. Zstandard is for compression of a stream of data (or a single file), while 7-Zip is actually two parts: A directory structure (like tar) plus a compression algorithm (like LZMA which it uses by default) in a single app.

7-Zip is actually adding zstd support: https://sourceforge.net/p/sevenzip/feature-requests/1580/

load more comments (3 replies)
load more comments (8 replies)
load more comments
view more: next ›
this post was submitted on 13 Sep 2023
672 points (100.0% liked)

Programmer Humor

32019 readers
527 users here now

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

Rules:

founded 5 years ago
MODERATORS