• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

someone says "download the binaries" -- what does that mean to you?

as opposed to source files

source is typically in text format

source files are used (most often with a compiler program) to create "binaries" , ie executable files
 
Being a linux user, then yeah, binaries = executables for a particular program.

I usually download the binaries since I can't be bothered to compile from source unless there's a good reason.
 
so would a good way to look at be

Source code, it its uncompiled state, is not machine readable code. It's still in human readable form. Compiling this said code into a package that is in turn, machine readable, is in essence making the source code "binary" because machines can read 1010010101010
 
For C-like languages you typically go from Source(human readable) -> assembly(super-human readable) -> machine language
 
so would a good way to look at be

Source code, it its uncompiled state, is not machine readable code. It's still in human readable form. Compiling this said code into a package that is in turn, machine readable, is in essence making the source code "binary" because machines can read 1010010101010

yeah
 
I usually think of "stand alone application" aka no compiling or coding required. Though that term is not really well used as all files are in binary, even text files, they just happen to use a range of values that make up words we understand.
 
More specifically than just an executable, I think the phrase "download the binaries" means to download the INSTALLER. Which will then expand into the exe and all neccesary files, which may or may not be binaries themselves (text files, config files, images, etc).
 
It's a protocol thing. When you ftp, you had to specify if you want to use ascii mode or binary mode.
 
Thats Linux lingo . Thats what has made Linux the garage band os , if you can't deal with the dipshiteyness of downloading the binaries,you can't update your kernal,so you are left all alone and if you ask for help anywhere you are asked to read the mans .What The Fuck ?
 
so would a good way to look at be

Source code, it its uncompiled state, is not machine readable code. It's still in human readable form. Compiling this said code into a package that is in turn, machine readable, is in essence making the source code "binary" because machines can read 1010010101010

True, but even a .txt file isn't *really* readable unless you know the ASCII or Unicode table by heart 🙂 It's just a string of octets, and your computer converts those into characters to display on the screen...
 
Last edited:
Back
Top