Go Programming - JSON Encoding & Decoding in Golang

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

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

  • @akkrecola
    @akkrecola หลายเดือนก่อน +1

    Fundamental, simple, effective, to the point. Great video!

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

    Your videos are snappy, clearly delivered, and contain exactly the right amount of additional “extras” like the verbose way to do something and a succinct way to do it. Thank you very much for your quality videos!

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

      Thanks a lot! Really appreciate the nice comment, cheers!

  • @trh786fed
    @trh786fed 2 หลายเดือนก่อน +1

    simple, straight to the point, rich in information, hands-on approach with examples, 10/10 + Loved the scottish accent

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

      Thank you, glad you like the content (and the accent) - cheers!

  • @coderdbd
    @coderdbd 3 หลายเดือนก่อน +2

    Clear, simple and to the point, great video. Thanks!

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

      Glad you liked it! Thanks for watching.

  • @nathanjon8188
    @nathanjon8188 8 วันที่ผ่านมา +1

    Terrific explanation, learned a lot!

    • @bugbytes3923
      @bugbytes3923  8 วันที่ผ่านมา

      @@nathanjon8188 thanks a lot, glad to hear that!

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

    dude thanks so much, you are the best go instructor here, please keep doing more videos on go!

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

      Amazing to hear that, thanks for the nice comment! Definitely go do some more soon.

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

    Great 😀. You kept your promise as you always do. Thanks very much for your educative gists.

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

      Thanks as always!
      More Go videos to come, and a lot of other stuff too 😄

  • @krishnabharadwaj4715
    @krishnabharadwaj4715 7 หลายเดือนก่อน +1

    wow go is an amazing language and so are your tutorials

    • @bugbytes3923
      @bugbytes3923  7 หลายเดือนก่อน

      Thanks! Appreciate it!

  • @alperari9496
    @alperari9496 9 หลายเดือนก่อน

    Great work! The video is very well structured. Appreciated.

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

      Thanks a lot, much appreciated!

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

    Thank you for the quality video bro.

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

    Life saver, I appreciate you.

    • @bugbytes3923
      @bugbytes3923  7 หลายเดือนก่อน

      Thanks for the comment!

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

    yay more Go! thanks, keep it up.

  • @CryptoJBro
    @CryptoJBro 5 หลายเดือนก่อน

    Thanks, this was a great tutorial.

    • @bugbytes3923
      @bugbytes3923  5 หลายเดือนก่อน

      Awesome! Thanks for your comment!

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

    Oh cool. I’ve been interested in GO

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

      Nice - I hope the video's helpful! It's a cool language.

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

    It would be nice to see how to store todos in JSON to a NoSql database like clover. And then how to retrieve them.

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

      Interesting suggestion, thanks!

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

      Yes yes yes! Big definite on this one (yet to check the channel since this came out) but something like this for MongoDB would be mint 👌

  • @Chris-jp6ll
    @Chris-jp6ll 4 หลายเดือนก่อน

    to clarify: no, when your application exits without you having called defer body.close() you do not have a memory leak (because the application exited so the OS cleans up the resources).

    • @Ri5kyt
      @Ri5kyt 4 หลายเดือนก่อน

      Still best practice as if this function is called within a larger programme a memory issue might appear.

    • @Chris-jp6ll
      @Chris-jp6ll 4 หลายเดือนก่อน

      @@Ri5kyt of course, of course its important! just talking about what happens when a program exists 🙂

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

    I don't know Go, but always wonder: why not write "if err {" instead of "if err != nil {"
    ?