Kanykei Zulumova,
Frontend Developer

02

Summary

Detail-oriented Frontend Developer with a strong background in operational management and process optimization. Transitioning from a 7-year career in logistics management to software engineering, bringing a unique blend of technical skills in React/JavaScript and advanced expertise in Kanban systems and Management 3.0. Proven ability to build efficient workflows, analyze complex data sets, and lead collaborative teams to achieve high-impact results.

03

EDUCATION

2012 — 2017

Manas University

Bachelor's Degree

2025 — Present

The Odin Project

Full Stack Path

2024 — 2024

Kanban (KMP I)

Management 3.0

04

EXPERIENCE

2020.01 — 2025.01

VED Partner / Exporter

Head of Operations. Established the Bishkek regional office, designing core business processes. Managed a team of operators and improved delivery efficiency.

2017.08 — 2019.12

Jet Logistic

Account Manager. Managed full sales lifecycle and analyzed client needs for tailored commercial proposals.

05

LANGUAGES

  • English B2
  • Russian Native
  • Kyrgyz Native
  • Turkish C1

06

Projects

CV Builder Application (React)

Architected a multi-step form application for professional data management.
View Code on GitHub

Data Structure Implementations (JS)

Developed custom classes for Binary Search Trees and Linked Lists, optimizing search and traversal algorithms.
View Code on GitHub

Screeps Automation (JS)

Engineered automated scripts for resource management in a programmable MMO.

07

SKILLS

  • JavaScript
  • React.js
  • HTML5 / CSS3
  • Webpack / Vite
  • Git / GitHub
  • Kanban / Agile

08

Code Example

Detect Pangram:


 function isPangram(string){
    let str = string.toLowerCase();
      const alhp = "abcdefghijklmnopqrstuvwxyz";
        for (let i = 0; i < alhp.length; i++) {
           if (str.indexOf(alhp[i]) == -1) {
                return false;
                    }
            }
               return true;
        }