mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-18 21:57:46 +02:00
Compare commits
3 Commits
83c1c75d82
...
2b9098a02c
Author | SHA1 | Date | |
---|---|---|---|
2b9098a02c | |||
167c6b2d59 | |||
36aa143de7 |
@ -11,6 +11,8 @@ from the [AUR](/wiki/linux/package_manager.md#arch-linux-pacman-and-yay).
|
||||
|
||||
## Usage
|
||||
|
||||
The following section describes various ways of usage of 7-zip.
|
||||
|
||||
### Compressing and Uncompressing a Directory
|
||||
|
||||
For directories to be compressed the Lempel–Ziv–Markov chain algorithm is recommended.
|
||||
|
57
wiki/linux/watson.md
Normal file
57
wiki/linux/watson.md
Normal file
@ -0,0 +1,57 @@
|
||||
# Watson
|
||||
|
||||
[Watson](https://tailordev.github.io/Watson) is a free and open-source time-tracker for
|
||||
[Linux](/wiki/linux.md) that uses the [command-line interface](/wiki/linux/shell.md).
|
||||
|
||||
## Setup
|
||||
|
||||
On most Linux distributions Watson can be installed with the `watson` package.
|
||||
Additionally Watson can be installed using Pythons pip package manager.
|
||||
The pip package is called ´td-watson`.
|
||||
Alternatively it can be installed via [GitHub](https://github.com/TailorDev/Watson).
|
||||
|
||||
## Usage
|
||||
|
||||
The following section describes various ways of usage of Watson.
|
||||
|
||||
### Tracking Time and Displaying Tracked Time
|
||||
|
||||
Time can be tracked by running the following command.
|
||||
This example tracks time to a project called `world-domination` and uses the tag `cats` and `dogs`.
|
||||
Additional tags can be appended or tags can be ommited if not needed.
|
||||
This should be adapted to specific needs.
|
||||
|
||||
```sh
|
||||
watson start world-domination +cats +dogs
|
||||
```
|
||||
|
||||
Alternatively the start time can be set in the past by adding the `--at` flag with a time.
|
||||
|
||||
```sh
|
||||
watson start world-domination +cats +dogs --at 13:37
|
||||
```
|
||||
|
||||
The tracking of the time can be stopped by running the following command.
|
||||
|
||||
```sh
|
||||
watson stop
|
||||
```
|
||||
|
||||
Afterwards the summary of the tracked time can be displayed by running the following command.
|
||||
|
||||
```sh
|
||||
watson report
|
||||
```
|
||||
|
||||
### Adding a Time Frame in Retrospect
|
||||
|
||||
It can be useful to add time frames in retrospect if the starting and stopping of that task was
|
||||
forgotten at that time.
|
||||
For this the following command can be run.
|
||||
It works similarly to starting a time frame as explained in the
|
||||
[section above](#tracking-time-and-displaying-tracked-time).
|
||||
Additionally the start and stop time are specified with the `--from` and `--to` flags.
|
||||
|
||||
```sh
|
||||
watson add --from "2018-03-20 12:00:00" --to "2018-03-20 13:00:00" programming +addfeature
|
||||
```
|
22
wiki/work.md
Normal file
22
wiki/work.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Work
|
||||
|
||||
Work is a human activity that supports the needs of the wider community.
|
||||
It generally is viewed as contributing towards goods or services in an economy.
|
||||
|
||||
## Programs
|
||||
|
||||
There are various programs that can be useful in a work setting.
|
||||
The following are program types that are generally considered useful.
|
||||
|
||||
- Office suites are an assortment programs that are similar to Microsofts Office suite.
|
||||
- The original office programs are Microsofts Excel, Word, Powerpoint and more for
|
||||
[Windows](/wiki/windows.md)
|
||||
- [Apaches OpenOffice](https://www.openoffice.org/) is an open-source office suite for Windows
|
||||
and [Linux](/wiki/linux.md).
|
||||
- [LibreOffice](https://libreoffice.org/) is a free and open-source office suite for Windows and
|
||||
Linux-based systems.
|
||||
- Time-tracking software includes programs that allow its user to track the time they spent working
|
||||
on a specific task or project.
|
||||
- [Watson](/wiki/linux/watson.md) is a free and open-source time-tracker that uses
|
||||
the [command-line interface](/wiki/linux/shell.md).
|
||||
It is designed for Linux-based systems.
|
Loading…
x
Reference in New Issue
Block a user