# time tracking

A process for managing employee work hours and recording reported effort.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## My Simple Knowledge Management and Time Tracking System

DevFeed: [My Simple Knowledge Management and Time Tracking System](<https://devfeed.tech/articles/my-simple-knowledge-management-and-time-tracking-system-29063.md>)

Original publisher: [Read original article](<https://henrikwarne.com/2024/11/09/my-simple-knowledge-management-and-time-tracking-system/>)

Author: Henrik Warne

Published: 2024-11-09T16:10:58Z

Content type: opinion

Language: en

Sources: [Henrik Warne](<https://devfeed.tech/sources/henrik-warne.md>)

Topics: [knowledge-management](<https://devfeed.tech/topics/knowledge-management.md>), [time tracking](<https://devfeed.tech/topics/time-tracking.md>), [Shell](<https://devfeed.tech/topics/shell.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Git](<https://devfeed.tech/topics/git.md>), [Script](<https://devfeed.tech/topics/script.md>), [cURL](<https://devfeed.tech/topics/curl.md>), [Python](<https://devfeed.tech/topics/python.md>)

Tags: [commands](<https://devfeed.tech/tags/commands.md>), [curl](<https://devfeed.tech/tags/curl.md>), [files](<https://devfeed.tech/tags/files.md>), [git](<https://devfeed.tech/tags/git.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [knowledge-management](<https://devfeed.tech/tags/knowledge-management.md>), [notes](<https://devfeed.tech/tags/notes.md>), [python](<https://devfeed.tech/tags/python.md>), [script](<https://devfeed.tech/tags/script.md>), [shell](<https://devfeed.tech/tags/shell.md>), [simple](<https://devfeed.tech/tags/simple.md>), [time-tracking](<https://devfeed.tech/tags/time-tracking.md>), [work](<https://devfeed.tech/tags/work.md>)

### AI overview

The author describes a simple personal system using notes.txt to record commands, procedures, and other important information, and worktime.txt to track daily hours and tasks. A Python script calculates daily and weekly hours. The notes provide reusable instructions and command examples, while repeated use helps the author remember them.

### Source excerpt

I am using a very simple system for remembering commands and procedures, and for tracking what I work on. I have two plain text files called notes.txt and worktime.txt. In the notes file, I write down things that are important ... Continue reading ->