About my self
Hi, I'm Alexey Redko, a Frontend Developer based in Minsk. I'm passionate about creating high-quality, user-friendly web interfaces using modern technologies. I completed Frontend Development courses at iTincubator, gaining foundational skills in Figma, HTML, CSS, and JavaScript. Currently, I'm focused on advancing my skills to a Middle Frontend Developer level, with a strong emphasis on React. Continuous learning is a core part of my professional approach. While I don't have formal employment experience, I've gained valuable practical experience through freelance work. I've built websites from scratch and refactored existing code, deepening my understanding of responsive design, cross-browser compatibility, and code optimization. I'm proficient with Git for version control. I'm a responsible and detail-oriented professional, always striving for results. I'm a quick learner and adaptable to new technologies, confident in my ability to quickly integrate into a team and contribute effectively to projects. I'm seeking opportunities to work with modern tech stacks like React, NodeJS, Redux, and APIs, eager to apply my skills and grow professionally.
Education
- Code-basics: JavaScript,CSS,HTML
- The Rolling Scopes: JS / FRONT-END. STAGE 0; 1
- iTincubator: c нуля до трудоустройства
- Udemy: Полный курс по JavaScript - c нуля до результата
- BSPU name M. Tanka - chemistry and biology teacher
- BSPU name M. Tanka - master's degree in chemistry
Presentation
Code Example
let offset = 0;
const sliderLine = document.querySelector('.slider-line');
document.querySelector('.btnRight').addEventListener('click', function(){
offset = offset + 760;
if (offset > 3800){
offset = 0;
}
sliderLine.style.left = - offset + 'px';
});
document.querySelector('.btnLeft').addEventListener('click', function(){
offset = offset - 760;
if (offset < 0){
offset = 3800;
}
sliderLine.style.left = - offset + 'px';
})