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 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b21b58a
docs: create cv file
niyak93rus Aug 10, 2021
b6fc2e4
docs: add text in cv
niyak93rus Aug 12, 2021
948095d
docs: add markdown features to CV
niyak93rus Aug 12, 2021
167c37f
docs: add new info in CV and new MD feats
niyak93rus Aug 12, 2021
415648a
docs: update CV text, links
niyak93rus Aug 12, 2021
926c625
docs: modified about me section as a list of parapgraphs
niyak93rus Aug 12, 2021
6312baa
docs: fixed paragraphs
niyak93rus Aug 12, 2021
b1ba513
docs: update text
niyak93rus Aug 12, 2021
38ff6cc
init: start HTML, CSS & Git Basics-task
niyak93rus Aug 12, 2021
82d5520
feat: add basic page layout
niyak93rus Aug 12, 2021
65fa5a5
fix: delete markdown from html
niyak93rus Aug 12, 2021
81d481b
feat: add more css, add links
niyak93rus Aug 12, 2021
5845f6d
fix: put footer inside body, make html valid
niyak93rus Aug 12, 2021
a8a0122
Merge pull request #2 from niyak93rus/rsschool-cv-html
niyak93rus Aug 12, 2021
187a662
docs: update markdown cv
niyak93rus Sep 5, 2021
8f9758e
docs: update markdown file, add code part description
niyak93rus Sep 5, 2021
3e2a230
fix: totally rework CV, make new layout
niyak93rus Sep 6, 2021
d8376a3
Merge pull request #6 from niyak93rus/rsschool-cv-html
niyak93rus Sep 6, 2021
bf449f2
fix: fix code example section
niyak93rus Sep 6, 2021
5eb6f21
fix: add background image
niyak93rus Sep 6, 2021
f9f7ad1
fix: delete optional files
niyak93rus Sep 6, 2021
547cc78
Merge pull request #7 from niyak93rus/rsschool-cv-html
niyak93rus Sep 6, 2021
11b6073
Merge branch 'rsschool-cv-html' into cv-html-css
niyak93rus Sep 14, 2021
54622da
fix: add burger menu, rewrite text
niyak93rus Sep 14, 2021
578d5b6
fix: make page responsive
niyak93rus Sep 14, 2021
5dcaff8
fix: make page responsive
niyak93rus Sep 14, 2021
5af3307
Merge pull request #8 from niyak93rus/cv-html-css
niyak93rus Sep 14, 2021
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 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.
1 change: 0 additions & 1 deletion README.md

This file was deleted.

45 changes: 45 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# MY CV
## **Nikolay Yakovlev**
## **Contacts:**
- Phone: +79923321384 (only for urgent questions)
- Email: [email protected]
- Telegram: https://t.me/nYakovlev111
- GitHub: https://github.com/niyak93rus
## **About me:**
* I am 28 years old, I began to dream about becoming a developer a couple of years ago. I am very enthusiastic about learning new, especially about technologies and how they can change people's lives.

* The main reason for me to learn frontend and to look for new projects in it is that it can immediately reward you with the outcomes of your work and knowledge.

* Previously I have been working as a salesman and then as a hotel receptionist, so I know what people value in products and in different services.

* I am a good team-worker, I am not overwhelmed by challenges and new ways of work. However, I am also capable of doing routine actions for a long time if it is required, but at the same time I look forward to improve the usual ways of doing them.
## **Skills:**
- JavaScript (beginner)
- GIT
- Python (beginner)
- SQL
## **Code examples:**
Code for Codewars kata "Square Every Digit": this function squares every digit of a number and concatenate them.
For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 12 is 1.

```
function squareDigits(num){
let num_string = num.toString();
let square = 0;
let new_string = '';


for(let i = 0; i < num_string.length; i++){
console.log(square = Math.pow(parseInt(num_string[i], 10), 2));
new_string = new_string + square;
}
return parseInt(new_string, 10);
}
```
## **Work experience:**
No relevant work experience yet. Did a few learning projects (see my GitHub, link at the top).
## **Education:**
- CS50. Introduction to the intellectual enterprises of computer science and the art of programming (In Progress, doing week 9 and then FInal Project), 2021
- The Rolling Scopes School (In Progress), 2021
## **English:**
B2 (Upper-Intermediate). Practised during my work as a receptionist, also had an individual and group tutoring experience.
151 changes: 151 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
<!doctype html>

