Tagged Questions
The date-calculation tag has no wiki summary.
15
votes
8answers
2k views
How can I calculate what date Good Friday falls on given a year?
Does anyone have a good algorithm to calculate what date Good Friday falls on given the year as an input? Preferably in C#.
7
votes
4answers
486 views
MySQL: Average interval between records
Assume this table:
id date
----------------
1 2010-12-12
2 2010-12-13
3 2010-12-18
4 2010-12-22
5 2010-12-23
How do I find the average intervals between these dates, using ...
3
votes
2answers
170 views
How to do date calculations in Shell Scripting?
I have a shell script that runs every night to backup my EC2 sites database and html to S3, and when it backs the folders up, it appends the date to it for easier viewing. But I want it to also be ...
3
votes
5answers
3k views
Easy way to get day number of current quarter?
PHP provides ways to get the number of the current day of the month (date('j')) as well as the number of the current day of the year (date('z')). Is there a way to get the number of the current day of ...
3
votes
6answers
3k views
Calculating in SQL the first working day of a given month
I have to calculate all the invoices which have been paid in the first 'N' days of a month. I have two tables
. INVOICE: it has the invoice information. The only field which does matter is called ...
2
votes
3answers
167 views
PHP Accurately Calculate Nearest Age for a given DOB
I am trying to calculate the nearest Age based on DOB, but i cant wrap my head around how to do it. I have tried some methods which estimates but this is not good enough. We need to calculate the days ...
2
votes
7answers
141 views
PHP create range of dates
Starting with a date in this format: 2011-05-01 09:00:00, how can I create an array that contains all office hours (09:00 to 17:00) for all working days of the year (so excluding all Saturday and ...
1
vote
0answers
158 views
JodaTime: Interval of calendar dates [closed]
Possible Duplicate:
LocalDate interval in Joda-time
How can I create an interval of calender dates in JodaTime (or using some other framework)?
I need a class that can represent intervals ...
1
vote
2answers
142 views
How to get list of monthly periods?
I have starting date and number of months. I need to create specific number of monthly periods for example:
var startingDate = new DateTime(2010,1,15);
var months = 3;
for (int i = 0; i < months; ...
1
vote
2answers
131 views
What I have minus months in database (mysql), is it the php code?
Description:
I am doing purchasing function, whenever the users make purchases, it will add 1 month privilege to my access special page of my site. I have received some complaints from my users, ...
1
vote
4answers
4k views
How to calculate an age based on a birthday? [closed]
Possible Duplicate:
How do I calculate someone’s age in C#?
I want to write an ASP.NET helper method which returns the age of a person given his or her birthday.
I've tried code like ...
1
vote
2answers
832 views
jquery datepicker, dates range count
i am trying to sum up or deduct dates in selected range using jquery datepicker, here is how i am doing it right now but without any luck.
function test(){
var sundayCheck = 0;
var ...
0
votes
3answers
42 views
PHP - If date is less than next January
I'm to write a function that will return a specific day if it's between two dates... I've been trying to use mktime, but it keeps returning December?
Essentially, I'm trying to do this:
$now = ...
0
votes
1answer
18 views
MySql query - Grouping by date ranges?
I'm trying to write a query that will return data grouped by date ranges and am wondering if there's a way to do it in one query (including the calculation), or if I need to write three separate ones? ...
0
votes
0answers
31 views
Properly calculate the number of weeks in order to display a date?
I'm displaying a table which houses the dates and prices corresponding to room stays in a hotel.
Consider this:
$planArr = array('detailed' => array(
array( 'Date' => '03/14/12', 'Fee' ...
0
votes
2answers
79 views
Regarding simple python date calc
I am trying to find out when someone will turn 1 billion seconds old. the user inputs when they were born. These values are then converted to seconds and then I add 1 billion seconds and convert back ...
0
votes
1answer
83 views
PHP Calculating next event date
I have a database that holds events in the following format:
Schedules
id
show_id
starttime - datetime
endtime - datetime
repeatuntil - datetime
repeat - int
nthdayofmonth - int
repeatmultiple - ...
0
votes
2answers
309 views
php mongodb find - return calculated value
In PHP -> MongoDB, how do I return a field as a calculated value?
$this->Collection = $this->db->$theDB;
$cursor = $this->Collection->find();
For example, one of my fields is date ...