Learn recursion with Gleam

แชร์
ฝัง

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

  • @IsaacHarrisHolt
    @IsaacHarrisHolt  2 วันที่ผ่านมา

    The first 500 people to use my link skl.sh/isaacharrisholt12241 will get a 1 month free trial of Skillshare!
    Yes, I know I'm overexposed. New camera, working on it!

    • @slpwrm
      @slpwrm 14 ชั่วโมงที่ผ่านมา

      Angelic

  • @minandychoi8597
    @minandychoi8597 8 ชั่วโมงที่ผ่านมา +5

    when an app opens in light mode

  • @PiyushChauhan2011
    @PiyushChauhan2011 3 ชั่วโมงที่ผ่านมา

    Thank you, Awesome video!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  31 นาทีที่ผ่านมา

      Glad you found it useful!

  • @seannewell397
    @seannewell397 15 ชั่วโมงที่ผ่านมา +9

    Just on my phone (pixel 6a) but the white balance seems quite white imo at 0:29

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  15 ชั่วโมงที่ผ่านมา +1

      It 100% is way too exposed 😅

  • @emmanuelgenga7421
    @emmanuelgenga7421 11 ชั่วโมงที่ผ่านมา +1

    Awesome video, I'd like to request a video on decoding nested json in gleam using the zero api

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  9 ชั่วโมงที่ผ่านมา

      Definitely got a JSON video planned!

  • @YuraSuper2048
    @YuraSuper2048 2 ชั่วโมงที่ผ่านมา

    is that what people feel when i tell them that lifetimes in rust are good actually ._. i don't really get why would you sacrifice both performance and understandability and simplicity (except when you are walking through a branching structure) for purity

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  31 นาทีที่ผ่านมา

      You're not sacrificing performance though. As I said, tail call optimised recursive functions get compiled down to tight loops, so they perform exactly the same.

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

    I’m still trying to understand why such functional language is something needed ? To me it seem a bit complicated

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  30 นาทีที่ผ่านมา

      Gleam is actually a lot simpler than an object oriented language! There's a lot less to learn and a lot less going on. It's merely a matter of what you're used to

  • @gro967
    @gro967 12 ชั่วโมงที่ผ่านมา +1

    Goodbye for loop hello out of memory xD

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  11 ชั่วโมงที่ผ่านมา +1

      Someone didn't watch all the way to the end before commenting 👀

  • @kodosunofficial_5
    @kodosunofficial_5 15 ชั่วโมงที่ผ่านมา

    next: higher order function, currying, folding, and partial application

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  14 ชั่วโมงที่ผ่านมา

      Gleam doesn't support currying or partial application (at least, not in a generalised way). Higher order functions are a big part of any functional language, but I'm not sure how much of a video I could do on them 😅

    • @loo_9
      @loo_9 13 ชั่วโมงที่ผ่านมา +1

      @@IsaacHarrisHoltI would find it super valuable if you did a video reviewing gleam code and showing how it could be simplified using the standard library. plenty of higher order functions there

    • @jamesarthurkimbell
      @jamesarthurkimbell 11 ชั่วโมงที่ผ่านมา +1

      @@IsaacHarrisHolt Whatever you call it, the quick "let add_one = add(1, _)" type of function is a lovely way of doing what I think of when I think of partials