From d366d3cfad05dab5eab167098cd00e46e9e1d7e2 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 12:28:17 +0300 Subject: [PATCH 01/12] init: start cv-task --- cv.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 cv.md diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..e69de29 From 8e3a4df5f889e1c9fab22ddab69e9dff948347de Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 12:59:29 +0300 Subject: [PATCH 02/12] feat: add information about me for cv-project --- cv.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/cv.md b/cv.md index e69de29..2a8bf8b 100644 --- a/cv.md +++ b/cv.md @@ -0,0 +1,54 @@ +# Aleksey Shelukhin + +## Contact information +* **E-mail:** sheluhen@mail.ru +* **GitHub:** https://github.com/Forlocks +* **Discord server RSS:** Forlock (@Forlocks) + +## About me +I am 21 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result. + +## Skills +* Markdown +* HTML +* CSS (+Bootstrap) +* JS (basics) +* Git and GitHub +* VSCode + +## Code example +``` +'use strict'; + +/* +A function that returns an array of integers +from the given number up to and including 1 +*/ + +function reverseArr(n) { + let arr = []; + let j = -1; + + while (n > 0) { + arr[++j] = n; + --n; + } + + return arr; +} +``` + +## Projects +* https://Forlocks.github.io/Curriculum-Vitae/ +* Next projects coming soon... + +## Education +* Courses on the educational platform Stepik: + * Web Development for Beginners: HTML and CSS (Certificate) + * JavaScript for Beginners (Certificate) +* RS School Courses: + * JavaScript/Front-end. Stage 0 (Certificate) + +## Languages +* **English:** А2 (Elementary) +* **Russian:** 100% \ No newline at end of file From 3fb769a6216a5027957fe9ec0106fcc2f670e448 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 13:00:39 +0300 Subject: [PATCH 03/12] feat: add cv-link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7ac464..acff42f 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# rsschool-cv \ No newline at end of file +https://GITHUB-USERNAME.github.io/rsschool-cv/cv \ No newline at end of file From 6ac0811272adadf0edac6f9b75c41ddd60f90d27 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 13:01:37 +0300 Subject: [PATCH 04/12] fix: change cv link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acff42f..674fd17 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -https://GITHUB-USERNAME.github.io/rsschool-cv/cv \ No newline at end of file +https://Forlocks.github.io/rsschool-cv/cv \ No newline at end of file From b3d42c77880755a051ba05325c35cf0642fc9f12 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 20:57:05 +0300 Subject: [PATCH 05/12] init: start cv-2 task --- index.html | 16 ++++++++++++++++ style.css | 0 2 files changed, 16 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..c2742bf --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + + Aleksey Shelukhin + + + + + + + +

Aleksey Shelukhin

+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..e69de29 From c3ecaf7a642cf0e54e9ff2859af62ea0bd6235a2 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:32:36 +0300 Subject: [PATCH 06/12] feat: add html-sample --- index.html | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/index.html b/index.html index c2742bf..ace66e1 100644 --- a/index.html +++ b/index.html @@ -12,5 +12,61 @@

Aleksey Shelukhin

+

Contact information

+
    +
  • E-mail: sheluhen@mail.ru
  • +
  • GitHub: https://github.com/Forlocks
  • +
  • Discord server RSS: Forlock (@Forlocks)
  • +
+

About me

+

I am 21 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result.

+

Skills

+
    +
  • Markdown
  • +
  • HTML
  • +
  • CSS (+Bootstrap)
  • +
  • JS (basics)
  • +
  • Git and GitHub
  • +
  • VSCode
  • +
+

Code example

+
'use strict';
+
+/*
+A function that returns an array of integers
+from the given number up to and including 1
+*/
+
+function reverseArr(n) {
+  let arr = [];
+  let j = -1;
+
+  while (n > 0) {
+    arr[++j] = n;
+    --n;
+  }
+
+  return arr;
+}
+    

Projects

+
    +
  • https://Forlocks.github.io/Curriculum-Vitae/
  • +
  • Next projects coming soon...
  • +
+

Education

+

Courses on the educational platform Stepik:

+
    +
  • Web Development for Beginners: HTML and CSS (Certificate)
  • +
  • JavaScript for Beginners (Certificate)
  • +
+

RS School Courses:

+
    +
  • JavaScript/Front-end. Stage 0 (Certificate)
  • +
+

Languages

+
    +
  • English: А2 (Elementary)
  • +
  • Russian: 100%
  • +
\ No newline at end of file From 3329569290a4655d0fc46be060bc88f814bcf03e Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:34:19 +0300 Subject: [PATCH 07/12] feat: add smooth scroll-behavior --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index e69de29..21db7fe 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,3 @@ +html { + scroll-behavior: smooth; +} \ No newline at end of file From 2a06ea714195dccce63d6aa75e1edbed1c82589a Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:37:02 +0300 Subject: [PATCH 08/12] docs: add cv-html link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 674fd17..3f03f01 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -https://Forlocks.github.io/rsschool-cv/cv \ No newline at end of file +https://Forlocks.github.io/rsschool-cv/cv +https://Forlocks.github.io/rsschool-cv/ \ No newline at end of file From 792d39740ea9d4e9adb708ca879cf72e5dfb3915 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:44:11 +0300 Subject: [PATCH 09/12] fix: change close tags --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ace66e1..106883e 100644 --- a/index.html +++ b/index.html @@ -47,7 +47,7 @@

Code example

} return arr; -}
+}

Projects

  • https://Forlocks.github.io/Curriculum-Vitae/
  • From cf787ebd641cf1e0b4fb400edc064198c632441c Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:49:11 +0300 Subject: [PATCH 10/12] fix: change code example --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 106883e..4a6230c 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@

    Code example

    let arr = []; let j = -1; - while (n > 0) { + while (n > 0) { arr[++j] = n; --n; } From a5561d2a2458ac4f947b6d102f08d3a6f8a683ee Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:52:55 +0300 Subject: [PATCH 11/12] fix: change links files --- index.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/index.html b/index.html index 4a6230c..3dd03a0 100644 --- a/index.html +++ b/index.html @@ -4,11 +4,8 @@ Aleksey Shelukhin - - -

    Aleksey Shelukhin

    From 1ba7e6a7ded170fb2cfc7e7b539f3c4ee693bac5 Mon Sep 17 00:00:00 2001 From: Forlocks Date: Wed, 8 Nov 2023 21:54:13 +0300 Subject: [PATCH 12/12] fix: delete reset css link --- index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/index.html b/index.html index 3dd03a0..17e530f 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,6 @@ Aleksey Shelukhin -