this post was submitted on 21 Jan 2024
768 points (93.2% liked)

Programmer Humor

31784 readers
39 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 39 points 7 months ago (1 children)

Just use brainfuck for everything. The entry barrier for the programming industry needs to be higher anyway.

[–] [email protected] 1 points 7 months ago (2 children)
[–] [email protected] 13 points 7 months ago* (last edited 7 months ago) (1 children)

For the programmer? Very no.

For saving space if run via interperter? No.

For running compiled for conventional CPUs? No.

Compared to CISC instruction sets? Absolutely no.

BF might be highly efficient if crunched down to a bit-packed representation (3 bits per instruction) and run on an FPGA that understands it.

[–] [email protected] 6 points 7 months ago

For demonstrating to CS freshmen that Turing Completeness isn't that remarkable of a language feature: very highly efficient.

[–] [email protected] 6 points 7 months ago (3 children)

Can be compressed very efficiently. I do dread the thought of writing a driver in brainfuck.

[–] [email protected] 5 points 7 months ago* (last edited 7 months ago)

Can be compressed very efficiently.

Which basically means: "You have to write more code than actually needed". It's more a con than a pro in my eyes.

[–] [email protected] 2 points 7 months ago

Hot take: As a VM with only eight instructions, it's very easy to code and securely sandbox. Maybe BF has utility as a compilation target?

[–] [email protected] 1 points 7 months ago (1 children)
[–] [email protected] 5 points 7 months ago

Hardware is complex and mysterious enough without added complexity of an esoteric language.