From 0ed97b2626c7ca74ee938424591354dbb016797f Mon Sep 17 00:00:00 2001 From: Roman Mager Date: Mon, 8 Jul 2024 04:55:48 +0300 Subject: [PATCH 1/3] feat: add svg icons for GH and RSS --- assets/github-mark.svg | 1 + assets/rs-school-logo.svg | 1 + 2 files changed, 2 insertions(+) create mode 100644 assets/github-mark.svg create mode 100644 assets/rs-school-logo.svg diff --git a/assets/github-mark.svg b/assets/github-mark.svg new file mode 100644 index 0000000..37fa923 --- /dev/null +++ b/assets/github-mark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/rs-school-logo.svg b/assets/rs-school-logo.svg new file mode 100644 index 0000000..8e82ef0 --- /dev/null +++ b/assets/rs-school-logo.svg @@ -0,0 +1 @@ + From 092fa59ee56c58cb912a1496648aa00548cf3d7e Mon Sep 17 00:00:00 2001 From: Roman Mager Date: Mon, 8 Jul 2024 04:57:54 +0300 Subject: [PATCH 2/3] feat: add info into html file & styles into css --- index.html | 143 ++++++++++++++++++++++++++++++++++++++++++++++- style.css | 4 -- styles/style.css | 105 ++++++++++++++++++++++++++++++++++ 3 files changed, 245 insertions(+), 7 deletions(-) delete mode 100644 style.css create mode 100644 styles/style.css diff --git a/index.html b/index.html index 031d632..744a869 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,149 @@ + CV - + - -

CV

+ + +
+ +
+ +
+
+ +
+ +
+ + +
+
+ avatar +
+ +
+

Roman Maher

+

Test Automation Engineer

+ +

About me

+

+ Currently, I am working as a Test Automation Engineer. Throughout my career, I gained experience + building automation frameworks using Java and C# programming languages. I'm interested in + deepening my + knowledge of JavaScript for test automation and web development. +

+
+
+
+ +
+

Contacts

+ +
+ +
+

Skills

+
    +
  1. Programming Languages
  2. +
      +
    • C#
    • +
    • Java
    • +
    • JavaScript
    • +
    +
  3. Framework
  4. +
      +
    • Selenium
    • +
    • Selenide
    • +
    • WDIO
    • +
    • NUnit
    • +
    • JUnit
    • +
    • Spring
    • +
    +
  5. Tools
  6. +
      +
    • Git
    • +
    • Docker
    • +
    • Postman
    • +
    • Jira
    • +
    • Confluence
    • +
+
+ +
+

Work Experience

+
    +
  • iTechArt Group – Quality Assurance Automation Engineer / Feb 2021 - Jun 2022
  • +
  • Vention Teams – Test Automation Engineer / Jun 2022 - Present moment
  • +
+
+ +
+

Code Examples

+
+                
+    return new Promise((resolve, reject) => {
+        fetch('https://jsonplaceholder.typicode.com/posts/1')
+            .then(response => {
+            if (response.ok) {
+                resolve(response.json())
+            } else {
+                reject(new Error("Request failed"))
+            }
+            })
+        })
+                
+            
+
+ +
+

Education

+
    +
  • BELARUSIAN STATE UNIVERSITY OF INFORMATICS AND RADIOELECTRONICS - Bachelor's degree (2015 - 2021) +
  • +
  • EPAM Java Lab (2018-2019)
  • +
  • iTechArt Automation QA Lab (2020-2021)
  • +
+
+ +
+

Languages

+
    +
  • Russian - Native
  • +
  • Belarusian - Native
  • +
  • English - B2
  • +
+
+ + + diff --git a/style.css b/style.css deleted file mode 100644 index e428418..0000000 --- a/style.css +++ /dev/null @@ -1,4 +0,0 @@ -body { - font-weight: bold; - font-style: italic; -} diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..ee6cd66 --- /dev/null +++ b/styles/style.css @@ -0,0 +1,105 @@ +html { + scroll-behavior: smooth; +} + +body { + font-family: 'Roboto', sans-serif; + font-size: 18px; +} + +a { + text-decoration: none; +} + +.container { + display: flex; + flex-direction: column; + justify-content: space-between; + + width: 80%; + margin: 20px auto; + background: #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.container main { + padding: 20px; +} + +/* Navbar */ + +.navbar { + width: 100%; + background-color: #333; + overflow: hidden; +} + +.navbar ul { + list-style-type: none; + margin: 0; + padding: 0; + display: flex; + justify-content: center; +} + +.navbar ul li { + float: left; +} + +.navbar ul li a { + display: block; + color: white; + text-align: center; + padding: 14px 20px; +} + +.navbar ul li a:hover { + background-color: #575757; +} + +/* Align multiple blocks */ + +.row { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; +} + +.block { + margin: 10px; +} + +/* Code */ +pre { + background: #f4f4f4; + padding: 0; + overflow: auto; + border-left: 3px solid #f36d33; +} + +code { + font-family: 'Courier New', Courier, monospace; + font-size: 14px; + line-height: 1.5; + display: block; +} + +/* Footer */ + +footer { + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px 20px; +} + +#rs-logo { + width: 80px; + height: 80px; +} + +#gh-logo { + width: 50px; + height: 50px; +} From f205fbc35dc78085f6ed2273471728ad7e30dc41 Mon Sep 17 00:00:00 2001 From: Roman Mager Date: Mon, 8 Jul 2024 05:05:31 +0300 Subject: [PATCH 3/3] docs: add link to GH pages --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 114b837..dc4b7ea 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # rsschool-cv - + + +