search for: dateandtime

Displaying 3 results from an estimated 3 matches for "dateandtime".

Did you mean: date_and_time
2008 Feb 13
2
[Linux/Python 2.4.2] Forking Python doesn't work
...at netcid.py #!/usr/bin/python import socket,sys,time,os def sendstuff(data): s.sendto(data,(ipaddr,portnum)) return sys.stdout = open(os.devnull, 'w') if os.fork(): #BAD? sys.exit(0) os._exit(0) else: now = time.localtime(time.time()) dateandtime = time.strftime("NaVm/%y NaVM", now) myarray = [] myarray.append("STAT Rings: 1") myarray.append("RING") myarray.append("NAME " + cidname) myarray.append("TTSN Call from " + cidname) myarray.append(&q...
2008 Apr 17
0
Having problem with validates_presence_of fields in form when trying to also use ActiveScaffold (x-posted at ActiveScaffold group)
I have an events listing site that includes the models Event and DateAndTime, so an event that happens more than once (like a high school play) can have more than one date_and_time. The Event model has_many date_and_times, and the DateAndTime model belongs_to event. The Event model validates_presence_of two submission form variables, the_date and the_time, and those variabl...
2008 Dec 11
3
getting ISO week
Hi all, Is there a simple function already implemented for getting the ISO weeks of a Date object? I couldn't find one, and so wrote my own function to do it, but would appreciate a pointer to the "default" way. If a function is not yet implemented, could the code below be of interest to submit to CRAN? Best Regards, Gustaf --------------------