this post was submitted on 27 Sep 2024
94 points (81.3% liked)

Showerthoughts

29299 readers
1214 users here now

A "Showerthought" is a simple term used to describe the thoughts that pop into your head while you're doing everyday things like taking a shower, driving, or just daydreaming. The best ones are thoughts that many people can relate to and they find something funny or interesting in regular stuff.

Rules

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] JackGreenEarth@lemm.ee 72 points 2 days ago (12 children)

Or a renamed txt. Eg, .js, .py, .css, .html, .json

[–] victorz@lemmy.world 59 points 2 days ago (11 children)

Thank God they went with file name extensions so we didn't have to preface every source .txt file with header content to instruct the editor about what kind of content it would have.

[–] JackGreenEarth@lemm.ee 7 points 2 days ago (4 children)

Why do I need to put that at the start of bash, desktop, and html files then?

[–] Revan343@lemmy.ca 5 points 1 day ago

For shell scripts it's because bash isn't the only shell; if you leave out the shebang line, Ubuntu will run your script in Dash instead

[–] cron@feddit.org 14 points 2 days ago (1 children)

Because both ways are used. Microsoft relies on file names, linux on the first bytes of the file.

[–] p_consti@lemmy.world 19 points 2 days ago* (last edited 2 days ago) (1 children)

Not quite correct. For html, that is to signal standard compliance, you can leave it away and the browser will still handle it. For the bash one, all (most) shell scripts use .sh, so you need to give a shebang to tell the loader which executable (sh, bash, zsh, csh, ...) to use

Also on Linux xdg does take file extensions into account, just executables do not

[–] cron@feddit.org 5 points 2 days ago

You're right, my comment was oversimplified.

[–] xigoi@lemmy.sdf.org 4 points 2 days ago* (last edited 2 days ago)

For HTML, it’s to distinguish “standards mode” HTML from “quirks mode” HTML (which doesn’t need a header).

[–] LodeMike@lemmy.today 1 points 2 days ago (1 children)

Nothing unless you want to serve them without some other way to see what file type they are.

You can run bash scripts with bash.

Don't know what a desktop file is.

HTML has that because webservers used to not have auto media type detection and response headers.

[–] Ephera@lemmy.ml 4 points 2 days ago

.desktop files are a Linux/Unix thing. Basically, it's a fancy shortcut, usually to an application, which allows specifying additional infos, like e.g. translated names.
In particular, the contents of the application menu are defined by just a folder filled with .desktop files.

https://en.wikipedia.org/wiki/Shortcut_(computing)#Unix

load more comments (6 replies)
load more comments (6 replies)