How to Use Kotlin's Timing API

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

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

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

    What are your thoughts about Kotlin's Timing API? Do you have any questions about it?

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

    So glad I discovered your channel by reading your article on when to use sequences! Your content it so well structured and presented, a true educator. Thank you!

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

      Hey, thank you so much - that means a lot to me! 🙂

  • @Alchemist10241
    @Alchemist10241 3 หลายเดือนก่อน

    The toComponents function is very useful for retrieving durations from the database and displaying them to the user. It makes our work much easier.

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

    Found a Kotlin Genie.

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

    You the best!

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

      Thank you! 🙂

  • @hosenalzuhile3019
    @hosenalzuhile3019 8 หลายเดือนก่อน

    Your videos are very amazing and useful, they contains the hidden treasures of Kotlin, Thanks a lot!

    • @typealias
      @typealias  8 หลายเดือนก่อน

      You're most welcome! I'm so glad you're enjoying them!

  • @leas9019
    @leas9019 ปีที่แล้ว

    I"m here because your blog sent me to your linkedin that sent me to your YT :D I just wanted to thank you i loooove your blog it's helping me so much understand things i was never able to understand (as lambda functions, generic variance etc). You're awesome really really excellent THANK YOU

    • @typealias
      @typealias  ปีที่แล้ว

      Wow, thanks so much! I'm so glad to hear that it's all been so helpful for you! I'll keep at it! 😁

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

      @@typealias Ooh yes yes please keep it up you definitely is the most talented teacher out there ❤ ans sealed classed and the coroutines scopes are still a mystery that I use without understanding 😅😢 can't wait for it!!

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

    I would love to see a video about generics in kotlin

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

      Thanks for the suggestion! I'll add it to the list. 👍

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

    Great and entertaining videos

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

      Hey, thanks so much! I'm glad you enjoyed it! 🙂

  • @aerikezedek
    @aerikezedek 2 หลายเดือนก่อน

    awesome content! thanks

  • @Elizabeth-hv4po
    @Elizabeth-hv4po ปีที่แล้ว

    Great vid Dave!

    • @typealias
      @typealias  ปีที่แล้ว

      Hey, thanks so much Elizabeth! I appreciate that! 🙂

  • @FeuFeuPatta
    @FeuFeuPatta ปีที่แล้ว

    These last two videos were really helpful. Thank you!
    One question: When injecting the TimeSource as a constructor argument, is there any problem with defining the source (TimeSource.Monotonic) as a Single(ton), e.g. in Koin?
    Or should it rather be created anew for each instance?

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

      Glad to hear it! Thanks for letting me know!
      The standard library defines TimeSource.Monotonic as an `object` rather than a `class`, so using "single" for it in Koin would be appropriate. 👍

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

      @@typealias Ah, wow, I could’ve just checked the source. Thank you!

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

      Haha, that's fine. 🙂 And you're most welcome!

  • @vegai
    @vegai 6 หลายเดือนก่อน

    Duration object is such an obvious thing and yet everyone keeps just throwing integers around and hoping everyone interprets them correctly. At least outside of Kotlin.