Tagged Questions

A calendar is a system of reckoning time in which the beginning, length and divisions of a year are defined. The term may refer to a software class or library for the manipulation and display of calendar data, or to a list of events with associated dates and times, managed by a human via an application or operating system user interface.

learn more… | top users | synonyms (1)

81
votes
16answers
12k views

What's the best way to model recurring events in a calendar application?

I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how far ahead one can ...
58
votes
2answers
3k views

Adding a Resource View/Gannt chart to jQuery Fullcalendar

I am using jQuery Fullcalendar and if you're not using it I suggest you do too because it is absolutely fantastic at what it does! However to be really useful to me and my project (and many others) I ...
44
votes
5answers
35k views

Programmatically add custom event in the iPhone Calendar

Is there any way to add iCal event to the iPhone Calendar from the custom App?
43
votes
7answers
14k views

Java Date vs Calendar

Could someone please advise the current "best practice" around Date and Calendar types. When writing new code, is it best to always favour Calendar over Date, or are there circumstances where Date is ...
40
votes
11answers
9k views

Why is January month 0 in Java Calendar?

In java.util.Calendar, January is defined as month 0, not month 1. Is there any specific reason to that ? I have seen many people getting confused about that...
37
votes
5answers
26k views

Is there any ready-made calendar control for iPhone apps?

I am building an applicaiton for the iPhone that will display upcoming and past events. I settled for a list view, but then I realized that a calendar (just like the one displayed in the "month" view ...
26
votes
5answers
20k views

System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime()

In Java, what are the performance and resource implications of using System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime() As I understand it, ...
24
votes
9answers
13k views

Javascript framework calendar plugin

Does any know of a good calendar (not datepicker, but a BIG browsable calendar) plugin for one of the major javascript frameworks. I'd prefer jQuery.
23
votes
15answers
14k views

Calculate business days

I need a method for adding "business days" in PHP. For example, Friday 12/5 + 3 business days = Wednesday 12/10. At a minimum I need the code to understand weekends, but ideally it should account for ...
21
votes
8answers
16k views

Django Calendar Widget?

Does anyone know of any existing packages or libraries that can be used to build a calendar in a django app?
20
votes
2answers
1k views

WPF Toolkit Calendar takes two clicks to get focus

I am using the WPF Calendar that is part of the WPF Toolkit. I have two different calendars on a control. When I attempt to choose a date from one calendar and then from the second calendar, I have ...
19
votes
9answers
47k views

How to handle calendar TimeZones using Java?

I have a Timestamp value that comes from my application. The user can be in any given local TimeZone. Since this date is used for a WebService that assumes the time given is always in GMT, I have a ...
18
votes
4answers
4k views

Laying out a database schema for a calendar application

I want to write a calendar application. It is really recurring items that throw a wrench in the works for the DB schema. I would love some input on how to organize this. What if a user creates an ...
18
votes
11answers
4k views

Design question: How would you design a recurring event system?

If you were tasked to build an event scheduling system that supported recurring events, how would you do it? How do you handle when an recurring event is removed? How could you see when the future ...
17
votes
1answer
2k views

How can I programmatically create an iCal event in the default calendar?

How can I use Objective-C to programmatically create an iCal event in the default calendar? I want to check whether the event already exists and set the button state accordingly.
17
votes
5answers
7k views

How can I use PHP to dynamically publish an ical file to be read by Google Calendar?

Any Google search on PHP ical just brings up phpicalendar and how to parse or read IN ical files. I just want to write a PHP file that pulls events from my database and writes them out in ical format. ...
17
votes
7answers
9k views

A good Business calendar library in Java?

Does anyone knows a good business calendar library in java? It should handle easy :) date calculations, taking holidays into account. Ideally, besides configuring holidays and company off days, we ...
15
votes
6answers
341 views

Formatting events according to start time

