-
as seen on Stack Overflow
- Search for 'Stack Overflow'
To put this question into context, I'm trying to calculate "time in app" based on an event log.
Assume the following table:
user_id event_time
2 2012-05-09 07:03:38
3 2012-05-09 07:03:42
4 2012-05-09 07:03:43
2 2012-05-09 07:03:44
2 2012-05-09 07:03:45
4…
>>> More
-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
/var/log/messages, /var/log/syslog, and some other log files use a timestamp which contains an absolute time, like Jan 13 14:13:10.
/var/log/Xorg.0.log and /var/log/dmesg, as well as the output of $ dmesg, use a format that looks like
[50595.991610] malkovich: malkovich malkovich malkovich malkovich
I'm…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am attempting to resolve timestamped SNAPSHOT dependencies with Ivy.
The environment is Ant + Ivy 1.2.0 + Archiva. Archiva itself is populated from Maven2 builds. Ivy is only used to resolve dependencies (from a single, non Maven2 project).
How can Ivy be configured to correctly resolve timestamped…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to copy files that have timestamps from the time the script begins to run and a hour previous. So I am basically trying to emulate robocopy but with minage and maxage going down to the exact time rather than days. So far I have this in powershell:
$now = Get-Date
$previousHour = $now.AddHours(-1)
"Copying…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have several thousand objects with string property in the format of "yyyy-MM-ddTHH:mm:ssZ". I want to sort these objects ordered by time.
Is there any useful packages or scripts for this ?
(currently I'm just comparing individual numeric values and it seems it's not very efficient and neat)
>>> More