Wat

https://www.destroyallsoftware.com/talks/wat

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

29 points · 5 comments · view on lemmy.world

5 Comments

entropicdrift@lemmy.sdf.org · 10 pts · 1y

Classic

dosuser123456@lemmy.sdf.org · 9 pts · 1y

"lets talk about javascri--"

audience: ROTFLMFAO

xoggy@programming.dev · 3 pts · 1y

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

ClassifiedPancake@discuss.tchncs.de · 3 pts · 1y

Legendary talk

BewitchedBargain@reddthat.com · 1 pts · 1y

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.