search for: active_sess

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

Did you mean: active_devs
2009 Feb 09
2
Counting session days
...e each session is recorded with a start and a stop date. Like this: session_start session_stop =================== 2009-01-03 2009-01-04 2009-01-01 2009-01-05 2009-01-02 2009-01-09 A session is at least one day long. Now I want a dataframe with 'active sessions' per date. Like this: date active_sessions ============= 2009-01-01 1 2009-01-02 2 2009-01-03 3 2009-01-04 3 2009-01-05 2 2009-01-06 1 2009-01-07 1 2009-01-08 1 2009-01-09 1 How do I do that? I've searched the usual sources, but my newbie status and language barrier left me with nothing. So plz, anyone?
2001 Nov 17
1
rsync hangs or exists without copying anything
...ions(s) and by breaking the file system down into smaller and smaller sections I found that rsync was existing at the same point during the building file list phase, specifically, when it hit's this directory: make_file(4,a/d/adrenalinuk/public_html/cgi-bin/misc/ib3/Database/Databa se/Database/active_sessions/Database/Database/address_books/Database/Dat abase/Database/authorisation/Database/Database/board_statistics/Database /Database/categories/Database/Database/config/Database/config/Database/c onfig/Database/config/Database/config/Database/config/Database/config/Da tabase/config/Database/config/D...
2006 May 23
1
Extension to book login code: list of online users?
Hi. I''ve been, fruitlessly, trying to extend the login code from the Agile book. What I''m trying to do, is create a list of logged in users. My idea is to the list of sessions. However, many sessions seem to be outdated. I believe the best way would be to get a list of sessions that have been active in, say, the last 15 minutes. Question is: how can I do this? Any hints