coding a full-stack productivity app (I remain unemployed) | Finite Vault Devlog

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

КОМЕНТАРІ • 8

  • @karma3040
    @karma3040 2 місяці тому +1

    Here for the ride!

    • @markbacon78
      @markbacon78  Місяць тому +1

      I've been using Go for a little while now- was one of the primary resources at my last job. My go-to learning for Go has just been the docs. That is to say, "how did you learn building the server" is just... I knew Go syntax and I looked at the HTTP docs.
      As for how I started learning Go- bitfieldconsulting.com/posts/commandments
      I'd recommend bitfieldconsulting's posts in general. If you're a book person, Head First Go was a good way to just get coding right off the bat, but I'd only recommend that if you really need something structured.
      Best way to go is just to build something -> look up what you need as you go (e.g. how I found that post about the chi router) -> rinse and repeat.
      Hopefully that helps! Thanks for joining along the ride :D

  • @EJerel
    @EJerel Місяць тому +1

    Hol up, job interviews? Final rounds?? Never hear of those

    • @markbacon78
      @markbacon78  Місяць тому +3

      The persistence is being attempted 😭 One of these days there will be an offer... one of these days...

  • @divi1223
    @divi1223 Місяць тому +2

    Nice haircut

  • @chaseloop1182
    @chaseloop1182 2 місяці тому +1

    I get confused in this database stuff how to implement this auth and all can you suggest what should I learn

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

      As for implementing OAuth, I was just doing google searches and literally learned by doing it for this service. Not sure if I mentioned this explicitly, but it took me a good 2-3 hours of head bashing for like... 15 lines of code to get it working.
      As for "this database stuff" I'd recommend just learning the the basic functions of databases (either mysql or mongo a good place to start). Make a small project (which is how this little expense tool started) and look up things as you need go