AAAbiola Adedayoinabiorh.hashnode.dev·Nov 21, 2023 · 9 min readA Comprehensive Guide for Integrating Google Firebase Authentication with Django Rest FrameworkThis article will show you how to integrate Google Firebase authentication with Django REST Framework. We will use Firebase authentication to create and login users in Django and get firebase access token that will be use for each request to any prot...00
AAAbiola Adedayoinabiorh.hashnode.dev·Oct 2, 2022 · 1 min readBMI calculator program in c programming#include /** main - Programme to build BMI calcutor to find a patient BMI Description: a programm to print BMI of a patient Return: 0 */ int main() { float height, weight, BMI; printf("Enter patient height: \n"); scanf("%f", &height); printf("Enter...00