Related Articles
RRULE EXDATE Ical Recurring Event Appointment Example
If you are looking for a RRULE EXDATE Ical example file for a Recurring Event then check below. Ical Recurring Event Example BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH BEGIN:VEVENT DTSTART:20190922T023000Z DTSTAMP:20190922T023611Z RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20151122T033000Z UID:1780 Location:AP Test DESCRIPTION:test LAST-MODIFIED:20190922T023611Z SEQUENCE:0 STATUS:CONFIRMED SUMMARY: service TRANSP:OPAQUE END:VEVENT END:VCALENDAR
How to Run a Shell Script as Automatic Start Up Service in Linux Centos
Follow below steps to Create start services at startup automatically in Linux. Run a Shell Script as Automatic Start Up Service 1. Create a Shell Script Serivce named myserviced(anyname is ok) in /etc/init.d dir 2. Add it to chkconfig sudo /sbin/chkconfig –add myserviced 3. To check whether the serivce is sucessfully added in chkconfig sudo […]
How to Get the Current Timezone of Mysql Database
By running below query you can able to get the Current Timezone of the database server. select timediff(now(),convert_tz(now(),@@session.time_zone,’+00:00′));