Build a full stack Typescript app with Next.js and tRPC
tRPC is a library that helps us build type safe APIs in Typescript based projects. One of the main advantages of tRPC is that it allows us to create an API...
tRPC is a library that helps us build type safe APIs in Typescript based projects. One of the main advantages of tRPC is that it allows us to create an API...
Go is a great language for building CLI apps, and there is a popular Go-module called [Cobra](https://github.com/spf13/cobra) that provides some powerful tools to quickly build a powerful CLI application. There are...
The VSCode debugger is a great tool that allows us to add breakpoints in our code and step through a process. ### Attach Attaching allows us to debug an app or process...
I've been keeping an eye on the Github Copilot project for the past 6 months as it has been rolling out, and I have finally had a chance to try...
Object Relational Mapping (ORM) can be a very useful when we interact with a database, in this post I will go through a brief example project of utilizing the Sequelize...
Having an API client with defined types can make building out an app a smoother and easier process as we can rely on the types to build out the payload...
REST is an architectural style with a set of recommended practices for submitting requests and returning responses. To understand the structure of the requests or responses, as a developer we...