17
bb6xt
7y

If you ever feel that you have a shitty job just remember that there is a programming language called Brainfuck and at least once in time it was someone's job to debug a real program written in Brainfuck. For context, this is a 'Hello World' program in Brainfuck:

++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

And here is the same program in the Python programming language:

print('Hello World')

Comments
  • 10
    They would only debug it if they wanted to or it was a challenge. I don't know of anyone that would use an esoteric language like BF for anything serious. Not sure you could.
  • 4
    @JammehCow I was just saying if there ever was a job that involved debugging BF that job would trump every other as the shittiest.
  • 2
    @bb6xt well I certainly agree with that. Luckily that's not a reality.
  • 0
    The name itself is fuck up.
  • 2
    This is my first time encountering brainfuck. My reaction is along the lines of:
    I...Wai..What does it..I..But...What the fuck is this?
  • 0
    How the actual fuck do you learn that syntax
  • 1
    still better than php tho 😂
  • 0
    @bori0066 I didn't, just copied it from Wikipedia
  • 0
    @jackgreen php can't be that bad!
  • 0
    The syntax is actually pretty simple - only eight commands!

    I encourage people to try writing in it, it's quite fun if you like brainteasers.
Add Comment