Front-End Developer

Photo

OLGA KRUKOVA

Contact information:

Tel: +380957248791

Email to: Olga Krukova

Telegram: send a message

Discord: OlgaKrukova(@lokispirit)

About:

Goal: To become a java-programmer

Priorities:

  • interesting, creative work
  • decent salary
  • the opportunity to develop myself in other IT areas

Education:

Odessa National University of Technology

Management

September 1999 - June 2004 | Ukraine

Odessa State Environmental University

Oceanology

September 2011 - June 2016 | Ukraine

Work experiance:

Sale Manager

September 2004 - Novenber 2011 | Ukraine

Tech Skills

  • JAVA Core
  • HTML5
  • CSS3

Code example:

                                    
 public class Solution {
     static String toCamelCase(String s) {
         if(s==null || s.isEmpty()){
             return "";
         }
         String[] split = s.split("[_-]");
         StringBuilder builder = new StringBuilder();
         builder.append(split[0]);
         for (int i = 1; i < split.length; i++) {
             builder.append(split[i].substring(0, 1)
                 .toUpperCase() +
                 split[i].substring(1));
         }
         return builder.toString();
     }
 }
                                
                                
CV

Languages

  • Ukrainian - Native
  • Russian - Native
  • English - Intermidiate