this post was submitted on 20 Jul 2024
54 points (89.7% liked)

Ask Lemmy

26259 readers
1194 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 month ago (1 children)

It'll likely crash the editor, but if it doesn't then you get cool Matrix code. That's actually how we used to make Matrix backgrounds back in the day, open an image in a text editor, copy the code, transform it to vertical, change it to green, eureka!

[–] [email protected] 2 points 1 month ago (3 children)

But what is all that crap? Is that the literal machine code or something? Like what is it and in the eff does it actually goid-enough approximate its subject content?

[–] [email protected] 5 points 1 month ago

Every file is made up of zeroes and ones, what's different between the formats is how those zeroes and ones are interpreted. When you open a mp4 in a text editor what you see is the result of the text editor interpreting the data as if it were text. Since the data doesn't actually represent text, the result is meaningless garbage.

[–] [email protected] 3 points 1 month ago* (last edited 1 month ago)

All any file is is just numbers. Opening a file in a program is just interpreting those numbers. To over-simplify, in a plain text file, for example, the number 32 means "space character", and the number 10 means "move down to a new line". In an audio file, the numbers are going to have meaning related to volume and frequency of sound, at points in time.

[–] [email protected] 3 points 1 month ago

Every single file on a computer is stored as zeros and ones, the difference between opening a file in VLC or in Notepad is how the program decode the data.

I actually have a very good analogy to explain the issue of decoding data, this happened to me in a shop.

I am a Swede, I consider myself being bilingual Swedish/English, I live and work in Sweden.

After work one day I decided that I wanted some Itallian food so I walked by Eatatly in Stockholm.

As I got to the cashier to pay, I thought I heard her speak Swedish, but as she started talking to me, I only heard gibberish, I could not understand her at all, it took me 2-3 sec to realize that she was speaking English, and when that clicked, I suddenly understood everything.

It was so weird, it was like my English comprehension was just turned off and needed to restart.

Now, this is bascially what happens when you try and open a music file in Notepad, only it can't understand music at all and doesn't have the option to give up unless it hits a hard limit.

So it uses what it knows to try and decode thw file, it takes the birnary data and decodes it as a text file, and since the music data does not corespond to proper text standards it will just do it's best and give you a long document of incomprehensable characters.

There are some interesting ways to mess with files and different programs to find/do interesting stuff.

For instance, you can hide a zip file in a JPG file: https://www.howtogeek.com/119365/how-to-hide-zip-files-inside-a-picture-without-any-extra-software/

This would only really work in hiding small ammounts of data, and will not prevent detection by law enforcement.

.docx, .xlsx, .pptx and other new office documents are actually zip files, you can open the file in 7zip and examine the file that way.

This is interesting, but I haven't found a real use for it.