.
+function isIsogram(str) {
+ return new Set(str.toLowerCase()).size === str.length ? true : false
+}
+ diff --git a/README.md b/README.md index 8b13789..fae012e 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ - +https://jack13only.github.io/rsschool-cv/cv diff --git a/assets/img/cert-rss.png b/assets/img/cert-rss.png new file mode 100644 index 0000000..984de31 Binary files /dev/null and b/assets/img/cert-rss.png differ diff --git a/assets/img/lang-test.png b/assets/img/lang-test.png new file mode 100644 index 0000000..c6db848 Binary files /dev/null and b/assets/img/lang-test.png differ diff --git a/assets/img/nav-back.png b/assets/img/nav-back.png new file mode 100644 index 0000000..d9a80b9 Binary files /dev/null and b/assets/img/nav-back.png differ diff --git a/assets/img/photo.jpg b/assets/img/photo.jpg new file mode 100644 index 0000000..be0f4fa Binary files /dev/null and b/assets/img/photo.jpg differ diff --git a/assets/img/pr-js-clock.png b/assets/img/pr-js-clock.png new file mode 100644 index 0000000..982b955 Binary files /dev/null and b/assets/img/pr-js-clock.png differ diff --git a/assets/img/pr-museum.png b/assets/img/pr-museum.png new file mode 100644 index 0000000..19effd8 Binary files /dev/null and b/assets/img/pr-museum.png differ diff --git a/assets/img/pr-vertical-slider.png b/assets/img/pr-vertical-slider.png new file mode 100644 index 0000000..b550564 Binary files /dev/null and b/assets/img/pr-vertical-slider.png differ diff --git a/assets/img/pr-whack-a-rick.png b/assets/img/pr-whack-a-rick.png new file mode 100644 index 0000000..1cfad1c Binary files /dev/null and b/assets/img/pr-whack-a-rick.png differ diff --git a/assets/img/rs_school_js.svg b/assets/img/rs_school_js.svg new file mode 100644 index 0000000..3b80540 --- /dev/null +++ b/assets/img/rs_school_js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..08ca1a6 --- /dev/null +++ b/cv.md @@ -0,0 +1,49 @@ +# Yauheni Shatau + +## Contacts + +* Phone: +375 25 9919565 +* Telegram: @jack13only +* E-mail: jack13only@gmail.com + +## About me + +My goal for the next year is to become a front-end developer. + +Open to new ideas, ready for self-study, have a desire to drastically change my life. Have various hobbies such as drone racing and growing super hot peppers. + +## Skills + +Studied javascript on my own at https://learn.javascript.ru/ + +## Code example +```javascript +let isSquare = function(n){ + if (n < 0) return false; + + let result = Math.sqrt(n) + + if (result == Math.trunc(result)) { + return true; + } + return false; +} +``` +## Education and Work Experience + +* **2007-2012** Belarusian National Technical University, Faculty of Instrumentation, Technical Security + +* **2012-2021** Belarusian State Medical University, it engineer + +## Languages + +* Russian +* Belorussian +* English (~A2) + + + + + + + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..9789aef Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..0e2cc4f --- /dev/null +++ b/index.html @@ -0,0 +1,258 @@ + + +
+ + + + +
+
+ Hello!
+I'm a beginning front-end developer.
+My goal for the next year is to get a job as a junior developer.
+I'm open to new ideas, ready for self-study, have a desire to drastically change my life.
+I have various hobbies such as drone racing, fpv and growing super hot peppers.
+ + +Belarusian National Technical University, Faculty of Instrumentation, Technical Security
RS School JS/FE stage 0
RS School JS/FE stage 1
Work in Belarusian State Medical University, IT engineer
Solve tasks on www.codewars.com
+
+
+
+
+
Graduated from course RS School JS/FE Stage 0
+
+
+
+
+
+ DOM, LocalStorage, querySelector, setTimeout
+
+ DOM, Date, querySelector, setTimeout
+
+ DOM, mouseMove, querySelector, append/prepend
+
+ HTML + CSS + JS, Figma
+function isIsogram(str) {
+ return new Set(str.toLowerCase()).size === str.length ? true : false
+}
+