this post was submitted on 09 Oct 2024
25 points (100.0% liked)

Programmer Humor

19397 readers
317 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
25
Wat (www.destroyallsoftware.com)
submitted 2 weeks ago by AlligatorBlizzard to c/[email protected]
 

Everyone has probably already seen this, it's worth posting anyway.

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 8 points 2 weeks ago
[–] [email protected] 7 points 1 week ago

"lets talk about javascri--"

audience: ROTFLMFAO

[–] [email protected] 6 points 2 weeks ago

Upvoting a classic. Watch his other talks too. Entertaining and thought provoking.

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

Legendary talk

[–] [email protected] 2 points 1 week ago* (last edited 1 week ago)

This might be from an old version of ruby, but:

irb(main):001:0> a
NameError: undefined local variable or method `a' for main:Object
        from (irb):1
        from C:/Ruby23-x64/bin/irb.cmd:19:in `<main>'
irb(main):002:0> b
NameError: undefined local variable or method `b' for main:Object
        from (irb):2
        from C:/Ruby23-x64/bin/irb.cmd:19:in `<main>'
irb(main):003:0> a=b
NameError: undefined local variable or method `b' for main:Object
        from (irb):3
        from C:/Ruby23-x64/bin/irb.cmd:19:in `<main>'
irb(main):004:0> a
=> nil

This NameError doesn't stop the assignment, going through despite the error.