Build a Library App with React
Adding pagination to your Jekyll site
In blogs, it’s pretty common to list posts over multiple pages. Jekyll provides a way to automatically list your posts over multiple numbered pages. Having to scroll over a long list of numerous posts can be pretty annoying and results...
Making Asynchronous JavaScript Requests with XHR
AJAX stands for Asynchronous JavaScript and XML. It was coined ca. 2005 by Jesse James Garret when it became a popular technique of using XMLHttpRequest to fetch data in XML format and modify the current page in place.
Building Web APIs with flask - Part 5: Blacklist and Token Revoking
In Part 4 of this series, we looked at authentication and authorizarion. In this part, we are going to go in depth on how you can revoke your tokens so that they may no longer access your endpoints.
Building Web APIs with flask - Part 4: Authentication and Authorization
The backend of our application is now nicely set up. We have tested that all the API endpoints are working as expected. This section will incorporate authentication and authorization to our API. We will use an external package for this...