Odhiambo Paul

Odhiambo Paul is a second-year undergraduate student who develops Python, Java and Android applications. Paul has a great passion for writing clean and optimized code.
Author Insights

14

0

0
Odhiambo Paul is a second-year undergraduate student who develops Python, Java and Android applications. Paul has a great passion for writing clean and optimized code.
14
0
0
Jun 10, 2021
The rate-limiting feature makes it possible to secure the Backend API from malicious attacks. It allows us to cap the number of requests that a user can make to our APIs.
Mar 23, 2021
Spring Boot Social auth Spring Boot social auth makes it possible for users to authenticate into Spring Boot applications using their existing social accounts. Using Spring Boot social authentication allows...
Mar 15, 2021
A notification is a message widget that is displayed outside the applications user interface. When a notification is issued, it appears as an icon in the notification area. To view the details of the...
Mar 8, 2021
Docker is a container engine that makes it possible to bundle, ship, and distribute applications across distributed servers.
Feb 16, 2021
Spring Data MongoDB makes it possible to integrate a Spring Boot application with Mongo document database. It provides a MongoRepository containing all the methods used to perform MongoDB CRUD operations.
Feb 6, 2021
Spring Data JPA is a set of standards that defines how Java objects are represented in a database. JPA provides a set of annotations and interfaces that make it possible to configure and map Java objects to...
Feb 3, 2021
Kubernetes is a container orchestration platform. It was designed to manage the lifecycle of containers and services, while providing scalability, predictability, and availability.
Jan 25, 2021
Amazon simple storage (Amazon S3) is a service offered by Amazon web services that offers scalable, secure, and well performing object storage. This article will go over how to upload files into Amazon S3 using...
Jan 22, 2021
Docker is a containerization platform that makes it possible to build, ship, and run distributed applications in controlled environments with defined rules.
Jan 15, 2021
In this tutorial, we will create a working Restful API with Flask and MySQL database. Restful APIs make it possible to establish communication between the backend and the frontend of mobile and web...
Jan 12, 2021
In this tutorial, we are going to build a Spring Boot Rest CRUD API with Gradle as our build tool. Rest APIs make it possible to establish communication between a backend server and a frontend web or mobile...
Dec 16, 2020
In this tutorial, we will secure our TODO API endpoints that we previously created in this article. We will start by implementing Token-based authentication and then implement Javascript web tokens (JWT).
Dec 1, 2020
In this tutorial, we will create a fully working to-do CRUD Django API using Django and Django rest framework. Restful API endpoints make it possible to perform CRUD functionality in the backend from within the...
Nov 16, 2020
Generators are functions that return an iterable set of items that can be iterated through one at a time. They were introduced with Python Enhancement Proposal 255 (PEP 255). Python Enhancement Proposal 255 is...