diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..eba38b0 --- /dev/null +++ b/cv.md @@ -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 diff --git a/image.jpg b/image.jpg new file mode 100644 index 0000000..92e12c1 Binary files /dev/null and b/image.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..7ccabd9 --- /dev/null +++ b/index.html @@ -0,0 +1,96 @@ + + + + + + + Aliaksanr Tarhonski + + + + +
+

RS School

+
+ +
+ image +

Aliaksandr Tarhonski

+
+

Contacts

+ +
+
+

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…...

+
+
+

Latest code example

+
+ hide/show + +
+ +
+                        
+    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

+ +
+
+

Education

+ +
+
+

English

+

Level is A2

+
+ +
+ + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..80c2cbe --- /dev/null +++ b/style.css @@ -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; +} \ No newline at end of file