In many cases, it is required to convert HTML output into pdf. For eg:- Consider a scenario, in which you did some payment on a website, and they provide just an HTML receipt, but you require a pdf version of that HTML receipt. So via this article we gonna show, how to convert HTML into […]
How to Convert Different Date Formats to a Single Date format – Python
In this article, we gonna show how to convert different input Date formats to a single output date format. Given Date Formats : Case 1 : “2019-3-6” Case 2: “Wed, 6, March, 19” Case 3: “Wednesday, 6, March, 9” Case 4: “6-3-2019” Output date format should be: 3/6/2019 // Importing datetime import datetime // First […]
How to increase Max Upload Size Limit in WordPress
While working on WordPress, you might have come across several warning or errors like this:- Warning post content-length of bytes exceeds the limit… The uploaded file exceeds the upload_max_filesize directive in php.ini… exceeds the maximum upload size for this site… Fatal error: Allowed memory size of 12345678 bytes exhausted (tried to allocate 2345678 bytes) in […]
How to Copy a Entire WordPress Site, without using FTP or C panel
Keeping backup of your Website time to time is always a good idea… as you never know, what may can happen … and in the time of emergency.. this backup can save your day :). And WordPress as we all know is considered as one of the most popular CMS around the world, also Considering […]
Exception Handling in Python using try and except clause – Python 101
If you are a programmer, then you already know, that no one is perfect and you will probably get an error or errors in your Code at some point of time…which can lead to crash your entire program.( Which you usually don’t want this to happen in real-world programs ). For eg : def spam(divideBy): […]
How to Run Python Scripts on WordPress ?
WordPress, as we all know, is one of the most popular free and open source content management system based on PHP and MySQL. At the time of writing this article WordPress, 4.9 has been downloaded 153,263,827 times and it’s still growing. On the other hand, Python is an interpreted high-level programming language for general-purpose programming. Created by […]
Laravel 5.7 is now released and is available to everyone
Laravel, as we all know is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern and based on Symfony. Laravel made its first appearance on June 9, 2011, since then it became, one of the most popular PHP frameworks for developing web applications. The […]
Advantages and Disadvantages of Python over other languages
What is Python? Python is an interpreted, high level, general purpose language (An interpreted language is a type of programming language for which most of its implementations execute instructions directly and freely, without previously compiling a program into machine-language instructions). Python was created by Guido van Rossum and first released in 1991, Python has a […]
Native App Vs Web App Vs Hybrid App
What is a Mobile App? Mobile App is a software application, specifically designed to run on small screen devices like mobile phones or tablets. What are different types of Mobile Apps:- When it comes to Mobile App Development, there are basically 3 kinds of App to choose from:- Native Apps Web Apps Hybrid Apps Native […]
C# Vs Java – Pros and Cons
Pros: Easier to learn than c++ Easier to read code than c++ More rapid and potentially less error-prone development than c++ or java (you have unsigned types, you have ref/out, you can make your own value types, you have other useful things that java omits which means you have less jumping through hoops, which means […]