Skip to content

Instantly share code, notes, and snippets.

Avatar

Shim'n Degli Ioannis shimon-d

View GitHub Profile
@shimon-d
shimon-d / atonen.md
Last active June 1, 2023 21:25
The Atone Sequence (Atonen Sequentia)
View atonen.md

ATONEN

par monsieur Shimon Degli Ioannis (alias Kolis)

Known as Gaussian binomial coefficient. The Atone Sequence was given this name (unofficially) by Applied Mathematician Victor deMatos. Meaning the sequence of ones. Because when converted to binary the numbers are formed only by 1's:

1, 11, 111, 1111, 11111, 111111 ... ∞ -> {1, 3, 7, 15, 31, 63 ... ad infinitum}
@shimon-d
shimon-d / WebProjectStructure.md
Last active March 11, 2023 18:09
Structure Of a Fully Fleshed API Project
View WebProjectStructure.md
project/
├── api/
│   ├── app/
│   │   ├── __init__.py
│   │   ├── main.py
│   │   ├── models/
│   │   │   ├── __init__.py
│   │   │   └── user.py
│ │ ├── routes/