Still working on my planner/calendar application. I'm nearly done, I got some of the harder parts working but I'm stuck at one more difficult part. I want to show my events in a grid according to ...
15
votes
2answers
301 views

What data structure is recommended for multiple calendars, dates and durations?

I have a requirement to store dates and durations arising from multiple different calendars. In particular I need to store dates that: Span the change to Gregorian calendars in different countries ...
15
votes
8answers
39k views

end date greater than start date - jquery validation

how do i check/validate in jquery whether end date [textbox] is greater than start date [textbox]?
14
votes
6answers
17k views

Creating a Backpack-like Calendar in Rails

What are the current best practices in the Rails world for displaying a calendar month view with event items bound to the days in the month (like in Backpack or Google Calendar, for example)? I don't ...
12
votes
4answers
447 views

Finding first day of calendar

What i want to do is to create a simple calendar, and I want to find the first day of the first week of a specific month. My calendar is a Monday -> Sunday calendar and the following code works, but ...
12
votes
5answers
19k views

How to sanity check a date in java

I find it curious that the most obvious way to create Date objects in Java has been deprecated and appears to have been "substituted" with not so obvious to use lenient calendar. So... How do you ...
11
votes
2answers
442 views

How to programmatically subscribe a user to a google calendar using javascript?

Hey i'm able to authenticate and authorize a user with the javascript API for google calendar. what i want to do next is subscribe that user to a public calendar. I was thinking i could just call the ...
11
votes
3answers
8k views

How do I localize the jQuery DatePicker?

I really need a localized dropdown calendar. An English calendar doesn't exactly communicate excellence on a Norwegian website ;-) I have experimented with the jQuery DatePicker, their website says ...
11
votes
6answers
2k views

Is .NET giving me the wrong week number for Dec. 29th 2008?

According to the official (gregorian) calendar, the week number for 29/12/2008 is 1, because after the last day of week 52 (i.e. 28/12) there are three or less days left in the year. Kinda weird, but ...
11
votes
6answers
18k views

Anyone know a simple way using java calendar to subtract X days to a date?

Anyone know a simple way using java calendar to subtract X days to a date? Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point ...
11
votes
10answers
3k views

What is the most straightforward way to pad empty dates in sql results (on either mysql or perl end)?

I'm building a quick csv from a mysql table with a query like: select DATE(date),count(date) from table group by DATE(date) order by date asc; and just dumping them to a file in perl over a: ...
10
votes
3answers
102 views

What can we do about java.util.Calendar constructor synchronizing on a static Hashtable?

I was horrified to see many of our app threads competing to synchronize on a java.util.Hashtable.get(xx) method that gets accessed from the Calendar's constructor. at ...
10
votes
5answers
641 views

Why dec 31 2010 returns 1 as week of year?

For instance: Calendar c = Calendar.getInstance(); DateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); c.setTime( sdf.parse("31/12/2010")); out.println( c.get( Calendar.WEEK_OF_YEAR ) ); Prints ...
10
votes
2answers
298 views

non standard locale with java.util.Calendar

we have a customer in sweden, using the software in english. So we set the Locale(en, SV). We did hope the Calendar class would adhere to the country settings, but it uses the language and with this ...
10
votes
3answers
876 views

Emacs Org-mode: How to include properties in diary anniversaries?

I am trying to have the "Birthday" and "Name" properties of an Org-mode entry added to the agenda automatically: * John :PROPERTIES: :Name: John :Birthday: (5 4 1900) :END: I found a way to ...
10
votes
4answers
550 views

Function to return date of Easter for the given year

So, here's a funny little programming challenge. I was writing a quick method to determine all the market holidays for a particular year, and then I started reading about Easter and discovered just ...
10
votes
6answers
5k views

How do I determine if a given date is the Nth weekday of the month?

Sorry if the title is awkward, but I can't think of a better summary. Here is what I am trying to do: Given a date, a day of the week, and an integer n, determine whether the date is the nth day of ...
9
votes
2answers
135 views

