Tagged Questions

2
votes
5answers
2k views

Python time to age

I'm trying to convert a date string into an age. The string is like: "Mon, 17 Nov 2008 01:45:32 +0200" and I need to work out how many days old it is. I have sucessfully converted the date using: ...
0
votes
3answers
87 views

There are 52.17 weeks in a year. How do I compute current week in C#?

I am saving data into a circular log with designated byte multiples (dataSlots), and I'm calculating the week number based on the days that pass from a reference date. DateTime startDate = ...
0
votes
1answer
64 views

Python age verification

On my join script you have to be 13+ to join. The problem is when I check it against certain dates it only works if I do it a month back. cur_time = datetime.datetime.utcnow() - ...