deep-foundation / deep-packages

This is repository for packages that are published only in NPM.
https://github.com/orgs/deep-foundation/projects/12
The Unlicense
0 stars 0 forks source link

`$tep` a game for programmers #54

Open Konard opened 6 months ago

Konard commented 6 months ago

Imagine there will be a terminal command that is named $, $tep, step or just s.

You write a command in terminal, for example pip install universal_sentence_encoder, but instead using $ prefix:

$ pip install universal_sentence_encoder

The output is:

ERROR: Could not find a version that satisfies the requirement universal_sentence_encoder (from versions: none)
ERROR: No matching distribution found for universal_sentence_encoder

[notice] A new release of pip is available: 23.2.1 -> 23.3.2
[notice] To update, run: python3.11 -m pip install --upgrade pip

This automatically leads to creation of an issue on GitHub, and you may start a public fight with a bug.

Every action is recorded to issue, once the fight is over you gain energy points (later other points too). The game automatically keeps track of your score - how many bugs fixed and so on.

All you need to do is to use that command every time our do anything in terminal.

This will make the process recorded in GitHub repository.

The Deep is used as a game host, score keeping for multiple players and so on. It should allow seeing all the data, and allow keeping track of top scores between these players.

Konard commented 6 months ago

https://stackoverflow.com/questions/10232192/exec-display-stdout-live/76309279#76309279 - simplest possible implementation.

FreePhoenix888 commented 6 months ago

https://stackoverflow.com/questions/10232192/exec-display-stdout-live/76309279#76309279 - simplest possible implementation.

Why have you chose exactly that solution?