The Golang Compiler Feature You Might Not Know!?

Sdílet
Vložit
  • čas přidán 6. 03. 2024
  • ► Join my Discord community for free education 👉 / discord
    ► Exclusive Lessons, Mentorship, And Videos 👉 / anthonygg_
    ► 33% OFF on my Go + HTMX + Templ Course PRESALE 👉bit.ly/3UFruxO
    ► Enjoy a 60% Black Friday Discount on My Golang Course 👉 fulltimegodev.com
    ► Learn how I became a self-taught software engineer 👉fulltimegodev.com/#mystory
    ► Follow me on Twitter 👉 / anthdm
    ► Follow me on GitHub 👉 github.com/anthdm
    Grab yourself a 33% OFF on the PRESALE event of my building production ready applications with GO + HTMX + Templ + Tailwindcss + JQuery course here: bit.ly/3UFruxO
    SUBSCRIBE OR NO MARGARITAS
    ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
    ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
    ╠╗║╚╝║║╠╗║╚╣║║║║║═╣
    ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Komentáře • 42

  • @anthonygg_
    @anthonygg_  Před 3 měsíci +1

    ► 33% OFF on my Go + HTMX + Templ Course PRESALE 👉bit.ly/3UFruxO
    ► Join my Discord community for free education 👉 discord.com/invite/Ac7CWREe58
    ► Exclusive Lessons, Mentorship, And Videos 👉 www.patreon.com/anthonygg_
    ► 60% OFF on my Golang course 👉 fulltimegodev.com
    Thanks for watching

  • @mrkostya008
    @mrkostya008 Před 3 měsíci +4

    i think another cool usage pattern can be config packages: the prod would load everything from environment variables while dev build will have everything hardcoded, which is easier to manage.

  • @derpenstocks
    @derpenstocks Před 3 měsíci +13

    Btw neovim currently has the same issue around displaying errors related to build tags. Pretty sure it's just a gopls problem.

    • @nodidog
      @nodidog Před 3 měsíci

      Been like that for years. If you want a workaround, check the issue: golang/go/issues/29202
      You can just add all of your common tags (dev, prod, etc.)

    • @DrewryPope
      @DrewryPope Před 3 měsíci +1

      You can set the tags for gopls to use in settings

    • @derpenstocks
      @derpenstocks Před 3 měsíci

      @@DrewryPope honestly I tried but never got a configuration that worked. Eventually just gave up

    • @nodidog
      @nodidog Před 3 měsíci

      I left an explanation for a fix, but CZcams deleted by comment, I assume because it had a link in it. Thanks YT - fighting the good fight, as usual.

  • @mementomori8856
    @mementomori8856 Před 3 měsíci +11

    I always learn something new with every video you release

  • @ForeverZer0
    @ForeverZer0 Před 3 měsíci +3

    It might be worth noting that the "+build tag" syntax is deprecated, and was replaced (i think in version 1.16?) with the "go:build tag". gofmt will automatically update it to the newer syntax, and the compiler will continue to work with it for a few versions during transition (according to Google), but unless you are writing code that is intending to be compiled with old versions of Go, you do not need to bother with the "+build".

  • @LeeZhenYong
    @LeeZhenYong Před 3 měsíci +1

    Love the use case at the end 👍🏼

  • @demmidemmi
    @demmidemmi Před 3 měsíci +1

    Á similar trick is to pass in variables at build time with - ldflags, for example version numbers.

  • @michelTH2022
    @michelTH2022 Před 3 měsíci +1

    As usual, a great video 🙂
    More videos on that topic would be interesting.

  • @joeyhills212
    @joeyhills212 Před 2 měsíci +1

    This is so useful for something im working on right now thank you! I have a raspberry pi that needs to run to run some CGO that only compiles for ARM chips and when i run the server code on my x86 server i cant get it to compile because of the C library dependency.

  • @AmirHosseinHonardust
    @AmirHosseinHonardust Před 2 měsíci

    Amazing. This can help me have a very good way of managing my runtime for my computer where I can make a local friendly runtime without the danger of pushing my changes to the server.

  • @donnacasterr6223
    @donnacasterr6223 Před 3 měsíci +1

    Good tip. FIrst time learning of this. Thanks

  • @onlineque
    @onlineque Před 3 měsíci

    Thanks, man 🙏 Great video

  • @davidhinojosa3680
    @davidhinojosa3680 Před 3 měsíci

    This is awesome! I was struggling to make the hot reload work in dev while still using the embed functionality. I was importing all of tailwind in dev for the meantime 😂 Will definitely try this.

  • @terraflops
    @terraflops Před 3 měsíci +1

    new to Go lang and this is very helpful to know.

  • @inaccessiblecardinal9352
    @inaccessiblecardinal9352 Před 3 měsíci +1

    This is pretty neat. Already know use cases.

  • @NiltonOS
    @NiltonOS Před 3 měsíci

    Anthony nice tips !!!, Thanks

  • @Tobsson
    @Tobsson Před 3 měsíci +2

    I always loved the idea of go, but you can bundle all the css, html or whatever you want into the binary? That's crazy! 😅

  • @lowmagnet
    @lowmagnet Před 3 měsíci +1

    That's a nice use case!

  • @suikast420
    @suikast420 Před 3 měsíci

    Hey Anthony .
    Great talk again.
    I have had seen a video from you where you talk about of reusing golang references with a repository pattern for avoiding gc cycles.
    But I can't find anymore.
    Can you give me a hint?

  • @Yoshidzo
    @Yoshidzo Před 3 měsíci +2

    Hey Anthony, what's your VSCode theme? Love the videos.

  • @aamonaze
    @aamonaze Před 3 měsíci +1

    finally his back

  • @kiquetal
    @kiquetal Před 3 měsíci

    i'm trying to be a pro, and use my intellij with go-plugin(ex java dev,here) is extremely ama
    zing learn from you Sir,thanks!

  • @derpenstocks
    @derpenstocks Před 3 měsíci +1

    off topic question: what's with the prettier thing in the bottom right of your vscode? Are you using prettier to format go (serious question, I know it can be used to format rust)

    • @anthonygg_
      @anthonygg_  Před 3 měsíci +2

      I think its an old relic when writing typescript

  • @NiltonOS
    @NiltonOS Před 3 měsíci

    Anthony, I'm a student on your HMTX course, can you give me a better coupon so I can buy the other Full Time Go Dev course?

  • @thoriqadillah7780
    @thoriqadillah7780 Před 3 měsíci +1

    I miss code with golang. Currently coding with express + typescript, and that thing eating my machine. Building the project eats 2 gb of ram and 8 gb of my laptop is barely capable for development. That's crazy for a 2 weeks old of project. Meanwhile my download manager written in golang that has more files and it feels like nothing

  • @javadahmadian7782
    @javadahmadian7782 Před 3 měsíci +4

    So good

  • @morkhoudia9
    @morkhoudia9 Před 3 měsíci

    what is the difference btw anthonygg and golang std library ? One talking and practicing, the other a high documentation not well understood to all except anthony gg. 🙂

  • @snake3837
    @snake3837 Před 3 měsíci

    Use lazyvim or astronvim instead of building everything from scratch.

  • @shivamkumarz
    @shivamkumarz Před 3 měsíci +1

    Amazing

  • @brickmastertube
    @brickmastertube Před 3 měsíci +2

    The fact that you're basing your yt tutorial videos on actual real projects you're working on makes all the difference.

  • @agp745
    @agp745 Před 3 měsíci +1

    The Go Goat

  • @cougarmama7589
    @cougarmama7589 Před 2 měsíci

    Gave the video a thumbs up for the leechers