Is it possible to make a date datatype accept 13 as a month and 30 for all months?

I am in Ethiopia and we have 13 months. 12 of them with 30 days each and 13th month with 5 or 6 days. I want to sort my data by date using the BindingSource sort method. But to do that, I need to set ...
9
votes
5answers
7k views

Java Calendar.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY), will it roll backwards, forwards or unknown?

Suppose the following code is executed on the 22nd of August 2009 (a Saturday) Calendar c = Calendar.getInstance(); c.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); c.get(Calendar.DAY_OF_MONTH) ...
9
votes
11answers
16k views

How do I calculate someone's age in Java?

I want to return an age in years as an int in a Java method. What I have now is the following where getBirthDate() returns a Date object (with the birth date ;-)): public int getAge() { long ...
9
votes
8answers
3k views

If you were programming a calendar in HTML would you use Table tags or Div tags?

I converted my company's calendar to XSL and changed all the tables to divs. It worked pretty well, but I had a lot of 8 day week bugs to work out initially owing to precarious cross-browser spacing ...
8
votes
1answer
139 views

Basic calendar display in R

Is there a basic calendar display in R, like Unix's cal program? I realize it's not that hard to wrap the base date/time functions (like weekdays, seq.date, etc.), but I feel like I'm ignorant of ...
8
votes
1answer
53 views

How to pass the email id that to be synchronized into create event calendar in android?

How to pass the mail id of the calendar that to be synchronized into the create event through email? I have a spinner that shows the list of accounts to be synchronized as below picture. Now, as usual ...
8
votes
2answers
110 views

Dynamic construction of anonymous class confusion

I'm trying to make instances of anonymous classes using reflection. But ocassionally I've seen strange behaviour during instantination. Please, look at these similar fragments of code public class ...
8
votes
2answers
2k views

jQuery mobile calendar with 3-state day colours

I am looking at creating an event and reservation system I found the SO question JQuery Mobile Calendar ? which shows jquery-mobile-datebox and jQuery-Mobile-Themed-DatePicker I want to display a ...
8
votes
4answers
186 views

Java missing 28 seconds

I'm trying to extract a table from a database and reloading it in another type of database. The problem is that with my local settings the date 1 july 1937 poses a problem of gettng the timestamp when ...
8
votes
7answers
3k views

Moon / Lunar Phase Algorithm

Does anyone know an algorithm to either calculate the moon phase or age on a given date or find the dates for new/full moons in a given year? Googling tells me the answer is in some Astronomy book, ...
8
votes
1answer
658 views

How to create “recurData” in Google Calendar?

I want to create recurring events of Calendar using Google API. I am following links: Google Calendar API I am not getting how to create "recurData". I can't modify String and pass it as ...
8
votes
3answers
11k views

Dated reminders in sharepoint calendars

I have a departmental maintenance that needs to be done roughly every 3 months. The maintenance itself can't be automated (it involves physically swapping a primary and spare piece of networking ...
8
votes
2answers
268 views

Handling historical calendar dates

What standards and strategies are there for handling historic dates described in older calendar form? The contemporary Gregorian calendar, with different length months, leap years, etc. is relatively ...
8
votes
5answers
6k views

How do I discover the Quarter of a given Date?

Given a java.util.Date object how do I go about finding what Quarter it's in? Assuming Q1 = Jan Feb Mar, Q2 = Apr, May, Jun, etc.
8
votes
5answers
10k views

What is a good (cheap/free) calendar/schedule control for asp.net?

I need a calendar/scheduler control for asp.net - not a pop-up date picker, but a full page monthly calendar. I'm trying to create an on call rotation / scheduler utility for work, and it'd be great ...
8
votes
6answers
11k views

.NET: Get all Outlook calendar items

How can I get all items from a specific calendar (for a specific date). Lets say for instance that I have a calendar with a recurring item every Monday evening. When I request all items like this: ...

1 2 3 4 5 43