Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
3k views

Generate a current datestamp in Java

What is the best way to generate a current datestamp in Java? YYYY-MM-DD:hh-mm-ss
2
votes
2answers
83 views

Need to do a math operation on every line in several CSV files in Python

I have about 100 CSV files I have to operate on once a month and I was trying to wrap my head around this but I'm running into a wall. I'm starting to understand some things about Python, but ...
2
votes
3answers
101 views

Perl and epoch time question

How can I take the current epoch time from perl and find the epoch time from 6 months ago? I need to compare the create date of a file to see if it 6 months or older.
2
votes
2answers
268 views

Timestamp in Hibernate

I m quite fresh in Hibernate, i just have run my first project with Hibernate. But i want to insert some data in my postgres db, one of the column is "operationtime TIMESTAMP WITH TIME ZONE" , while i ...
2
votes
4answers
389 views

Quickly determining if a folder contents have been modified

I need to determine which folders contain files that have been modified "recently" (within a certain interval). I notice that folder datestamps seem to get updated whenever a contained file is ...
2
votes
3answers
2k views

MySQL table modified timestamp

I have a test server that uses data from a test database. When I'm done testing, it gets moved to the live database. The problem is, I have other projects that rely on the data now in production, so ...
1
vote
1answer
50 views

Mac: Saving information to file without modifying date stamp

The Mac OS X Human Interface Guidelines says in their section about windows: Note that if a user opens, moves, and closes a document window without making any other changes, you should save the ...
1
vote
1answer
61 views

Ruby Converting Datestamp to Years old in Ruby [closed]

Possible Duplicate: How to calculate how many years passed since a given date in Ruby? I am trying to convert a datestamp taken from the database into value indicating how many years old a ...
1
vote
1answer
84 views

How can I use PHP to include the most recent file in a directory?

I have a directory which will look something like this: /test/ | |- index.php |- test-20110324 |- test-20090901 |- test-20070901 What I want to do is use "index.php" to find the most ...
1
vote
2answers
186 views

date stamp pdf on download

I have a PDF which users can download. However, I need to have the date it was downloaded in the text on the PDF. Is there a way to insert a "date now" stamp on a PDF so it is dynamically added on ...
1
vote
2answers
129 views

Date Stamp into a String

I'm sure this is a easy problem, but I just can not seem to find how to do this anywhere. I need to use the current Date and save it into a String. I do not know how to get the dat stamp. Could ...
0
votes
3answers
57 views

MySQL NOW() -1 Day

Is there a way in a MySQL statement to order records (through a date stamp) by >= NOW() -1 so all records from the day before today to the future are selected?
0
votes
0answers
96 views

Perl script to find file 1 day old and move it and rename

Hi I have never used perl before, I have cashe files being generated by a news feed I have on my website, they are .xml files with a long random number in front of the file name, so what I want to do ...
0
votes
2answers
65 views

How do I separate a mysql datestamp field into year, quarter, month and day

I have a mysql database with a datestamp field for entries. I'd really like to separate out the year, quarter, month and day into individual columns. I can make the new columns without a problem but I ...
0
votes
1answer
63 views

supplied argument is not a valid MySQL result

I've got a PHP warning in my web app. I'm a bit of a noob. I want to add a timezone offset to the 'updated' timestamp based on the 'adjusttimezone' integer in each user's profile? This is the code: ...
0
votes
1answer
251 views

Getting the last modification date of a file in InnoSetup Pascal

I need to choose the most recently modified file in my installation script. It seems the Pascal scripting language has no GetFileDateTime or similar, so I am resorting to: function FileDateTime ...
0
votes
1answer
66 views

MySQL dual datestamp for modified, and updated does not work

I am trying the following SQL statement: create table sample ( id int not null primary key auto_increment, name varchar(100), date_modified timestamp not null default current_timestamp on update ...