0
votes
3answers
76 views
Listing blog entries by year,month
Hi!
I want to do something like this:
Entries.objects.values('date.year','date.month')
but this line is not valid. How can I list blog entries by year,month and display them in template?
Thanks!
1
vote
5answers
83 views
How to get the day of year in ruby?
What is the best way to get the day of year of an specific date in Ruby?
For example: 31/dec/2009 -> 365, 01/feb/2008 -> 32, etc
0
votes
0answers
108 views
iPhone Date Picker rolls over to 2010 on December 27th?
So I implemented a UIDatepicker in one of my applications for scheduling and autodialing teleconferences... everything is pretty much ready to go except, while testing I noticed that when the date …
3
votes
5answers
342 views
Why does a new SimpleDateFormat object contain calendar with the wrong year?
I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet.
For simplicity, I've reduced the symptoms I've noticed to the following code:
import …
1
vote
1answer
104 views
How do I use the YEAR datatype in MySQL 5.1?
I am trying to set a datatype for a column on a new table in MySQL 5.1 to YEAR with a default value of 2009 but it will not allow this. Should I use another integer datatype instead and/or how do I …
-2
votes
3answers
123 views
When, What, and why did you start programming? [closed]
How old were you when you started to program? (Did you catch on quickly, or not?)
What was the first language you wrote in? What do you write in now?
Why did you start? Did anyone try to get you …
0
votes
5answers
98 views
How do I do a running year for a calendar report?
Here is the Query I am using:
SELECT * FROM ra_ProjectCalendar
WHERE MonthNumber between @Month and @Month + 12 and FullYear = @Year
It works great for this year, but, stops at December of this …
