From 6e77099ed2a7e10e83719283c0b0015edc345e08 Mon Sep 17 00:00:00 2001 From: golovin Date: Sun, 17 Dec 2023 08:09:23 +0300 Subject: [PATCH] 2023-07-31 --- .gitignore | 2 +- DIRECTORY-TREE.md | 61 ------------------------ DIRECTORY_TREE.md | 49 +++++++++++++++++++ README.en.md | 17 ------- README.md | 16 +------ WIKI.md | 31 ++++++++++++ jekyll_site/_includes/counters_head.html | 4 +- 7 files changed, 85 insertions(+), 95 deletions(-) delete mode 100644 DIRECTORY-TREE.md create mode 100644 DIRECTORY_TREE.md delete mode 100644 README.en.md create mode 100644 WIKI.md diff --git a/.gitignore b/.gitignore index 42e9bb7..24b5f75 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ *.iml *.zip _site* -.repo_*.sh +.repo_* diff --git a/DIRECTORY-TREE.md b/DIRECTORY-TREE.md deleted file mode 100644 index ef0737b..0000000 --- a/DIRECTORY-TREE.md +++ /dev/null @@ -1,61 +0,0 @@ -## Дерево каталогов - -
-.
-├─ jekyll_site
-│  ├─ _includes
-│  │  ├─ counters_body.html
-│  │  └─ counters_head.html
-│  ├─ en
-│  │  ├─ 2021
-│  │  │  └─ 12
-│  │  │     ├─ 10
-│  │  │     │  └─ optimizing-matrix-multiplication.md
-│  │  │     ├─ 13
-│  │  │     │  └─ matrix-rotation-90-degrees.md
-│  │  │     └─ 17
-│  │  │        └─ matrix-rotation-180-degrees.md
-│  │  ├─ 2022
-│  │  │  └─ 02
-│  │  │     ├─ 09
-│  │  │     │  └─ matrix-multiplication-parallel-streams.md
-│  │  │     └─ 11
-│  │  │        └─ winograd-strassen-algorithm.md
-│  │  └─ index.md
-│  ├─ img
-│  │  ├─ block-matrices.svg
-│  │  ├─ products.svg
-│  │  ├─ sums1.svg
-│  │  ├─ sums2.svg
-│  │  └─ sums3.svg
-│  ├─ ru
-│  │  ├─ 2021
-│  │  │  └─ 12
-│  │  │     ├─ 09
-│  │  │     │  └─ optimizing-matrix-multiplication.md
-│  │  │     ├─ 12
-│  │  │     │  └─ matrix-rotation-90-degrees.md
-│  │  │     └─ 16
-│  │  │        └─ matrix-rotation-180-degrees.md
-│  │  ├─ 2022
-│  │  │  └─ 02
-│  │  │     ├─ 08
-│  │  │     │  └─ matrix-multiplication-parallel-streams.md
-│  │  │     └─ 10
-│  │  │        └─ winograd-strassen-algorithm.md
-│  │  └─ index.md
-│  ├─ Gemfile_color
-│  ├─ Gemfile_older
-│  ├─ _config_color.yml
-│  ├─ _config_older.yml
-│  └─ robots.txt
-├─ CONTRIBUTING.md
-├─ DIRECTORY-TREE.md
-├─ LICENSE.md
-├─ OPEN_LICENSE.txt
-├─ README.en.md
-├─ README.md
-├─ build.sh
-├─ package.sh
-└─ serve.sh
-
diff --git a/DIRECTORY_TREE.md b/DIRECTORY_TREE.md new file mode 100644 index 0000000..85c6d87 --- /dev/null +++ b/DIRECTORY_TREE.md @@ -0,0 +1,49 @@ +## Дерево каталогов + +
+.
+├─ jekyll_site
+│  ├─ _includes
+│  │  ├─ counters_body.html
+│  │  └─ counters_head.html
+│  ├─ en
+│  │  ├─ 2021/12
+│  │  │  ├─ 10/optimizing-matrix-multiplication.md
+│  │  │  ├─ 13/matrix-rotation-90-degrees.md
+│  │  │  └─ 17/matrix-rotation-180-degrees.md
+│  │  ├─ 2022/02
+│  │  │  ├─ 09/matrix-multiplication-parallel-streams.md
+│  │  │  └─ 11/winograd-strassen-algorithm.md
+│  │  └─ index.md
+│  ├─ img
+│  │  ├─ block-matrices.svg
+│  │  ├─ products.svg
+│  │  ├─ sums1.svg
+│  │  ├─ sums2.svg
+│  │  └─ sums3.svg
+│  ├─ ru
+│  │  ├─ 2021/12
+│  │  │  ├─ 09/optimizing-matrix-multiplication.md
+│  │  │  ├─ 12/matrix-rotation-90-degrees.md
+│  │  │  └─ 16/matrix-rotation-180-degrees.md
+│  │  ├─ 2022/02
+│  │  │  ├─ 08/matrix-multiplication-parallel-streams.md
+│  │  │  └─ 10/winograd-strassen-algorithm.md
+│  │  └─ index.md
+│  ├─ Gemfile_color
+│  ├─ Gemfile_older
+│  ├─ _config_color.yml
+│  ├─ _config_older.yml
+│  └─ robots.txt
+├─ .gitattributes
+├─ .gitignore
+├─ CONTRIBUTING.md
+├─ DIRECTORY_TREE.md
+├─ LICENSE.md
+├─ OPEN_LICENSE.txt
+├─ README.md
+├─ WIKI.md
+├─ build.sh
+├─ package.sh
+└─ serve.sh
+
diff --git a/README.en.md b/README.en.md deleted file mode 100644 index 205ffbb..0000000 --- a/README.en.md +++ /dev/null @@ -1,17 +0,0 @@ -## Website pages - -- [Winograd — Strassen algorithm](https://pomodoro3.mircloud.ru/en/2022/02/11/winograd-strassen-algorithm.html) — 11.02.2022. -- [Matrix multiplication in parallel streams](https://pomodoro3.mircloud.ru/en/2022/02/09/matrix-multiplication-parallel-streams.html) — 09.02.2022. -- [Matrix rotation 180 degrees](https://pomodoro3.mircloud.ru/en/2021/12/17/matrix-rotation-180-degrees.html) — 17.12.2021. -- [Matrix rotation 90 degrees](https://pomodoro3.mircloud.ru/en/2021/12/13/matrix-rotation-90-degrees.html) — 13.12.2021. -- [Optimizing matrix multiplication](https://pomodoro3.mircloud.ru/en/2021/12/10/optimizing-matrix-multiplication.html) — 10.12.2021. - -## [Source texts](README.md) - -- Series of the static websites [«Pomodori»](https://hub.mos.ru/golovin.gg/pomodoro/blob/master/README.en.md). -- Used formats — Markdown, Liquid, YAML. -- Build tool — Jekyll with tomato design themes. -- Automation of processes — Bash scripts for command line. -- [build.sh](build.sh) — Building a site in two tomato themes and optimizing the results. -- [serve.sh](serve.sh) — Local deployment to verify the correctness of the build. -- [package.sh](package.sh) — Preparing an archive for subsequent deployment. diff --git a/README.md b/README.md index 8ff27ff..9f13029 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,5 @@ -## Страницы вёб-сайта +## Исходные тексты -- [Алгоритм Винограда — Штрассена](https://pomodoro3.mircloud.ru/ru/2022/02/10/winograd-strassen-algorithm.html) — 10.02.2022. -- [Умножение матриц в параллельных потоках](https://pomodoro3.mircloud.ru/ru/2022/02/08/matrix-multiplication-parallel-streams.html) — 08.02.2022. -- [Поворот матрицы на 180 градусов](https://pomodoro3.mircloud.ru/ru/2021/12/16/matrix-rotation-180-degrees.html) — 16.12.2021. -- [Поворот матрицы на 90 градусов](https://pomodoro3.mircloud.ru/ru/2021/12/12/matrix-rotation-90-degrees.html) — 12.12.2021. -- [Оптимизация умножения матриц](https://pomodoro3.mircloud.ru/ru/2021/12/09/optimizing-matrix-multiplication.html) — 09.12.2021. - -## [Исходные тексты](README.en.md) - -- Серия статических вёб-сайтов [«Помидоры»](https://hub.mos.ru/golovin.gg/pomodoro/blob/master/README.md). - Используемые форматы — Markdown, Liquid, YAML. - Инструмент сборки — Jekyll с помидорными темами оформления. -- Автоматизация процессов — Bash скрипты для командной строки. -- [build.sh](build.sh) — Сборка сайта в двух помидорных темах и оптимизация результатов. -- [serve.sh](serve.sh) — Локальное развёртывание для проверки корректности сборки. -- [package.sh](package.sh) — Подготовка архива для последующего развёртывания. +- Управление процессами — Bash скрипты. diff --git a/WIKI.md b/WIKI.md new file mode 100644 index 0000000..cb02c6c --- /dev/null +++ b/WIKI.md @@ -0,0 +1,31 @@ +
+ +
+

