Go Programming - JSON Encoding & Decoding in Golang

Поділитися
Вставка
  • Опубліковано 16 вер 2024

КОМЕНТАРІ • 27

  • @lifeofdandotme
    @lifeofdandotme Рік тому +4

    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!

  • @krishnabharadwaj4715
    @krishnabharadwaj4715 3 місяці тому +1

    wow go is an amazing language and so are your tutorials

  • @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 😄

  • @khairulhaaziq2332
    @khairulhaaziq2332 8 місяців тому

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

    • @bugbytes3923
      @bugbytes3923  8 місяців тому

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

  • @CryptoJBro
    @CryptoJBro Місяць тому

    Thanks, this was a great tutorial.

    • @bugbytes3923
      @bugbytes3923  Місяць тому

      Awesome! Thanks for your comment!

  • @Ego_Maritm
    @Ego_Maritm Рік тому +2

    Thank you for the quality video bro.

  • @alperari9496
    @alperari9496 5 місяців тому

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

    • @bugbytes3923
      @bugbytes3923  5 місяців тому

      Thanks a lot, much appreciated!

  • @troll_town_usa_pop_u
    @troll_town_usa_pop_u 4 місяці тому

    Life saver, I appreciate you.

  • @EightSixx
    @EightSixx Рік тому +1

    yay more Go! thanks, keep it up.

  • @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 11 місяців тому

      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 27 днів тому

    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 20 днів тому

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

    • @Chris-jp6ll
      @Chris-jp6ll 20 днів тому

      @@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 {"
    ?