Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules
package-lock.json
style.scss
style.css.map
Binary file added assets/GitHub-Mark-64px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/GitHub_Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/rs_school_js.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
## Dmitry Khomichenko

### Contacts

- E-mail: iddf1994one@gmail.com

- Viber: +37529 659-75-83

- Telegram: @BlackBerryID

### Soft skills

- Courteous
- Dependable
- Calm
- Open-minded
- Diligent

### Technical skills

- HTML5
- CSS3
- Javascript basics
- Git (Github)

### Code examples

```
function euclideanDistance(point1, point2){
const length = point1.length;
let result = 0;
for (let i = 0; i < length; i++) {
result += Math.pow((point2[i] - point1[i]), 2);
}
return Math.round(Math.sqrt(result) * 100) / 100;
}
```

### Experience

- I read book: 'grokking algorithms'
- I did a task from 2021Q1 stage 1: 'virtual piano'. You can check it [here](https://rolling-scopes-school.github.io/blackberryid-JSFE2021Q1/virtual-piano/)
- I passed most of the lessons from WesBos's course: [JS30](https://javascript30.com/)

### Education

- I graduated from BNTU with a degree in marketing and economics.
- I'm currently taking a free course from EPAM.

### English

**_B1_**
_I improve my English by communicating with foreigners every week through a cell phone app._
138 changes: 138 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script
src="https://kit.fontawesome.com/c824c28017.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="resume">
<section class="resume-left">
<header>
<figure>
<img src="/rsschool-cv/assets/photo.jpg" alt="photo" />
</figure>
<h1>Dmitry Khomichenko</h1>
<h4>newbie web developer</h4>
</header>
<nav>
<h4>Contact Info</h4>
<ul>
<li>
<span class="icon"><i class="far fa-envelope"></i></span>
<span class="text">iddf1994one@gmail.com</span>
</li>
<li>
<span class="icon"><i class="fab fa-viber"></i></span>
<span class="text">+37529 6597583</span>
</li>
<li>
<span class="icon"><i class="fab fa-telegram-plane"></i></span>
<span class="text">@BlackBerryID</span>
</li>
</ul>
</nav>
<div class="education">
<h4>Education</h4>
<p class="period">2012-2015</p>
<p class="specialty">Marketing and Economics</p>
<p class="university">Belarusian National Technical University</p>
</div>
<div class="english">
<h4>English proficiency</h4>
<span>B1</span>
</div>
</section>

<section class="resume-right">
<div class="about-me">
<h4 class="title">About Me</h4>
<p>
I am an experienced sales manager. Programming is new to me. But
believe me, it will not last long. I will conquer this top, it's
just a matter of time.
</p>
</div>
<div class="experience">
<h4>Experience</h4>
<ul>
<li>
<p>I read the book: "grokking algorithms"</p>
</li>
<li>
<p>
I did a task from 2021Q1 stage 1: ‘virtual piano’. You can check
it
<a
href="https://rolling-scopes-school.github.io/blackberryid-JSFE2021Q1/virtual-piano/"
>here</a
>
</p>
</li>
<li>
<p>
I passed most of the lessons from WesBos’s course:
<a href="https://javascript30.com/">JS30</a>
</p>
</li>
<li>
<h5>Code example:</h5>
<pre>
function euclideanDistance(point1, point2){
const length = point1.length;
let result = 0;
for (let i = 0; i &lt; length; i++) {
result += Math.pow((point2[i] - point1[i]), 2);
}
return Math.round(Math.sqrt(result) * 100) / 100;
}
</pre>
</li>
</ul>
</div>
<div class="skills">
<h4>skills</h4>
<div class="skills-items">
<div class="skills-item">HTML5</div>
<div class="skills-item">CSS3</div>
<div class="skills-item">Sass</div>
<div class="skills-item">Javascript basics</div>
<div class="skills-item">Git (Github)</div>
</div>
</div>
<footer>
<div class="github">
<a href="https://github.com/BlackBerryID">
<img
class="github-mark"
src="assets/GitHub-Mark-64px.png"
alt="github-mark"
/>
<img
class="github-logo"
src="assets/GitHub_Logo.png"
alt="github-logo"
/>
</a>
</div>
<div class="rsschool">
<a href="https://rs.school/js/">
<img
class="rsschool-logo"
src="assets/rs_school_js.svg"
alt="rsschool-logo"
/>
</a>
<span class="year">2021</span>
</div>
</footer>
</section>
</div>
</body>
</html>
Loading