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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
https://Forlocks.github.io/rsschool-cv/cv

https://Forlocks.github.io/rsschool-cv/
Binary file added assets/fonts/Abel-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KdamThmorPro-Regular.ttf
Binary file not shown.
Binary file added assets/icons/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions assets/icons/gh.svg
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/icons/rss.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/images/about_me.jpg
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/images/avatar.jpg
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/images/contact_information.jpg
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/images/education.jpg
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/images/languages.jpg
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/images/projects.jpg
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/images/skills.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/markers/english.svg
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/markers/russian.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Alexey Shelukhin

## Contact information
* **E-mail:** sheluhen@mail.ru
* **GitHub:** https://github.com/Forlocks
* **Discord server RSS:** Forlock (@Forlocks)

## About me
I am 20 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result.

## Skills
* Markdown
* HTML
* CSS (+Bootstrap)
* JS (basics)
* Git and GitHub
* VSCode

## Code example
```
'use strict';

/*
A function that returns an array of integers
from the given number up to and including 1
*/

function reverseArr(n) {
let arr = [];
let j = -1;

while (n > 0) {
arr[++j] = n;
--n;
}

return arr;
}
```

## Projects
* https://Forlocks.github.io/rsschool-cv/
* Next projects coming soon...

## Education
* Courses on the educational platform Stepik:
* Web Development for Beginners: HTML and CSS (100% + Certificate)
* JavaScript for Beginners (100% + Certificate)
* Learn.javascript (in the process)
* RS School Course «JavaScript/Front-end. Stage 0» (in the process)

## Languages
* **English:** А2 (Elementary)
* **Russian:** 100%
Loading