this post was submitted on 03 Jun 2026
12 points (100.0% liked)

Ask

1543 readers
48 users here now

Rules

  1. Be nice
  2. Posts must be legitimate questions (no rage bait or sea lioning)
  3. No spam
  4. NSFW allowed if tagged
  5. No politics
  6. For support questions, please go to !newcomers@piefed.zip

Icon by Hilmy Abiyyu A.

founded 1 year ago
MODERATORS
 

I am trying out git on my local system, and I am a complete beginner, that is I have 0 knowledge of git. For a starting I wish to undertake some kind of project to get the hang of how it works. I wish to do it locally, but if you are interested, I am ready to work as a team on GitHub. Do you have any idea ? It ought to be graphical and fun !

you are viewing a single comment's thread
view the rest of the comments
[–] LoveEspresso@cafe.coffee-break.cc 2 points 18 hours ago (1 children)

I don't know what are binary formats specifically, but I too would be using it for software related projects. It's just that l need to get the hang of these tools.

Right now, Gemini is proving to be a great teacher, telling me the steps and also rectifying my errors.

[–] HarkMahlberg@kbin.earth 2 points 10 hours ago (1 children)

By binary formats, they mean files that are intended to be interpreted or executed by a computer.

For example, a program (my-app.exe) is a binary file. You use it by double clicking it, and the computer runs the program. If you tried to read the file by opening it in a text editor, you would only see gibberish and random characters.

Another example, an image (my-photo.jpg) is a binary file. It's not a program, but you can view the image with a program like Paint. But just like a program, if you opened an image in a text editor, you would still see gibberish. That's because the gibberish is interpreted by Paint so that you can view the image.

But source code (my-website.html) is not a binary file, it's just a text file with fancy formatting and special rules on how to write it. You can open an HTML file in your text editor, and as long as you know the rules you can learn to read it.

So, there are certain types of files that can be opened with a text editor, and some kinds of files need special programs to open.

Is the program paint open source ?