Оглавление

+ +
+ +- [Алгоритм Винограда — Штрассена](https://pomodoro3.mircloud.ru/ru/2022/02/10/winograd-strassen-algorithm.html) — 10.02.2022. +- [Умножение матриц в параллельных потоках](https://pomodoro3.mircloud.ru/ru/2022/02/08/matrix-multiplication-parallel-streams.html) — 08.02.2022. +- [Поворот матрицы на 180 градусов](https://pomodoro3.mircloud.ru/ru/2021/12/16/matrix-rotation-180-degrees.html) — 16.12.2021. +- [Поворот матрицы на 90 градусов](https://pomodoro3.mircloud.ru/ru/2021/12/12/matrix-rotation-90-degrees.html) — 12.12.2021. +- [Оптимизация умножения матриц](https://pomodoro3.mircloud.ru/ru/2021/12/09/optimizing-matrix-multiplication.html) — 09.12.2021. + +
+ +
+ +
+

Contents

+ +
+ +- [Winograd — Strassen algorithm](https://pomodoro3.mircloud.ru/en/2022/02/11/winograd-strassen-algorithm.html) — 11.02.2022. +- [Matrix multiplication in parallel streams](https://pomodoro3.mircloud.ru/en/2022/02/09/matrix-multiplication-parallel-streams.html) — 09.02.2022. +- [Matrix rotation 180 degrees](https://pomodoro3.mircloud.ru/en/2021/12/17/matrix-rotation-180-degrees.html) — 17.12.2021. +- [Matrix rotation 90 degrees](https://pomodoro3.mircloud.ru/en/2021/12/13/matrix-rotation-90-degrees.html) — 13.12.2021. +- [Optimizing matrix multiplication](https://pomodoro3.mircloud.ru/en/2021/12/10/optimizing-matrix-multiplication.html) — 10.12.2021. + +
+ +
diff --git a/jekyll_site/_includes/counters_head.html b/jekyll_site/_includes/counters_head.html index 637ad8a..6d48217 100644 --- a/jekyll_site/_includes/counters_head.html +++ b/jekyll_site/_includes/counters_head.html @@ -1,10 +1,10 @@ - +