<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<meta name="HandheldFriendly" content="true">
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.9/styles/default.min.css">
<!-- Code highlighter -->
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.9/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!--Hamburger menu icon-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Nikolay Yakovlev-CV</title>
</head>

<body>
<div class="wrapper">
<div class="column left-col">
<main>
<div class="name-photo">
<img src="me.jpg" alt="profile photo" style="width: 100%; border-radius: 70%;">
<h2>Nikolay Yakovlev</h2>
<h3>Junior Frontend Developer</h3>
</div>
<div class="main-info">
<h4 class="divider">Contacts</h4>
<h5>Location</h5>
<p>Yekaterinburg, Russia</p>
<h5>Phone</h5>
<p><a href="tel:+79923321384" style="text-decoration: none;">+79923321384</a></p>
<h5>Email</h5>
<p><a href="mailto:[email protected]" style="text-decoration: none;">[email protected]</a>
</p>
<h4 class="divider">Links</h4>
<ul>
<li><a href="https://www.linkedin.com/in/nikolayyakovlevweb/" target=”_blank”>LinkedIn</a> </li>
<li><a href="https://github.com/niyak93rus" target=”_blank”>GitHub</a></li>
<li><a href="https://t.me/nYakovlev111" target=”_blank”>Telegram</a></li>
</ul>
</div>
</main>
</div>
<div class="wrapper">
<div class="column right-col">
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="#about" class="active">More about me</a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<a href="#skills">Skills</a>
<a href="#code">Code examples</a>
<a href="#experience">Work experience</a>
<a href="#education">Education</a>
<a href="#english">English</a>
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
/* Toggle between showing and hiding the navigation menu links when the user clicks on the hamburger menu / bar icon */
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<article class="about-me" id="about">
<h4 class="divider">About me</h4>
<ul>
<li>I'm 28 years old</li>
<li>Love to learn</li>
<li>Love to make life around better</li>
<li>Team player</li>
</ul>
</article>
<div class="skills" id="skills">
<h4 class="divider">Skills</h4>
<ul class="skills-list">
<li>HTML, CSS, JavaScript</li>
<li>GIT, Visual Studio Code</li>
</ul>
</div>
<div class="code-examples" id="code">
<h4 class="divider">Code examples</h4>
<p>Code for Codewars kata "Square Every Digit": this function squares every digit
of a number and concatenate them. For example, if we run 9119 through
the function, 811181 will come out, because 92 is 81 and 12 is 1.
</p>
<pre>
<code>
function squareDigits(num){
let num_string = num.toString();
let square = 0;
let new_string = '';

for(let i = 0; i &lt; num_string.length; i++){
console.log(square = Math.pow(parseInt(num_string[i], 10), 2));
new_string = new_string + square;
}
return parseInt(new_string, 10);
</code>
</pre>
</div>
<div class="work-experience" id="experience">
<h4 class="divider">Work experience</h4>
<p>No relevant work experience yet. Did a few learning projects (see my GitHub, link below).</p>
</div>
<div class="education" id="education">
<h4 class="divider">Education</h4>
<ul>
<li>Ural Federal University (Russia, Yekaterinburg). Institute: Ural Institute of Humanities.
Specialty: socio-cultural service and tourism. Finished in 2015.</li>
<li>CS50. Introduction to the intellectual enterprises of computer science and the art of
programming (In Progress, doing week 9 and then FInal Project), 2021</li>
<li>The Rolling Scopes School (In Progress), 2021</li>
</ul>
</div>
<div class="english" id="english">
<h4 class="divider">English</h4>
<p>B2 (Upper-Intermediate). Practised during my work as a receptionist, also had
an individual and group tutoring experience (as a tutor myself).</p>
</div>
</div>
</div>
</div>
<footer>
<a href="https://github.com/niyak93rus" target=”_blank”><img src="GitHub-Mark-64px.png" alt="github logo"
style="height: 100%;"></a>
<p>2021</p>
<a href="https://rs.school/" target=”_blank”><img src="rs_school_js.svg" alt="RS school logo"
style="width: 90px; height: 100%;"></a>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>

</body>

</html>
Binary file added 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 neon.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 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.
Loading