How to merge PDF documents using PythonIt’s easy to merge PDF documents using Python code, if you use the right tools! Nowadays PDF format is the most popular file format to share documents on the internet. […] 09 Oct, 2021Coding
Format DateTime in PythonTo format a DateTime in Python we can use the strftime() function from the datetime module. In Python, we can handle Time, Date, and DateTime using the datetime module. To […] 27 Nov, 2021Coding
Format DateTime in PHPTo format a DateTime in PHP we have mainly three options: the date() function the date_format() function the DateTime::format() method from DateTime class Let’s see theese methods more in-depth with […] 18 May, 2021Coding
How to convert DateTime to String in PHPIn this article, we will learn how to convert a Date or a DateTime into a String in PHP. The Format method from DateTime To convert a Date or a […] 17 Apr, 2021Coding
Python string to datetime and datetime to stringIn this article, we will learn how to convert string to date and date to string in Python with datetime. In the next sections, we will see how to use […] 28 Mar, 2021Coding
How to calculate the difference between Dates in JavaIn this guide, we will see how to calculate the difference between two dates in Java. This is straightforward and can be done using core Java (from Java 8), or […] 14 Mar, 2021Coding
Java String to Date and Date to StringHow to convert a Date to String and parse a Date from a String in Java? We can use the SimpleDateFormat class to convert a Date to String and vice […] 25 Feb, 2021Coding
Extending singleton in PHP to avoid boilerplate codeIf we make extensive use of the Singleton pattern in PHP and our project has become large, we can extend a single class that handles all the Singleton instances in […] 21 Feb, 2021Coding