What's New in Elixir 1.18?

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

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

  • @dhonydev
    @dhonydev День назад +2

    As always, outstanding content. Thanks.

  • @tevoj
    @tevoj 5 часов назад +1

    Such a good content! Thanks!

  • @victorkarlsson5183
    @victorkarlsson5183 День назад +2

    Great video and presentation. Subscribed! Looking forward to more content.

  • @jordelver
    @jordelver День назад +1

    Great concise video. Thank you!

  • @anishsekhar1702
    @anishsekhar1702 День назад +1

    Nice, concise video with everything well explained. good stuff!

  • @2mbst1
    @2mbst1 2 дня назад +1

    Nice! I always wrote a simple for loop to create table tests. Great to have first class support for them now!

  • @shahryartavakkoli
    @shahryartavakkoli 2 дня назад +3

    Whoa, this video was turbo speed! Like, seriously, well played! 👏😄

    • @CodeAndStuff
      @CodeAndStuff  2 дня назад +2

      I wasn’t sure when the RC would come out but I did this research and recorded a few weeks ago. I don’t cover JSON, but I think it’s fine!

  • @elchemista
    @elchemista 2 дня назад +1

    Good stuff! 🎉

  • @diogonunescarvalho2439
    @diogonunescarvalho2439 2 дня назад

    Do you have any tips for those who want to start learning Elixir? A book or something like that...

    • @toxtethogrady4610
      @toxtethogrady4610 2 дня назад +3

      Elixir docs.

    • @CodeAndStuff
      @CodeAndStuff  День назад +2

      The third edition of Elixir in Action is the most recent entrypoint to Elixir: www.manning.com/books/elixir-in-action-third-edition

    • @diogonunescarvalho2439
      @diogonunescarvalho2439 День назад

      @@toxtethogrady4610 thank you!!

  • @MathewWarger
    @MathewWarger День назад

    You mentioned that everyone should be using async: true on tests. If that's true, why is it not the default? Do you think it should be the default?

    • @CodeAndStuff
      @CodeAndStuff  День назад +1

      It’s a balance between safety and performance, where two tests might contend over a shared resource like a file or a port. Safety is a good default, but in practice most tests won’t fail in this way.