Golang Web Server and RSS Scraper | Full Tutorial

Поделиться
HTML-код
  • Опубликовано: 18 дек 2024

Комментарии •

  • @BrettRoscoe-b6t
    @BrettRoscoe-b6t 53 минуты назад

    I've really enjoyed making this project, and I've learned a lot from it. Thank-you for making this freely available on RUclips.

  • @ighsight
    @ighsight Год назад +50

    This is the first Golang video I’ve seen that actually walks through concurrency with a *real* use case. Most use trivial examples that I didn’t find helpful.
    Also really appreciate how Lane leaves his errors in the video and talks through how he solves them. MUCH more useful than just showing perfect code. Less experienced devs will encounter basic errors, and seeing the thought process behind solving them is very valuable. Truly a top tier Golang tutorial, thank you for devoting the time to do this.

  • @0lange
    @0lange Год назад +8

    So glad I ran into this channel.
    It would be great if you could make a video focused more backend development with Go. For instance, I know what an interface, struct, slice, etc is but how and when do you use them when working on a real-world backend application? The video could be something like "Go for backend development" or something else

    • @bootdotdev
      @bootdotdev  Год назад +3

      Be sure to sign up on Boot.dev for more of that kind of content

  • @paranoia77
    @paranoia77 Год назад +3

    This course is so good!
    Followed until the end.
    Looking forward to the next tutorial!

  • @nanonkay5669
    @nanonkay5669 6 месяцев назад +8

    Sqlc and goose is a combination I've been excited to put together and did it on my own for a bit. I like the two because no ORM, reported excellent performance, typesafe queries, raw SQL to stay familiar with sql (i.e. no magic from ORMs) and simplicity.

    • @NphiniT
      @NphiniT 3 месяца назад

      I'm getting this error trying to install sqlc: error: cc1.exe: sorry, unimplemented: 64-bit mode not compiled in
      I'm on windows. Do you have any ideas how to get around this?

    • @nanonkay5669
      @nanonkay5669 3 месяца назад

      @@NphiniT try putting the error in chatgpt or Gemini and see what it says. Otherwise, I use wsl2 for my dev work and that's where I installed it

    • @NphiniT
      @NphiniT 3 месяца назад

      @@nanonkay5669 Oh good idea 😅. Haven't used chatGPT since last year 😂🤣

    • @NphiniT
      @NphiniT 3 месяца назад

      @@nanonkay5669 Switched to WSL2. I think I'll do all my development here form now on. Thanks

    • @nanonkay5669
      @nanonkay5669 3 месяца назад

      @@NphiniT Sounds like maybe you didn't install them correctly. Did you do the installation just as how it appeared in the documentation?

  • @itsharsh5997
    @itsharsh5997 2 месяца назад +1

    quick overview on that contexts are in go at: 1:08:58

  • @EricT43
    @EricT43 9 месяцев назад

    Great video, thanks. I've built JSON REST APIs in Go before, but I've never used sqlc or goose. I'm looking forward to using those tools in my next project...

  • @kawthooleidevelopers
    @kawthooleidevelopers 7 месяцев назад +1

    Your backend course looks solid. I'm only interested in the Go related parts though. Will be signing up in a few days.

  • @adrishbora
    @adrishbora Год назад +1

    Upto 2:04 is prerequisites (can add this timestamp in the video as well!)

  • @yoskokleng3658
    @yoskokleng3658 8 месяцев назад

    you got my subscription for this video. i never see golang in real use case before. thanks for make this video happens. If could, please help make video about GO programming basic to advance.

  • @tonyjaradev
    @tonyjaradev 4 месяца назад

    This tutorial was brilliant. Thank you so much!

  • @yaanno
    @yaanno 4 месяца назад +1

    Nice tutorial, thanks! One thing: if you add emit_json_tags: true to the sqlc.yaml file, you don't have to transform the fields manually in the models.go

    • @bootdotdev
      @bootdotdev  4 месяца назад +1

      agreed, but also I sometimes like the separation of concerns that comes with not tying the models strictly together sometimes

  • @zahid1909
    @zahid1909 Год назад +2

    Great post! You are a legend ❤

  • @lucashartmann2582
    @lucashartmann2582 2 месяца назад

    Thank you very much for the knowledge!

  • @oleksandrzorenko231
    @oleksandrzorenko231 Год назад +10

    The simpler way to add json tags to the struct generated by sqlc is to add this one line to sqlc.yaml "emit_json_tags: True':
    go:
    emit_json_tags: True
    out: "internal/database"
    Hope it helps.

  • @aryankathawale9269
    @aryankathawale9269 Месяц назад

    FINALLY THE VIDEO I WAS WAITING FOR

  • @gamitsios
    @gamitsios 2 месяца назад

    Just finished wathcing the tutorial and I find it amazing! it tackles a lot of topics and the way you are explaining things makes them clear in my opinion.
    I have a question though, why are we taking the approach to create a new handler signature (authedHandler type) and not stick with the regular signature of (ReponseWriter, *Request) and just pass the authed user via a context to the children? This way if for example we wanted to have a chain of middlewarres and create an abstraction to call our middlewares with the handler we could rely on the fact that all middlewares have the same signature: func(http.Handler) http.Handler.
    I get that this would add extra complexity to the tutorial and would be out of scope. But im curious to see your way of thinking or if I am missing anything

  • @databasemadness
    @databasemadness Год назад +1

    Lane dropping golden nuggets!

  • @delfinpacifico9813
    @delfinpacifico9813 Месяц назад

    Hello, thank you very much for this video. The only thing I would ask to help with is to find that text instruction file you are mentioning. Could not find is through the links. Thanks

  • @MVybz
    @MVybz Год назад

    i really liked this format, learned a lot!

  • @yogeshdharya3857
    @yogeshdharya3857 Год назад

    Hey Lane ! Was looking for a video on this playlist which covered the context package of go Lang . However I couldn't find one , so could u please make one for us ! M quite sure plenty of subscribers like me want to understand contexts . U make things easy to understand 😁

  • @Connor-ye6nr
    @Connor-ye6nr 7 месяцев назад

    sql.NullString{ Valid: item.Description != "", String: item.Description } can also be used :)

  • @charlesozochukwu3563
    @charlesozochukwu3563 Год назад +2

    Am on windows anytime i run sqlc generate i keep getting an error, postgres cant run on windows
    how do i fix that

  • @guitaripod
    @guitaripod 6 месяцев назад

    thanks for the video.
    I'd dockerize that and keep it running :)

  • @НикитаФ-э7м
    @НикитаФ-э7м Месяц назад

    Like and Sub.
    Tried few lessons for doing project step-by-step to learn. This is best one I found. Simple, but effective and understandable. Thank you for video.
    P.S. I made my response codes more accurate and used the HTTP library.

  • @azazahmedlipu9738
    @azazahmedlipu9738 Год назад +1

    You are insane ❤🔥

  • @juniordataengineer
    @juniordataengineer Год назад +4

    Would a project like this make for a backend portfolio project ? When looking at building portfolio projects there is more to show in the front end than the backend .

    • @TannerBarcelos
      @TannerBarcelos 7 месяцев назад +2

      Absolutely. You could use GenAI to build the UI super super basic just to make it a little easier to reason about for the viewers of the project.

  • @ripulhandoo2631
    @ripulhandoo2631 Год назад +1

    PS C:\Users\HP\Desktop\go> sqlc generate
    # package postgres
    schema.sql:1:1: the PostgreSQL engine does not support Windows.
    What to do??

    • @bfkgod
      @bfkgod Год назад

      ask chatgpt

    • @bootdotdev
      @bootdotdev  Год назад

      Join the discord for help :)

    • @Alex-hy7nx
      @Alex-hy7nx Год назад

      I know this may be a bit too late, and that you've probably already got your answer, but try to use WSL (Windows Subsystem for Linux)

    • @CoolestPossibleName
      @CoolestPossibleName 11 месяцев назад

      @@Alex-hy7nx I'm using it in a docker container. it's easier

  • @anuragnayak9704
    @anuragnayak9704 Год назад +1

    I'm not able to connect to the database through DB_URL

    • @bootdotdev
      @bootdotdev  Год назад

      Join the discord to get help :)

  • @NphiniT
    @NphiniT 3 месяца назад

    SQLC installation gives me this error: cc1.exe: sorry, unimplemented: 64-bit mode not compiled in
    Searched hours and unable to find what's wrong. Any help appreciated

    • @bootdotdev
      @bootdotdev  3 месяца назад

      We will be able to help in the discord!

    • @NphiniT
      @NphiniT 3 месяца назад

      @@bootdotdev Link to the discord please

  • @ElixirVIP
    @ElixirVIP 3 месяца назад

    Great 👏🏻

  • @lesnavevericka7093
    @lesnavevericka7093 5 месяцев назад

    thanks a lot for the tutorial

  • @josephantony6842
    @josephantony6842 8 месяцев назад

    Great tutorial!

  • @tomaszolek
    @tomaszolek Год назад

    Is there a GitHub repo?

    • @bootdotdev
      @bootdotdev  Год назад +1

      All the code is on Boot.dev!

  • @mlsandreas
    @mlsandreas Год назад +1

    Thank you!!!!

  • @datokhojava6421
    @datokhojava6421 Год назад

    hey, I got a error and its says that >The PostgreSQL does not support windows. what to do ?

  • @nabinmaiti9167
    @nabinmaiti9167 Год назад

    Thank you lane

  • @abyan-majid
    @abyan-majid 6 месяцев назад

    29:20
    43:10

  • @РодионЧаускин
    @РодионЧаускин 2 месяца назад

    Moore Sandra Williams Elizabeth Harris Betty

  • @mahendranath2504
    @mahendranath2504 Год назад +2

    Thank you so much 👍👋👌🫡🙏🏻👏🤝😎✌️🫰🏻

  • @fabtjar
    @fabtjar Год назад

    Is there a reason to prefer "go build && ./rssagg" over "go run ." ?

    • @bootdotdev
      @bootdotdev  Год назад +2

      I prefer to build because it perfectly mimics production, but tbh doesn't matter much