Tagged Questions

0
votes
2answers
81 views

PHP ‘end date’ from a given ‘start date’ - last day/15th of the following month

I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows: If Start date is from the 1-15th of the month, End d …
0
votes
6answers
93 views

bash : Make job every x days

I have a bash script runned every day via cron. In this bash I want to run some command but only every x day (x is fixed and will be 3, 4 or 5 I don't know at the moment) I can t …
0
votes
0answers
66 views

Datepicker BeforeShowDay CSS problem with content styling

I think I'm not the only one having this problem. Whenever I try to apply a BeforeShowDay a new CSS class, the content of the "special date" is not being modified. I tried changin …
1
vote
5answers
489 views

only do if day… batch file

hello i got a batch file, something like this: if %day%==monday, tuesday, wednesday, thursday, friday ( goto yes ) else ( goto no ) Now i know the first line won't work. What i …
0
votes
0answers
88 views

Shell script to find out if two files from a list of files are created on the same day

Hi I would like to find out using a korn shell script if two files from a list of files are created on the same day. I need to check the current file against the previous file in t …
1
vote
4answers
332 views

Get string representation of a sql DateTime day

Hi all, Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'. Is there any built in sql function / operation i can perform on the dates above to return the string repr …
1
vote
5answers
350 views

How do I get the last possible time of a particular day

Hi , I'm trying to achieve the last possible time of a particular day eg for Date of 2008-01-23 00:00:00.000 i would need 2008-01-23 23:59:59.999 perhaps by using the dateadd func …