{"id":18337641,"url":"https://github.com/tashkoskim/worktimelogger","last_synced_at":"2025-07-18T14:32:41.856Z","repository":{"id":152276998,"uuid":"618088390","full_name":"tashkoskim/WorkTimeLogger","owner":"tashkoskim","description":"Small app for loging time at work (just meetings, codings and break)","archived":false,"fork":false,"pushed_at":"2023-05-11T04:49:39.000Z","size":6548,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T08:26:09.752Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tashkoskim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-23T18:18:14.000Z","updated_at":"2024-08-07T15:52:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"3807e32e-54ce-49e4-8fa4-bac989a1f7e0","html_url":"https://github.com/tashkoskim/WorkTimeLogger","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tashkoskim%2FWorkTimeLogger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tashkoskim%2FWorkTimeLogger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tashkoskim%2FWorkTimeLogger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tashkoskim%2FWorkTimeLogger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tashkoskim","download_url":"https://codeload.github.com/tashkoskim/WorkTimeLogger/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248682490,"owners_count":21144820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T20:11:52.582Z","updated_at":"2025-04-13T08:26:16.379Z","avatar_url":"https://github.com/tashkoskim.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# WorkTimeLogger\n\n## Windows forms app for loging working time\nThis windows forms application is created as a help tool for logging time at work. There are predefined actions that can be logged: \n- Coding \n- Meetings \n- Breaks  \n\nAlso there are some predefined descriptions that appear in a comboBox and the user can choose instead of typing. You can easily copy a description just with clicking on it, and paste it somewhere else.  \nIn order not to manually run the application every day, it would be best to create a shortcut from the exe and put it in the startup folder.\nThe default start position of the applicaion is in the lower right corner (above the clock). But if you want you can move it accross the screen.\n\n## The application\nThe application was developed in *.NET Framework 6.0* (C#) as a *windows forms application*. \n### Log files\nAt startup the application creates **CSV** file where all of the records are stored. This CSV file is created for the current day in the same folder where the application is located under these folders *CurrentYear/CurrentMonthNumber/dd_MM_yyyy_User.csv*. The folders are created automatically. Sample of the CSV log:\n```csv\nStartTime,EndTime,Duration,Date,Activity,Description\n06:41,06:41,0,28.03.2023,Coding,Working on the task 1234\n06:41,06:41,0,28.03.2023,Break,Break\n06:41,-,0,28.03.2023,Meeting,Daily meeting with the local team.\n```  \nIn the last line you can always see the character '-' for the endTime only if the user hasn't clicked on 'Finish for today!' (from the context menu strip). \nIf the user clicks on 'Exit', the application is only closed. If you run it again it will continue from the current day log file. \n\n### Template descriptions\nIn the same folder with the application executable there is a file *template.json* that is used of the application in order to fill the comboBox with the most used descriptions (that way the user can choose without typing). The structure of the json file is simple:\n```json\n{\n  \"MostUsedPhrases\": [\n    \"\",\n    \"Working on the task \",\n    \"Daily meeting with the local team.\",\n    \"Daily meeting with \",\n    \"Code refactoring\",\n    \"Errors fixing\"\n  ]\n}\n```\n\n## Screenshots\nScreenshot of the application if the mouse cursor is not over it (the header is always above every active window):  \n![Minimized](https://github.com/tashkoskim/WorkTimeLogger/blob/master/WorkTimeLogger/Screenshots/WorkTimeLogger_Minimized_v2.JPG?raw=true)   \n\nScreenshot of the application if the mouse cursor is over the header panel:  \n![Maximizied](https://github.com/tashkoskim/WorkTimeLogger/blob/master/WorkTimeLogger/Screenshots/WorkTimeLogger_Maximized_v2.JPG?raw=true)  \n\nScreenshot of context menu strip (if you right click with the mouse on the icon):  \n![Menu](https://github.com/tashkoskim/WorkTimeLogger/blob/master/WorkTimeLogger/Screenshots/WorkTimeLogger_ContextMenuStrip_v2.JPG?raw=true)  \n\nScreenshot of the form where you can see the working time for each day, the total working time and you can generate an excel report for a selected period:  \n![LogForm](https://github.com/tashkoskim/WorkTimeLogger/blob/master/WorkTimeLogger/Screenshots/WorkTimeLogger_LogHistory_v3.JPG?raw=true)  \n\n\n### GIF demo of the application\nIn this demo you can see the whole process of how to add new record (coding, meeting or break), how the mouse hover the application works and how the whole design look:  \n![WorkTimeLogger](https://github.com/tashkoskim/WorkTimeLogger/blob/master/WorkTimeLogger/Screenshots/WorkTimeLogger_v2.gif?raw=true) \n\n\n## Authors\n- tashkoskim@yahoo.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftashkoskim%2Fworktimelogger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftashkoskim%2Fworktimelogger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftashkoskim%2Fworktimelogger/lists"}