To Do list GUI app using Tkinter in Python (Pie chart included) – Full code

In this post, I am going to share with you the full Python code of a Tkinter GUI application, which is a to-do app. This code is straightforward to understand. The following steps make it easy to understand this code as follows: Pie chart to show the percentage of task completion, remaining tasks, and skipped …

To Do list GUI app using Tkinter in Python (Pie chart included) – Full code Read More »

Mastering Asynchronous JavaScript: Callbacks, Promises, and Async/Await

In this post, we will see about Mastering Asynchronous JavaScript: Callbacks, Promises, and Async/Await. 1. Callbacks A callback is a function that is passed as an argument to another function, which is immediately executed when the first function has fully accomplished its task. Callbacks used to be the former method of dealing with asynchronous operations …

Mastering Asynchronous JavaScript: Callbacks, Promises, and Async/Await Read More »

GUI application to merge PDF files

INTRODUCTION This program is a user-friendly PDF merger application built using Python’s tkinter library for the GUI and PyPDF2 for managing PDF files. It allows users to seamlessly select multiple PDF files, reorder them as needed, and merge them into a single document. The interface provides intuitive buttons for adding, removing, and reordering files, ensuring …

GUI application to merge PDF files Read More »

Scroll to Top