diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..95c4d57 --- /dev/null +++ b/cv.md @@ -0,0 +1,23 @@ +**Junior Developer Resume.** + + +1. My name is Yauheni Shypila. +2. My mobile phone number is: *+375293754811*. You can find me on *Telegram* and *Viber*. My Skype is *evshipilo*, my e-mail is *evshipilo@gmail.com*. +3. I really like to learn something new. My goal is to become a software developer and I will achieve it. +4. I was learning front end. I have studied HTML, SCC and JS basics. I have studied the *JAVA* basics too. I was working in *Intellij IDEA, WEB Storm* and *Brackets* IDEs. +5. Some JS code example: + ```javascript + function camelize(str) { + let arr = str.split('-'); + arr[0] = arr[0].toLowerCase(); + for (let i = 1; i < arr.length; i++) { + let a=arr[i]; + arr[i]=a[0].toUpperCase()+a.slice(1); + } + return (arr.join('')); + } + + ``` +6. [Here you can see my portfolio.](http://r29735qf.beget.tech/) +7. I was learning JAVA in online JAVA Rush courses. Now I am studying JS in Rolling Scopes School. +8. I am improving my English skills in offline courses and in *Duolingo* application. \ No newline at end of file diff --git a/img/avatar.jpg b/img/avatar.jpg new file mode 100644 index 0000000..06ac2f6 Binary files /dev/null and b/img/avatar.jpg differ diff --git a/img/call-answer.png b/img/call-answer.png new file mode 100644 index 0000000..0ed5028 Binary files /dev/null and b/img/call-answer.png differ diff --git a/img/github.png b/img/github.png new file mode 100644 index 0000000..08bba55 Binary files /dev/null and b/img/github.png differ diff --git a/img/global.png b/img/global.png new file mode 100644 index 0000000..337d473 Binary files /dev/null and b/img/global.png differ diff --git a/img/message-envelope.png b/img/message-envelope.png new file mode 100644 index 0000000..33c951d Binary files /dev/null and b/img/message-envelope.png differ diff --git a/img/skype.png b/img/skype.png new file mode 100644 index 0000000..b6a1e7a Binary files /dev/null and b/img/skype.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..77ca2bc --- /dev/null +++ b/index.html @@ -0,0 +1,113 @@ + + +
+ +I really like to learn something new. My goal is to become a software + developer and I will achieve it.
+I was learning front end. I have studied HTML, SCC and JS basics. + I have studied the JAVA basics too. I was working in Intellij + IDEA, WEB Storm and Brackets IDEs.
+
+function camelize(str) {
+ let arr = str.split('-');
+ arr[0] = arr[0].toLowerCase();
+ for (let i = 1; i < arr.length; i++) {
+ let a=arr[i];
+ arr[i]=a[0].toUpperCase()+a.slice(1);
+ }
+ return (arr.join(''));
+}
+
+