month – POFTUT

How To Get Current Date Time with Now() Function In Python?

How To Get Current Date Time with Now() Function In Python?

Date and time is an important part of application development. We generally need to set, get, and change some data time information to our records. In this tutorial, we will examine the python date time now functions and use cases with examples. For more information about Python date-time functions can be get from the following … Read more

Javascript Date Types and Functions

Date is used to store date related types. There are a lot of date functions to operate with date variables. Date holds year,month,day,hour,minute,second and millisecond. var d=new Date(); We have created new d variable with date type. 2016-10-27T03:41:55.155Z This is the value holded d  Get Day of Week The day number of the week can be … Read more

Python Date Time Functions With Examples

Date time is important part of the application development. Date is used in different format to show, save, or compare events and process. Date and time have different presentation formats which may be change according to countries and localization settings. In this tutorial we will look different usage examples of datetime operations. Import Datetime Library … Read more

How To Remove Files Older Than 1 Day/1 Week/1 Month Recursively

We are decent with scripting language bash and not now hot to remove older files for example 1 day. rm command do not have this type of option to use easily. I think adding this type of feature make a lot of system administrators more happy. Remove Older Than 1 Day We will use following … Read more