blog.dapoadedire.techSetting up EmailJS with a React AppIn this tutorial, we will walk through the steps of setting up EmailJS with a React app. EmailJS is a service that allows you to send and receive emails without the need for a backend, and it's free to use for up to 200 emails per month. With EmailJS...Jan 6, 2023·8 min read
blog.dapoadedire.techCreating a .gitignore file with a Python PackageIf you're a developer who uses Git to manage your code repositories, you know how important it is to have a good .gitignore file. This file tells Git which files to ignore when tracking changes to your codebase. Without a .gitignore file, you could e...Dec 10, 2022·1 min read
blog.dapoadedire.techHow to Convert Images to PDF in PythonIn this article, we'll learn how to convert images of any format to PDF in Python. We'll be using the img2pdf Python package to accomplish this. Before we begin, make sure you have installed img2pdf by running the following command in your terminal: ...Dec 10, 2022·2 min read
blog.dapoadedire.techHow To Add A Custom Rich Text-Editor In Your Django WebsiteIn this article, I'll be taking you through the steps of integrating a text editor with the Django-Ckeditor package. We wil going through 8 simple steps. Let's get started... Step 1: Installing Django-Ckeditor. It'll only take a few steps. Open the...May 2, 2022·3 min read