PinnedHow to resolve "Git - fatal: Not possible to fast-forward, aborting"When you encounter the error message "fatal: Not possible to fast-forward, aborting", it’s important to first understand why this happens. This error typically occurs when you are trying to pull changes from one branch (like main) into your current b...Sep 19, 2024·2 min read
Migrate from legacy FCM APIs to HTTP v1Apps using the deprecated FCM legacy APIs for HTTP and XMPP should migrate to the HTTP v1 API at the earliest opportunity. Sending messages (including upstream messages) with those APIs was deprecated on June 20, 2023, and shutdown begins on July 22,...Sep 23, 2024·3 min read
How to deploy a .NET project to a Nginx web serverYou need to update the server first sudo apt update sudo apt upgrade After that, install nginx sudo apt install nginx Install Dotnet SDK (in this post, I will be using dotnet 7.0) wget https://packages.microsoft.com/config/ubuntu/20.04 /packages-mi...May 12, 2023·1 min read