Phone +79969191309
E-mail: denis.kyznecov@gmail.com
Telegram: @DenKuznets
Discord: DenKuznets (@DenKuznets)
I’ve been doing web development since 2022. I keep learning new technologies and follow the latest frontend innovations. My knowledge of English allows me to receive information first-hand without waiting for translation. I have some experience in commercial development. I worked in a web studio collaborating with a backend programmer and web designer and now know how to work in a team, meet a deadline while keeping all the important parts of a site pixel perfect to Figma design.
REACT
NEXTJS
TAILWIND
TS
MUI
REDUX
REST
UNIT TESTING
STORYBOOK
STYLED-COMPONENTS
HTML CSS JS
(for every listed skill here I have at least one project demo in my portfolio)
Codewars | 7 kyu |
Determine if the poker hand is flush |
Determine if the poker hand is flush, meaning if the five cards are of the same suit. Your function will be passed a list/array of 5 strings, each representing a poker card in the format “5H” (5 of hearts), meaning the value of the card followed by the initial of its suit (Hearts, Spades, Diamonds or Clubs). No jokers included. Your function should return true if the hand is a flush, false otherwise. The possible card values are 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, A
function isFlush(cards) {
for(let i = 0; i < cards.length - 1; i++){
if(cards[i][cards[i].length - 1] !== cards[i + 1][cards[i + 1].length - 1]) return false;
}
return true ;
}
Frontend developer job in a web studio Alex Media
Completed projects (landings):
Techauto | Github |
BMK | Github |
Cleaning company Chistyla | Github |
Municipal baths site | Github |
These were just the highlights of my learning journey, and I visited many more interesting resources, watched dozens of hours of YouTube videos, and read many books. Some of them I would like to mention here:
Youtube channels: Brad Traversy Media, Codevolution, Wes Bos, John Smilga’s Coding Addict
Books: Head First book series, Test Driven Development by Kent Beck, Think Like a Programmer by Anton Spraul
I keep up with all new trends in frontend by following these great frontend and react roadmaps. You can even check my progress there - frontend, react.