Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdown & Git #1

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5dde20e
docs: create cv file
turn2river Jul 13, 2021
fd5184c
feat: add basic page layout CV information, add photo
turn2river Jul 13, 2021
806f87b
fix: resolve double line issue in cv.md
turn2river Jul 13, 2021
de979d5
feat: add CV information
turn2river Jul 13, 2021
2dd72cc
refactor: change information structure, fix grammar issues
turn2river Jul 15, 2021
69c1fe6
refactor: change another information structure
turn2river Jul 15, 2021
9b75760
feat: add about section
turn2river Jul 15, 2021
bdcc8e0
feat: add about section
turn2river Jul 15, 2021
e22d527
init: start HTML, CSS & Git Basics task
turn2river Jul 16, 2021
ccaaa12
feat: add html structure
turn2river Jul 22, 2021
3469fea
feat: add style.css
turn2river Jul 22, 2021
65b3675
feat: add assets files
turn2river Jul 22, 2021
23a3aca
feat: add favicon and rsschool-logo files
turn2river Jul 24, 2021
3c1b449
refactor: update html and css files
turn2river Jul 24, 2021
0efa04a
fix: remove unnecessary css classes
turn2river Jul 24, 2021
2272d4d
refactor: add padding-bottom to skills section
turn2river Jul 24, 2021
fa5f8c4
Merge pull request #2 from turn2river/rsschool-cv-html
turn2river Jul 24, 2021
88f1e63
fix: fix grammar mistake
turn2river Jul 24, 2021
67e5934
Merge pull request #3 from turn2river/rsschool-cv-html
turn2river Jul 24, 2021
db603e0
feat: move stage0-CV files to the correct folder
turn2river Sep 10, 2021
222f3b0
feat: add deploy files, cv stage1
turn2river Sep 20, 2021
c3175d2
feat: deploy with code highlight
turn2river Sep 20, 2021
b7b7ad5
refactor: solve some validator issues
turn2river Sep 20, 2021
39146cb
feat: deploy CV JS-FE-2022
turn2river Jan 3, 2022
f751c30
fix: change eng level
turn2river Mar 17, 2022
5351b95
feat: emoji test
turn2river Mar 21, 2022
307cf69
feat: emoji test 2
turn2river Mar 21, 2022
9f08a3c
fix: deploy 'kick'
turn2river Sep 7, 2022
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
Binary file added 2021Q3Stage0-CV/Aleksey_Krylov_.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 2021Q3Stage0-CV/assets/AlexeyKrylovPhoto.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 2021Q3Stage0-CV/assets/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions 2021Q3Stage0-CV/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.
82 changes: 82 additions & 0 deletions 2021Q3Stage0-CV/cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Alexey Krylov
![photo](Aleksey_Krylov_.png)

## Contacts
email: [email protected]
discord: ADLINN#9697

## About
Hi there! My name is Alexey Krylov and I am career changer.
I have:
- 5+ years of graphic design experience including basic knowledge of web design and UX/UI
- 4+ years of 3D modeling and visualization experience
- 4+ years of game- and level- design experience

And now it's time to explore this wonderful world of programming.

## Skills
### Tech stack
- Basic JavaScript
- Basic Node.js
- HTML
- CSS, SCSS
- BEM

### Tools
- VS Code
- GIT, SVN
- Figma
- Photoshop, Illustrator

### TeamWork
- Agile, Scrum
- Jira, Confluence

## CodeExamples

### Codewars

### Task
You will be given an array of numbers. You have to sort the odd numbers in ascending order while leaving the even numbers at their original positions.

### Solution
```js
function sortArray(array) {

let oddNums = array.filter((x) => x % 2).sort((a, b) => a - b);
return array.map((x) => (x % 2 ? oddNums.shift() : x));

};
```

### Task
Create a function that takes one positive three digit integer and rearranges its digits to get the maximum possible number. Assume that the argument is an integer. Return `null`  if the argument is not valid.

### Solution
```js
let maxRedigit = function(num) {

return num < 100 || num > 999 ? null : +num.toString().split("").map((x) => +x).sort((a, b) => b - a).join('');

};
```

