Kupryianau Ivan

I'm beginner software developer

profile-photo

About Me

Hello, my name is Ivan, i’m 23 years old beginner software developer from Belarus.

I have tried to make some websites at shopify, wordpress, it very interesting experience. Now i decide to learn “how to make it by my hands and fingers!”.

Currently i taking courses by A1Q1, Junior QA Engineer, because i was very interested how testing process looks like.

Education:

  • MCB (Minsk College of Business):
    2013-2017, PoIT:
    SQL
    1C
    C#
    Little bit css/html
    Assembler
    The diploma project was: 1C Automatization;
                
  • BSUIR (Belarusian State University of Informatics 
                  and Radioelectronics):
    2017-2021, PoIT:
    Algorithms (just a little bit)
    Little bit web:
    HTML
    CSS
    Computer Science
    The diploma project was: IRC Chat
    
                
  • FreeCodeCamp:

Experience:

Code Examples:

              
                function findShort(s){
                  return parseInt(s.split(' ')
                          .map((item) => item.length)
                          .sort((a, b) => a - b)
                          .slice(0, 1))
                }