Tagged Questions

0
votes
3answers
59 views

PHP last day of the month

How can I get the last day of the month in PHP? Given: $a_date = "2009-11-23" I want 2009-11-30; and given $a_date = "2009-12-23" I want 2009-12-31.
4
votes
5answers
80 views

accurately measure time python function takes

Hello, I need to measure the time certain parts of my program take (not for debugging but as a feature in the output). Accuracy is important because the total time will be a fract …
8
votes
12answers
229 views

Software Project - Time Estimation

Hi, I am new to software project time estimation. I have learned that people are using some techniques such as ‘Function point analysis’ , ‘Cocomo model’ etc. Can you tell me th …
0
votes
1answer
30 views

PHP ‘end date’ from a given ‘start date’ - last day/15th of the following month

I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows: If Start date is from the 1-15th of the month, End d …
1
vote
1answer
67 views

PHP - Find next available time slot

I'm looking for help in writing a script to find the next available time slot. Ex: Person A wants an appointment and the available time slots everyday is 9am, 12pm, 4pm, 6pm, 9pm …
0
votes
3answers
76 views

Can Ruby print out time difference (duration) readily?

Can Ruby do something like this? irb(main):001:0> start = Time.now => Thu Nov 05 01:02:54 -0800 2009 irb(main):002:0> Time.now - start => 25.239 irb(main):003:0> …
0
votes
2answers
31 views

How to get PHP time tomorrow 6pm CST?

I need get a timestamp in PHP for the next day 6pm CST $tomorrow = mktime(18, 0, 0, date("m"), date("d")+1, date("y")); echo "Tomorrow is ".date("Y-m-d H:m:s ", $tomorrow); I wa …
0
votes
3answers
27 views

how to get tz_info object corresponding to current timezone?

Is there a cross-platform function in python (or pytz) that returns a tzinfo object corresponding to the timezone currently set on the computer? environment variables cannot be co …
0
votes
1answer
23 views

Using the system time for node locked licensing

I have node-locked licensing working, using the MAC address and system time. We're concerned that people will just edit their system date to extend a license, so I've tried getting …
0
votes
4answers
87 views

Time calculation in php (add 10 hours)?

I get the time: $today = time(); $date = date('h:i:s A', strtotime($today)); if the current time is "1:00:00 am", how do i add 10 more hours to become 11:00:00 am??
1
vote
1answer
59 views

windows xp localtime daylight savings time problem

My XP system with service pack 2 seems to have transitioned to normal non-daylight time BUT the C++ time routines have not. The Date and Time Properties tool tells me it is now 5: …
1
vote
3answers
65 views

How best to handle time arithmetic for a scheduling app?

Im building a bus schedule app. In the mysql db I have a 'time' field that is static - let's say 15:23 which is the scheduled time for the bus and never changes from one day to th …
1
vote
1answer
63 views

How do I use the C date and time functions on UNIX?

Jon Skeet spoke of the complexity of programming dates and times at the 2009 DevDays in London. Can you give me an introduction to the ANSI C date/time functions on UNIX and indi …
1
vote
2answers
44 views

Time passed between launches, iPhone

I'd like a static time indicator that counts from 0 to whatever as time passes. The game I'm making will change after a certain number of days has passed. I'm sure this is a simple …
3
votes
4answers
75 views

Convert two-digit year to four-digit year in Ruby

I have strings like "84", "03" etc. that I want to convert to Date objects, but Date.new only takes the expanded 4-digit year as a parameter. I know it's simple to do, but I don't …

1 2 3 4 5 34 next
15 30 50 per page