Tag: calendar
-
Python Date Time Intro
This is a brief introduction to date and time in Python. Definitions Here are some commonly used terms: Greenwich Mean Time: abbreviated GMT. This was the zero offset timezone. It has now been superseded by Universal Coordinated Time (see next term) although the two terms are often used interchangeably. See Wikipedia. Coordinated Universal Time: abbreviated…
-
Java8 Date Time Intro
Why do you need to know about Java 8 date and time classes? In a lot of Java applications it is necessary to calculate business days, or manipulate dates for display or export: eg. calendar events. There is also a lot of old Java code which uses the old date and calendar classes, that needs…