01 HTTP Library in Common Lisp

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 14

  • @anakimluke
    @anakimluke 6 месяцев назад

    I came back for a second watch! after revisiting a lisp book trying to understand some topics I had not, I remembered this series and wanted to see some lisp in action!!

  • @vindarel
    @vindarel Год назад +8

    A tip, for you or/and the reader: the C-c C-y shortcut in Slime pre-writes a function call on the REPL for the function the point is in, and places the cursor so than you only have to write the parameters. It adds the package prefix if needed, with one : or two :: as required. Quite handy, it allows to quickly test functions at the REPL with less typing :]

  • @anakimluke
    @anakimluke Год назад +2

    Thanks for the video! I'm currently learning lisp and found it really interesting to see how a more realistic project is made!

  • @vindarel
    @vindarel Год назад +1

    Excellent series! You would have caught the cd/cdr and "format nil" typos earlier with a C-c C-c on the functions (but I would have expected the quickload to show the warnings too 🤔).

  • @user-ui8my9zs7o
    @user-ui8my9zs7o Год назад +1

    Id love more vids like this!!!!

  • @visualisierte
    @visualisierte Год назад +1

    Thank you for the video!

  • @FullGardenStudent
    @FullGardenStudent Год назад

    I came to learn a little lisp but I found gold.

  • @pricesmith1793
    @pricesmith1793 8 месяцев назад

    Thanks for the video!!! Super awesome. If there is any light backlog for requests, could you add a simple project like this mixed in with some 'how-to-emacs' stuff? I find material that gets your hands dirty with both at the same time as few/far-between as it is necessary.

  • @acobster
    @acobster Год назад +2

    Do you really need the lambda wrapping `header->string`? Couldn't you just do `(map header->string headers)` ? I don't write CL so I don't know if this is supported or idiomatic.

    • @Honken
      @Honken 3 месяца назад

      Yes. The syntax for passing a function point free style is:
      (mapcar #'header->string headers)

  • @StupidusMaximusTheFirst
    @StupidusMaximusTheFirst 6 месяцев назад

    I'd rather write Perl. 🤣