An algorithm a day keeps the hubris away. But, if you keep it to < 1/week you really aren't a geek.
Building skills with go and Next.js by doing a few on-line code/algorithm challenges Next.js and/or Golang. Maybe revisiting a few places where my pride has been hurt during a coding interview.
-
Client - Next.js page that allows playing with javascript algorithms and showing the result
-
Server - Golang http server. Just a way to invoke the code via Postman/Next.js. Probably sould just add more tests, but then how would I dream up a need for a client.
- Navigate to server/api/main.go
go run main.go
--OR--
Use vsCode and choose Run , Start Debugging from the menu. You have to be editing main.go for this to work.
- Navigate to client/nextjs-trystuff
npm installnpm run dev- navigate to http://localhost:3000
Navigate to server and run the following commands
make test runs all server tests
make test_coverage shows test coverage
Used this setup advice
npm run test runs all client tests