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

CV. Cross-Check #5

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
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
88f1e63
fix: fix grammar mistake
turn2river Jul 24, 2021
3e468cf
feat: add menu, remove arrows, add current page highlight in menu
turn2river Sep 19, 2021
72aea37
refactor: add adaptive changes to various resolutions
turn2river Sep 19, 2021
71b6c56
feat: add project section
turn2river Sep 19, 2021
9988774
feat: add projects images
turn2river Sep 19, 2021
316e70d
feat: add some @media
turn2river Sep 20, 2021
b36612e
feat: add projects discription, add consolelog
turn2river Sep 20, 2021
f1b379f
feat: work with @media
turn2river Sep 20, 2021
1ae6365
feat: add burger menu, js file
turn2river Sep 20, 2021
b53793f
feat: add code highlight
turn2river Sep 20, 2021
ef1b16a
feat: add highlight lib
turn2river Sep 20, 2021
0abfd67
refactor: change targets _blank and &lt sign
turn2river Nov 28, 2021
898c829
refactor: fix code issues in html css and js
turn2river Jan 3, 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 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.
1 change: 0 additions & 1 deletion README.md

This file was deleted.

16 changes: 16 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const navSlide = () => {
const burger = document.querySelector('.burger');
const nav = document.querySelector('.header_nav');

burger.addEventListener('click', () => {
nav.classList.toggle('nav-active');
burger.classList.toggle('cross_maker');
});
};


navSlide();

console.log(
"Score 130/120\n- Cтудент засабмитил в rs app ссылку на своё CV, задеплоенное на gh-pages +10\n- Вёрстка валидная +10 \n- Вёрстка семантическая +20 \n- В footer есть ссылка на гитхаб автора работы, год создания приложения, логотип курса со ссылкой на курс +10\n- Для оформления СV используются css-стили +10 \n- При уменьшении масштаба страницы браузера вёрстка размещается по центру по горизонтали, а не сдвигается в сторону +10 \n- На странице СV есть фото или аватарка автора, пропорции изображения не искажены, у изображения есть атрибут alt +10 \n- Навигация, контакты для связи и перечень навыков оформлены в виде списка ul > li или ul > li > a +10 \n- Содержание CV +30 \n- CV выполнено на английском языке +10"
);
Binary file added 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 assets/cv.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/favicon.ico
Binary file not shown.
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.
Binary file added assets/shop.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/vikings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# 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.
Loading