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
41 changes: 41 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## Aliaksandr Tarhonski

### Contacts
- __Email__: stdmnstar@gmail.com
- __Tel__: +375 44 739 4847

### Summary
I started programming early. Then I studied at a higher educational institution as a mathematician-programmer. However, it so happened that I had to graduate from another educational institution as a radio engineer. But over time, I moved on to work as an administrator of networks, servers. This is what I have been doing for the last 13 years. But I would like to really do programming.

### Skills
Java, MS SQL, PosgreSQL, MS Server, 1C.....

### Code samples
```java
public class MainClass {
public static void main(String[] args) {
int nDisks = 3;
doTowers(nDisks, 'A', 'B', 'C');
}
public static void doTowers(int topN, char from,
char inter, char to) {
if (topN == 1){
System.out.println("Disk 1 from "
+ from + " to " + to);
}else {
doTowers(topN - 1, from, to, inter);
System.out.println("Disk "
+ topN + " from " + from + " to " + to);
doTowers(topN - 1, inter, from, to);
}
}
}
```
### Experience
- course Java (2017)

### Education
- Military Academy of the Republic of Belarus (radio engineer)

### English
Level is A2
Binary file added image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aliaksanr Tarhonski</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header >
<h2 class = "header-h2"> RS School </h2>
</header>

<main>
<img class="photo" src="image.jpg" alt="image" width="240" height="275">
<h1>Aliaksandr Tarhonski</h1>
<section>
<h2>Contacts</h2>
<ul>
<li><strong>Mobile</strong>: +375 (44) 7394847</li>
<li><strong>E-mail</strong>: stdmnstar@gmail.com</li>
</ul>
</section>
<section>
<h2>Summary</h2>
<p>I started programming early. Then I studied at a higher educational institution
as a mathematician-programmer. However, it so happened that I had to graduate
from another educational institution as a radio engineer. But over time,
I moved on to work as an administrator of networks, servers. This is what I
have been doing for the last 13 years. But I would like to really do programming.</p>
</section>
<section>
<h2>Skills</h2>
<p>Java, MS SQL, PosgreSQL, MS Server, 1C…...</p>
</section>
<section>
<h2>Latest code example</h2>
<details open>
<summary>hide/show</summary>

<div class="code">

<pre>
<code>
public class MainClass {
public static void main(String[] args) {
int nDisks = 3;
doTowers(nDisks, 'A', 'B', 'C');
}

public static void doTowers(int topN, char from,
char inter, char to) {
if (topN == 1){
System.out.println("Disk 1 from "
+ from + " to " + to);
}else {
doTowers(topN - 1, from, to, inter);
System.out.println("Disk "
+ topN + " from " + from + " to " + to);
doTowers(topN - 1, inter, from, to);
}
}
}
</code>
</pre>

</div>
</details>
</section>
<section>
<h2>Experience</h2>
<ul>
<li>course Java (2017)</li>
</ul>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Military Academy of the Republic of Belarus (radio engineer)</li>
</ul>
</section>
<section>
<h2>English</h2>
<p>Level is A2</p>
</section>

</main>

<footer>
<p class = "footer-p"><strong>E-mail</strong>: stdmnstar@gmail.com, <strong>mob.</strong>: +375 (44) 7394847</p>
</footer>
</body>

</html>
56 changes: 56 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@


body {
background:#010d30 ;
color:#c4c2bd;
max-width: 1024px;
margin: 30px auto;
}

header, main {
padding: 10px 20px;
}

main {
background: #070476;
border-radius: 15px;
}

li {
list-style-type: circle;
}

strong {
color: #fafa7e;
}

h1, h2 {
color:white;
}

p {
text-align: justify;
}

.header-h2 {
color:#ffc100;
font-size: 30px;
}

.photo {
float: left;
margin-right: 30px;
margin-top: 40px;
border-radius: 10px;
}

.code {
border-radius: 10px;
font-family: 'verdana', Courier, monospace;
background-color: #9690f1;
color: black;
}

.footer-p {
text-align: center;
}