The Value of Values with Rich Hickey

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 49

  • @fxbehr
    @fxbehr 12 ปีที่แล้ว +66

    Rich Hickey is a genius. The Lisp and Java Communities are listening to him. I don't know anyone else who accomplished this before him.

    • @greenfloatingtoad
      @greenfloatingtoad 4 ปีที่แล้ว +7

      Interestingly, a lot of the Java designers were big names in the lisp world, like Guy Steele.

    • @defnlife1683
      @defnlife1683 2 ปีที่แล้ว +1

      @@greenfloatingtoad he co-designed Scheme, which is awesome!

  • @ChristopherOkhravi
    @ChristopherOkhravi 7 ปีที่แล้ว +48

    Almost 5 years later... still extremely interesting. Thank you :)

    • @daveachuk
      @daveachuk 6 ปีที่แล้ว +4

      Funny thing about functional programming: it seems it only gets more relevant with time. For example, everyone in the client-side web world is totally into React now. React is basically this presentation in JS form.

    • @rd_45
      @rd_45 5 หลายเดือนก่อน +1

      I came here on your Recommedation

    • @ChristopherOkhravi
      @ChristopherOkhravi 6 ชั่วโมงที่ผ่านมา

      @@rd_45 Awesome 😊

  • @timv6141
    @timv6141 9 ปีที่แล้ว +22

    This talk is so on point.

  • @ws9691
    @ws9691 3 ปีที่แล้ว +4

    I wasn't expecting much.. but @16:56 was really eye opening!

  • @CalvaTV
    @CalvaTV 2 ปีที่แล้ว +1

    I felt uncomfortable with that Facts slide this time. Last time I saw this talk, I didn't think much about that slide. Was more wondering where it was going. Then it took me a while to understand where it has gone. Wonderful talk! Very valuable.

  • @awright18
    @awright18 4 ปีที่แล้ว +16

    The door is wide open for people to kick the competitions ass by using things like clojure and datomic to make simple systems that are easy to change and maintain, and truly transform the industry. This is still true today many 8 years later. We work around the OO ideas and PLOP ideas and give our customers slow expensive systems. Its ridiculous.

  • @fengzhou6884
    @fengzhou6884 7 ปีที่แล้ว +4

    When memory increases 1 million fold, everything will change! Nice talk!

  • @jav20a
    @jav20a 8 ปีที่แล้ว +11

    Awesome talk. Thanks Rich.

  • @itellyouforfree7238
    @itellyouforfree7238 ปีที่แล้ว +1

    still, current computing machines are place based (memory addresses, registers) and mutability is required somewhere along the chain to achieve decent performance

  • @WasifHasanBaig
    @WasifHasanBaig 9 ปีที่แล้ว +10

    A very insightful talk.

  • @arikc5201
    @arikc5201 7 ปีที่แล้ว +9

    Very insightful talk. I'm defintely sold on immutability.

    • @leocrapart6521
      @leocrapart6521 2 ปีที่แล้ว

      Immutably sold on immutability

  • @mitchellhendrix
    @mitchellhendrix 3 ปีที่แล้ว +1

    Really fascinating

  • @kris1227
    @kris1227 8 ปีที่แล้ว +3

    Hears how to use this object on a napkin lol. Love Rich Hickey.

  • @kevincasey2036
    @kevincasey2036 11 ปีที่แล้ว +12

    lol @ 18:21. Visible involuntary shudder at the thought of xml.

    • @DanHaiduc
      @DanHaiduc 4 ปีที่แล้ว +1

      "I wouldn't touch it with a 10-foot pole. But whatever floats your boat."

  • @Gennys
    @Gennys 3 ปีที่แล้ว +3

    If a string is mutable it's still a value... I"m so lost,if that's the presupposition that we're relying on.

    • @MadaraUchihaSecondRikudo
      @MadaraUchihaSecondRikudo 3 ปีที่แล้ว +3

      It's not, it's a place, or a collection of places, which stores a value, but what's stored in the place can change, and so you can look at the same string at two different points in time, and see two different projections of the values stored inside.

  • @nirgle
    @nirgle 5 ปีที่แล้ว +2

    Great talk!

  • @Bestape
    @Bestape 3 ปีที่แล้ว +1

    The namespace is place. But hopefully it's legoland with moduled chains.

  • @emeka1978
    @emeka1978 12 ปีที่แล้ว +3

    Rich knows how to sell its products. I would love to see Dr Tarver do the same for Shen.

  • @viebel
    @viebel 10 ปีที่แล้ว +4

    Great talk! Are the slides available somewhere?

  • @diegonayalazo
    @diegonayalazo 2 ปีที่แล้ว

    Thanks for sharing

  • @MattClimbs
    @MattClimbs 3 ปีที่แล้ว +1

    I don't understand how a value is 'semantically transparent'. Perhaps if that value has a label then it could convey the meaning of the value but without it isn't a value just data without any meaning? For example, Rich says a string is a value if it's immutable and comparable. So the string "as23casd" could be a value, but what's its meaning? How is it 'semantically transparent'?

    • @prabhugopal
      @prabhugopal 3 ปีที่แล้ว

      @Matthew Cochrane, What Rich refers here is "value" = " immutable data/value", example : { String JUNK= "as23casd"; } not the name or label. were in java except String, other types are by default mutable. to keep it simple if you alter/modify a String in java actually the old memory is dissociated, a new memory is created & associated to "JUNK". But this is not case with int, long, etc.. where the same memory is used but value is altered. Imagine "JUNK" is using memory address 0x6677 initially, after modification you may see different memory address 0x7788. But say, int i=0 and it got memory address 0x7878 ; now if we update with i++ or i=20, we will see same memory address after our update. If you ask why it matters, in concurrency immutable data helps avoid race condition & other problems while sharing data in multiple threads. So your value is "semantically transparent" with immutable data or value but with mutable date or variables (here variable mean not the name or label) you loose the transparency if any thread can modify it.

    • @andreffrosa
      @andreffrosa 5 หลายเดือนก่อน

      ​@@prabhugopalints are values

  • @citiblocsMaster
    @citiblocsMaster 6 ปีที่แล้ว +10

    10:52 Rich doing the datomic logo with his hands, so your subconscious thinks it's great

  • @sripasum3122
    @sripasum3122 8 ปีที่แล้ว +5

    More like functional programming by wittgenstein

  • @CarlosSaltos
    @CarlosSaltos 11 ปีที่แล้ว +1

    by the way, thanks for the keynote, it's AMAZING !! (Y) :)

  • @mikejanzen9014
    @mikejanzen9014 8 ปีที่แล้ว +6

    So true: 15:40-16:10

  • @jymer2000
    @jymer2000 11 ปีที่แล้ว +2

    Because the man doesn't want to let anything go to garbage collection.

  • @jymer2000
    @jymer2000 11 ปีที่แล้ว +5

    This guy should be on hoarders...

  • @mfreeman451
    @mfreeman451 11 ปีที่แล้ว +2

    aha nice

  • @GloriaBrown-b8c
    @GloriaBrown-b8c 3 หลายเดือนก่อน

    Wilson Kevin Moore Donald Hernandez Eric

  • @mfreeman451
    @mfreeman451 11 ปีที่แล้ว +1

    lol why?

  • @CarlosSaltos
    @CarlosSaltos 11 ปีที่แล้ว

    Space ? ... in Spanish a direct translation sounds limiting, weak ... how about Cosmos, or Universe ... the Universal Age !! ... la Era Universal !! ... WOW !! ;) :)

  • @МихаилПрохоров-щ5й
    @МихаилПрохоров-щ5й 6 ปีที่แล้ว +7

    I, for one, would not like my future information systems to constantly consume more and more space because they "produce new facts". This is exteremely expansionist view of the world that assumes resources to be inifinite and infinitely cheap. Yes, the memory doesn't just "replace" something with something else in the "same place" - no, it, in fact, frequently "writes" other random and usually unrelated facts. Because space is not infinite, neither in memory nor in informations systems. Our own universe is the only thing known to man which resembles any kind of infinity properties, and even this might just be tricks our reasoning methods play on observed world.

    • @willmcpherson2
      @willmcpherson2 5 ปีที่แล้ว +12

      As he said in the talk, we have garbage collection for memory and we'll probably get garbage collection for persistent memory as well. The brain does this.
      It's less "space" and more "space for all intents and purposes".