Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yousinix/otto
otto-matic replies
https://github.com/yousinix/otto
android assistant bot kotlin
Last synced: 27 days ago
JSON representation
otto-matic replies
- Host: GitHub
- URL: https://github.com/yousinix/otto
- Owner: yousinix
- Created: 2019-06-30T08:42:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-08T21:02:14.000Z (almost 2 years ago)
- Last Synced: 2024-08-14T23:43:54.476Z (3 months ago)
- Topics: android, assistant, bot, kotlin
- Language: Kotlin
- Homepage: https://youssefraafatnasry.github.io/otto
- Size: 325 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [otto](https://youssefraafatnasry.github.io/otto/)
_Me in binary._
## Versioning & Committing
- I use **octodecimal** (base-18) number system, prefixed with **`Ox`** (upper case letter `O` followed by lower case letter `x`), as a subject for commit message followed by a **blank line**. The body of the message consists of **asterisks** padded with **1 space** and followed by a punctuated commit changes explanation each on a separate line, with a line limit of **72 characters**. If the line exceeded the limit, it should be broken into two or more lines, and those broken lines start with **3 spaces**.
```text
Ox31A* This is the first change.
* This is the second change, but it is too long to be written
in one line, so I broke it into two lines.
```- Version `n` takes the decimal numbers `n000` — `n999`. For example, Version `1` takes the decimal numbers `1000` — `1999` which maps to the version names `Ox31A` — `Ox631`.
- **`app/build.gradle`** file must be updated with the current version name, this [**hook**](.githooks/pre-commit) enforces the mentioned change, to use it, run the following command
```bash
git config --local core.hooksPath .githooks
```