Rodionov Misha - photo

Hey I am Rodionov Misha

a web developer

ABOUT ME


I have completed a degree in Software Engineering from the university. I have one year of experience working in IT as a PPC marketer, where I developed strong skills in teamwork, remote work, and familiarity with project management tools.

EDUCATION:

Pyryatyn branch of the European University

Degree: Professional Junior Bachelor

Major: 121 Software Engineering

Dates: September 2021 - June 2024

LANGUAGES:

SKILLS:

  1. HTML/CSS
  2. Javascript
  3. Figma(and other graphic editors)
  4. Git/Github

Code example:

function duplicateEncode(word){
    let result = '';
    word = word.toLowerCase().split('');
    for(let i = 0; i < word.length; i++){
        for(let j = 0; j < word.length; j++){
            if(i != j){
                if(word[i] == word[j]){
                    result += ')'
                    break
                }
            }
        }
        if(result.length == i + 1){
            continue
        }
        result += '('
    }
    return result
}

SOME OF MY PROJECTS


Website preview image
Website preview image
Website preview image
Website preview image