The leap-year tag has no wiki summary.
7
votes
3answers
149 views
Get a vector of all days in a year with R
Is there a simple R idiom for getting a vector of the days in a given year? I can do the following which does ok... except for leap years:
dtt <- as.Date( paste( as.character(year), "-1-1", ...
6
votes
11answers
4k views
leap year calculation
In order to find leap years, why must the year be indivisible by 100 and divisible by 400?
I understand why it must be divisible by 4. Please explain the algorithm.
4
votes
4answers
898 views
mysql birthday reminder, leap year
I'm trying to sort out a result set that gives the 5 closest users sorted by upcoming birthday. This works perfectly until leap years comes into play. For example:
May 15th - 96 days left
May 15th - ...
4
votes
4answers
2k views
How do I add 2 years to a date in powerbuilder and account for the leap year correctly?
How do I add 2 years to a date in powerbuilder and account for the leap year correctly?
We have a medical license application where the user would like the date to go expire two years. Current ...
4
votes
7answers
13k views
Java Code for calculating Leap Year, is this code correct?
I am following "The Art and Science of Java" book and it shows how to calculate a leap year.
The book uses ACM Java Task Force's library.
Here is the code the books uses:
import acm.program.*;
...
3
votes
1answer
85 views
Finding out if its a leap year and setting accordingly
I have a form that has an initial end_date. I am having a Value error because this year is a leap year and we are currently in February.
My code has a end day of 30 but I am having trouble figuring ...
3
votes
6answers
2k views
Java calculate days in year
Is there any handy method built in Java to calculate how many days were/will be in a specific year (as in was it a long (366 days) or short (365 days) year)?
Or do I need to write it myself?
I'm ...
3
votes
4answers
589 views
Regular expression for asp:RegularExpressionValidator with format MMddyy (leap year issue)
We need help for regular expression that work with asp.net asp:RegularExpressionValidator to validate date in MMddyy format. Problem we are facing is leap year. Issue is that is it possible to verify ...
3
votes
5answers
2k views
How to determine the date one day prior to a given date in Java?
I am assuming Java has some built-in way to do this.
Given a date, how can I determine the date one day prior to that date?
For example, suppose I am given 3/1/2009. The previous date is 2/28/2009. ...
2
votes
1answer
92 views
Why is using JavaScript to plan Q1 year 22034 unreliable in Safari?
There is something fishy about the calculation of far future dates when done on the browser side (Safari 5.0.1), passing strings into the Date() constructor:
I narrowed it down to the February-March ...
2
votes
2answers
453 views
Easy way to determine leap year in ruby?
Is there an easy way to determine if a year is a leap year?
1
vote
1answer
170 views
javascript to find leap year
How can I get the code below to work when I have a month of february? Currently it is getting to the day and then stopping before getting to the if to determine whether it is a leap year.
if (month ...
1
vote
2answers
279 views
Handling leap years in Python
I have a program where the user enters a date and then compares it to another date to see which one comes first.
How would I go about writing a code where the user inputs Feb 29 and the program ...
1
vote
2answers
362 views
PHP: Adding years to a timestamp
In PHP given a UTC timestamp I would like to add exactly N number of years. This should take into consideration leap years.
Thank you.
1
vote
2answers
833 views
Calculating a time duration with Joda-Time
I'm trying to use Joda-Time in order to know time durations between two points in time, where each point is given in its own local timezone.
E.g. :
DateTime ny = new DateTime(2011, 2, 2, 7, 0, 0, 0, ...
1
vote
3answers
1k views
Javascript: calculate number of days in month for a given year
I have a HTML page with 3 dropdowns for the month, day and year and I was wondering if there was a way to populate the month drop down properly depending on the month and year.
I haven't done this ...
1
vote
2answers
3k views
Calculating number of days between two dates that are in a leap year
Given two dates, what is the best method to calculate the number of days between those two dates that fall in a leap year.
For example if d1 = 12/1/2007 and d2 = 1/31/2008 then the total number of ...
1
vote
4answers
431 views
Accounting for leap year in comparing year to year sales
I am writing a program that shows the current years sales from the beginning of the fiscal year to the current date, compared to the same date range of the year before.
My question is, what efforts ...
1
vote
3answers
526 views
Leap year bug calling ToUniversalTime().AddYears().ToLocalTime()?
I encountered what may be a leap year in .NET's DateTime handling, specifically ToLocalTime(). Here's some code which reproduces the problem (I'm in the Pacific time zone):
DateTime dtStartLocal = ...
0
votes
2answers
48 views
Javascript older than 18 on leap years
I'm using this javascript to check if the age entered is older than 18.
function calculateDiffYear(date, month, year)
{
var cur = new Date();
var diff = ...
0
votes
4answers
248 views
Where is my mistake - Date calculator for selectbox in Javascript/jQuery?
$(.dateselboxes) .change( function(){
var y; y=$("#year").val();
var m; m=$("#month").val();
var d;
// check leap year
var leapYear;
if(y%4==0)
{
if(y%100==0)
{
if(y%400==0) ...
0
votes
2answers
274 views
PHP strtotime without leap-years
With regards to this thread, I've developed a partial solution:
function strtosecs($time,$now=null){
static $LEAPDIFF=86400;
$time=strtotime($time,$now);
return ...
0
votes
6answers
679 views
How can I write a leap-year program in one line using PHP?
How can I write a leap-year program in one line using PHP?
-1
votes
6answers
165 views
Correct expression for checking leap years
What will be the exact definition of leap year? AFAIK "A year which is divisible by 4 is a leap year. But for century years' the years which are divisible by 400 is a leap year."
But that definition ...