Hammock Driven Development - Rich Hickey

Sdílet
Vložit
  • čas přidán 11. 06. 2024
  • Rich Hickey's second, "philosophical" talk at the first Clojure Conj, in Durham, North Carolina on October 23rd, 2010.
    Many thanks to Matt Courtney, who graciously provided the equipment and expertise that made this recording possible.
  • Věda a technologie

Komentáře • 29

  • @alrightsquinky7798
    @alrightsquinky7798 Před 4 lety +27

    "Not everything is awesome." Amen! Thank you, Rich.

  • @DemmyDemon
    @DemmyDemon Před rokem +22

    I got good at explaining problems by explaining them to my dog.
    The dog enjoyed the attention, I benefited from formulating the problem in words. Win-win.
    Since my dog passed, I have been having a hard time coming up with a replacement explanation target. I should just get another dog.

    • @johnshaver4870
      @johnshaver4870 Před rokem +3

      It sound to me like you could expense it to the company, too. You may as well. 😆

  • @fungiside
    @fungiside Před 9 lety +23

    Excellent talk. Thanks for sharing this with us Rich.

  • @poinav55
    @poinav55 Před 5 lety +13

    one of the best talk on software development.

  • @shipper66
    @shipper66 Před 9 lety +16

    I like bed driven development, I'm gonna try hammock now. Thanks Rich :)

  • @aaronbell5994
    @aaronbell5994 Před rokem +2

    This has helped permanently change how I think.

  • @burakcopur3841
    @burakcopur3841 Před 8 lety +11

    As he says, Polya's How to Solve It focuses on math and of course should be read. To supplement it with algorithmic thinking, there is a great book called How to Solve It by Computer, similar in the spirit.

  • @Leto2ndAtreides
    @Leto2ndAtreides Před 9 lety +2

    Good stuff! Good stuff!

  • @jakejakeboom
    @jakejakeboom Před 7 lety +5

    I do my best problem thinking when running personally, but a hammock would be nice

  • @diegonayalazo
    @diegonayalazo Před 2 lety +1

    Thanks

  • @justinmccune7
    @justinmccune7 Před 7 lety +22

    FYI> The Science of Programming by Dr. William Gries has a formal methodology (based in math) for the proving/developing of algorithms. It is my most frequently re-read college text (and I took the course from Dr. Gries in 1996). While this book's ideas may not help with general programming/development like the e-commerce example, it certainly can apply to the development and proving that an algorithm is correct (and is a great way to practice thinking about problem solving, and does involve writing it down...)

  • @Ephrones
    @Ephrones Před 11 lety +1

    Very interesting concepts, and mostly new to me. Let’s try them out, shall we? ;)

  • @fffrrrrnnn
    @fffrrrrnnn Před 5 lety +5

    'Mathematical thought' is logical thought, as is algorithmic thought. They are in their surfaces different but at the core the same. Practice devoted to 'mathematical thought' or any thought of precise logical structure will naturally harvest fruit in endeavours of algorithmic nature.
    Of course logical thought is constrained by its sequential nature (as are our machines of logical thought manifested). In order to "truly think", we do find the unconstrained mind to be orders of magnitude faster and more effective than the relatively inept and slow "logical mind." As the nature of reality "has the advantage" of happening all-at-once-and the human body and its brain being part of this reality, the unconstrained thought is more akin in shape and form to a tempestuous ocean, and ideas and thoughts come and go, appear and disappear continuously in never ending streams, un-bottlenecked by the one-by-one method of logical sequential implication. This is the natural thought-the thought of nature-our natural mode of thinking. The one that goes on even now, as our heart beats and our lungs breathe, and our neurons fire in the billions, even as we have no knowledge or control of their methods.
    Curiously, now you have presented a simple & brilliant algorithm-and great justification to do so-to plug in into this "mode of thinking" in place of-or rather as you put it in your title, to "Step Away From The Computer."
    Love all your talks Rich and as always great insight.
    Cheers from Prague,
    JFG

  • @omkarenator
    @omkarenator Před 11 lety +6

    can we please have the slides?

    • @jesseacummins
      @jesseacummins Před 6 lety +7

      Check out the transcript, which has slides: github.com/matthiasn/talk-transcripts/blob/master/Hickey_Rich/HammockDrivenDev.md

  • @onionpancakes
    @onionpancakes Před 3 lety +5

    14:24 Not everything is awesome.

  • @kumarjavvaji
    @kumarjavvaji Před 9 lety +4

    sounds like life-hacking.

  • @louisthibault555
    @louisthibault555 Před 4 lety +4

    Embarrassingly, I never know what to write down when researching stuff. Any suggestions for how to take good notes?

    • @softwareminimalist
      @softwareminimalist Před 4 lety +11

      Step one - Stop worrying about the notes being good, and just start writing stuff down :)
      Step two - Continue doing that.

    • @CraigPerry
      @CraigPerry Před 3 lety +2

      Have you come across the “slip box” method? Zettelkasten. There’s also an excellent essay from the 50s i think called something like how to read. That paper has been mega influential in my life in terms of how i research.

    • @johntacos153
      @johntacos153 Před 3 lety

      Check out "how to take smart notes" by Sönke Ahrens :)

    • @a0um
      @a0um Před rokem

      It seems you’re asking two questions here. 1) what to write? 2) how to take notes?

  • @DevinRhode2
    @DevinRhode2 Před 7 lety +5

    dynamic typing == avoiding problems?

    • @a0um
      @a0um Před rokem +2

      I can’t find exactly what Rich said in this talk regarding dynamic typing, but I guess from his emphasis on trade-offs and problem solving that he meant ‘dynamic typing avoids *some* problems’, as in problems that are not part of an application domain.