Save daily statistics of each work/break period into a CSV file
See original GitHub issue- Simple local CSV file for those who want’s to analyse their data.
- No servers/internet needed. Everything is saved locally at a location provided by user.
- Append only writing for each completed task.
CSV Contents
date | unix-date | start-time | unix-start-time | end-time | unix-end-time | pauses | type | configured-time | actual-time |
---|---|---|---|---|---|---|---|---|---|
2020/01/20 | 6:55AM | 7:15AM | 0 | WORK | 1200 | 1200 |
- Both human readable dates and unix dates are provided. Human readable date is in current timezone. Unix time will be UTC time.
- Why UNIX time? Situations where you are working in multiple time-zones (& system is properly updated with new time). Unix time still works.
types
: WORK, SBREAK, LBREAKpauses
: Total pauses you didconfigured-time
: What is the time configured for this type of workactual-time
: Actually taken time including pauses within same work/break period. This can also be calculated byunix-end-time - unix-start-time
. Provided for convenience.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Save a workbook to text format (.txt or .csv) - Microsoft Support
In the Save As dialog box, navigate to the location you want. Click the arrow in the Save as type box and pick...
Read more >Simulation: create a CSV file of Hourly/Daily values - PVsyst
You can create a CSV file of Hourly, Daily or Monthly data for any variable involved in the simulation, for a detailed analysis...
Read more >Download BIS statistics in a single file
Each dataset published by the BIS can be downloaded as a single (zipped) CSV file. The files contain the same data as in...
Read more >Daily CSV Export - Crunchbase Data
The export is updated each morning and includes separate files for companies, people, funding rounds, acquisitions, and IPOs.
Read more >Writing data into CSV file in C# - Stack Overflow
Instead of calling every time AppendAllText() you could think about opening the file once and then write the whole ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes please.
It’s good that we already have config file now. We can add configurable features.