Blog about software development
While browsing the Ant Design documentation, I noticed that they show the GitHub contributors of a file at the bottom of the page. I thought it was a nice feature and wanted to blog about it. The GitHub API The GitHub API is a great resource to get information about a repository. It is very …
Losing users is a common problem for many apps. One way to keep users engaged is to reward them for their daily activities. A lot of apps do this by giving users a daily login bonus such as XP, coins, or a free award/badge. Some sites like coinmarketcap.com even give users a daily badge for …
In this article, you will learn how to add Prisma to a Next.js project. You will learn how to set up Prisma and connect it to a MySQL database. Let’s get started! What is Prisma? Prisma is an open-source database toolkit that makes it easy to query data from a database inside a TypeScript application. …