## Personal study projects
[TheVikings TVseries website project(GitHub)](https://github.com/turn2river/vikings)
[TheVikings TVseries website project(hosted)](http://shiny-grandfather.surge.sh/)

[InteriorShop online store project(Github)](https://github.com/turn2river/InteriorShop)
[InteriorShop online store project(hosted)](http://interiorshop-krylov.surge.sh/)


## Education
- RS school
- GeekBrains(1st and 2nd quarter of webdev course)
- Moscow State Print University
- almost completed higher education(haven't done the diploma)
- quit due to life circumstances

## English level

### Intermediate(B1+)
- Graduated from school with in-depth study of the English language.
132 changes: 132 additions & 0 deletions 2021Q3Stage0-CV/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
<!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" />
<script src="https://kit.fontawesome.com/d329a077e2.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon.ico" />
<link rel="stylesheet" href="style.css" />
<title>CV</title>
</head>
<body>
<div class="page__container">
<main class="main">
<section class="section" id="home">
<div class="home__wrapper">
<div class="home__text">
<h1>krylov.alexey</h1>
<p>
<span class="yellow_text">{</span> Frontend developer <span class="yellow_text">}</span> heavily influenced by&nbsp;visual arts, interactions and&nbsp;UX. <br />
Gravitating around design and code. Addicted to&nbsp;games, good coffee and&nbsp;minimalism.
</p>
<h2>contacts()</h2>
<ul>
<li class="contacts__item"><a class="contacts__item-link" href="https://discordapp.com/users/ADLINN9697/" target="_blank"> discord:</a> ADLINN#9697</li>
<li class="contacts__item"><a class="contacts__item-link" href="mailto:[email protected]">email:</a> [email protected]</li>
<li class="contacts__item"><a class="contacts__item-link" href="https://github.com/turn2river" target="_blank">github:</a> /turn2river</li>
</ul>
</div>
<div>
<figure>
<img class="home__image" src="./assets/AlexeyKrylovPhoto.png" alt="Alexey Krylov Photo" />
</figure>
</div>
</div>
<a class="scroll-button" href="#skills">
<p class="scroll-down"><i class="fas fa-chevron-down"></i></p>
</a>
</section>
<section class="section footer-helper" id="skills">
<a class="scroll-button" href="#home">
<p class="scroll-up"><i class="fas fa-chevron-up"></i></p>
</a>
<div class="skills__wrapper">
<h2>skills()</h2>
<div class="skills__inner">
<div class="skills__item">
<h3>techStack</h3>
<ul>
<li>Basic JavaScript</li>
<li>Basic Node.js</li>
<li>HTML, CSS, Sass</li>
</ul>
</div>
<div class="skills__item">
<h3>tools</h3>
<ul>
<li>VSCode</li>
<li>GIT, SVN</li>
<li>Figma, Photoshop, Illustrator</li>
</ul>
</div>
<div class="skills__item">
<h3>teamwork</h3>
<ul>
<li>Agile, Scrum</li>
<li>Jira</li>
<li>Confluence</li>
</ul>
</div>
<div class="skills__item">
<h3>experience</h3>
<ul>
<li>level designer / 4+ years</li>
<li>3D artist / 4+ years</li>
<li>graphic designer / 5+ years</li>
</ul>
</div>
<div class="skills__item">
<h3>education</h3>
<ul>
<li>RS school</li>
<li>GeekBrains</li>
<li>MSU of Printing Arts</li>
</ul>
</div>
</div>
</div>
<div class="code__wrapper">
<div class="code-example">
<h2>codeExamples()</h2>
<p>
<code>
function sortArray(array){ <br />
let oddNums = array.filter((x) => x % 2).sort((a, b) => a - b); <br />
return array.map((x) => (x % 2 ? oddNums.shift() : x)); <br />
};
</code>
</p>
<p>
<code>
let maxRedigit = function(num) { <br />
return num &#x26;lt 100 || num &#x3E; 999 ? null : +num.toString().split(&#x22;&#x22;).map((x) =&#x3E; +x).sort((a, b) =&#x3E; b - a).join(&#x27;&#x27;); <br />
};
</code>
</p>
</div>
</div>
<div class="english__wrapper">
<h2>englishLevel()</h2>
<ul>
<li>Intermediate(B1+)</li>
<li>Graduated from school with in-depth study of the English language.</li>
</ul>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__inner">
<p>2021 &copy; Alexey Krylov</p>
<a href="https://github.com/turn2river" target="_blank"> <i class="fab fa-github-square"></i></a>
</div>

<div>
<a class="rsschool-logo" href="https://rs.school/js/" target="_blank">
<img src="./assets/rs_school_js.svg" alt="rsschoollogo" />
</a>
</div>
</footer>
</div>
</body>
</html>
Loading