This is the most significant instruction for making a Setup File (.exe) from a Windows Forms application. It is simple to install on any Windows PC. It is only compatible with the Windows operating system. Now I’ll convert these Windows Forms applications to Setup Files. To build a setup file from a Windows Forms application, […]
How to Connect With MySQL Database in Visual Studio 2022
In this post we will learn how to connect with MySQL database in Visual Studio 2022. To connect with MySQL we have to install MySql.Data package from NuGet Packages. First Go to Tools Menu and select NuGet Package Manager > Manage NuGet Packages for Solutions.. Then Go to Browse tab and in the search box […]
How to Enable Report Viewer in Visual Studio 2022
In this post we will learn how to enable Report Viewer in visual studio 2022. To enable RDLC you have to install 2 extensions: Microsoft RDLC Designer Microsoft Reporting Service Project Go to the Extensions menu and select Manage Extensions. To install package search RDLC in Manage Extensions. This is going to be our first […]
Linux GNU Screen
Have you at any point confronted the circumstance where you play out a long-running assignment on a remote machine, and unexpectedly your association drops, the SSH meeting is ended, and your work is lost. All things considered, it has happened to us all sooner or later, hasn’t it? Fortunately, there is a utility called screen […]
Setup Crontab in Django Project
The crontab could be a list of commands simply need to run on a regular schedule, and also the name of the command used to manage that list. cron is the system process which will automatically perform tasks for you according to a set schedule. The schedule is called the crontab, which is also the name of the program used to edit […]
Upload image into custom folder in Django
Today we are going to upload image using django model. We’re going to create a small project where we can implement Django’s file upload, save and view functions, with a database but where the images will be stored on a hard drive. We assuming that you already configured your project. If you want to know […]
Python Virtual Environments and Packages
Packages and modules that aren’t included in the standard library are frequently used in Python applications. Applications may require a specific version of a library because the application requires the fix of a specific issue or because the application was created using an obsolete version of the library’s interface. This means that a single Python […]
Setup Your First Django Project
Today we are going to create our first django project. We’ll assume you have Python Installed already. If not, you can see our this post Python Installation . The venv module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. Each virtual environment has its own Python binary […]
Downloading and Installing Python
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Before you start, you will need Python […]
Type Error: decode() got unexpected keyword argument ‘verify’
This error is usually comes when we use PyJWT library in our django project for API. Because TokenBackend.decode passes arbitrary kwargs to jwt.decode, this is caused by jpadilla/pyjwt#657 (which is now forbidden). (Temporary) fix is to pin PyJWT with pyjwt<2.2 in your requirements.txt. Note: If your project hosted with AWS Lightsail may be you need to […]