- Single Responsibility Principle (Принцип единственной обязанности)
- Open Closed Principle (Принцип открытости/закрытости)
- Liskov’s Substitution Principle (Принцип подстановки Барбары Лисков)
- Interface Segregation Principle (Принцип разделения интерфейса)
- Dependency Inversion Principle (Принцип инверсии зависимостей)
Author: arvifox
Fibonacci numbers
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946
Matrix method:
It is interesting to note that the Fibonacci number grows so fast that F-47 exceeds the 32-bit signed integer range.
Binet’s formula
golden ratio = 1.618
Procent ratio is 62% and 38%
as
Some modern phrases
BIO-ILLOGICAL CLOCK (БиоАлогические часы) – физиологический механизм, заставляющий человека в выходные дни просыпаться в то же время, что и в рабочие.
COFFEE FACE (Кофейное лицо) – лицо человека, который с утра ещё не успел выпить кофе.
Duplicating (mirroring) a repository
To make an exact duplicate, you need to perform both a bare-clone and a mirror-push.
[code language=”java”]
git clone –bare <reponame>
# Make a bare clone of the repository
cd <reponame>
git push –mirror <newreponame>
# Mirror-push to the new repository
[/code]