Skip to content
View mikk1max's full-sized avatar
πŸ’»
Coder.
πŸ’»
Coder.

Highlights

  • Pro

Block or report mikk1max

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mikk1max/README.md

< πŸ‘‹ Hello, World! / >

As a software engineering student, I am driven by my passion for transforming innovative ideas into reality through elegant interfaces. I enjoy the challenge of designing and developing solutions that enhance user experiences.

GitHub Stats Top Languages

Pinned Loading

  1. rent-and-wear-app rent-and-wear-app Public

    Figma design: https://cutt.ly/xeANFD6D

    JavaScript 2

  2. estatery-page estatery-page Public

    Figma design: https://cutt.ly/jrgujq1d

    JavaScript 1

  3. cv-generator cv-generator Public

    JavaScript 1

  4. Duard4/goit-lloyd-portfolio Duard4/goit-lloyd-portfolio Public

    Figma design: https://fig.page/Uad8ZiJ

    CSS 4 3

  5. semantic-commits.md semantic-commits.md
    1
    # Semantic Commit Messages
    2
    
                  
    3
    Format: `<type>(<scope>): <subject>`
    4
    
                  
    5
    `<scope>` is always optional
  6. custom-deep-clone.md custom-deep-clone.md
    1
    ```js
    2
    function deepClone(obj) {
    3
      if (obj === null || typeof obj !== 'object') {
    4
        return obj; // return primitive value as is
    5
      }