portrait photography

Marcin Duda

Junior Frontend Developer

Contact

  • Adress: Wrocław, Poland

  • Email: m4rcin.duda@gmail.com

  • LinkedIn: Marcin Duda

Skills

  • 3D Studio Max

  • Photoshop

  • After Effects

  • HTML5/CSS3

  • JavaScript

  • Visual Studio Code

  • Windows OS

languages

  • English

    Intermediate

  • Polish

    Native

Summary

Hi! I'm 3D graphic designer.

My main specialisation is 3D modeling, but i'm also experienced in creating interior/exterior visualisations, packshots and technical 3d animations.

Experience

3D Graphic Designer - Freelancer(Since 2017)

Education

Wroclaw School of Information Technology

engineering degree at the Faculty of graphic design

Courses

Responsive Web Desing - freeCodeCamp

Code example

Write an algorithm that will identify valid IPv4 addresses in dot-decimal format. IPs should be considered valid if they consist of four octets, with values between 0 and 255, inclusive.

              function isValidIP(str) {
  let arr = str.split(/[.]/);
  let re = /^(?:[1-9][0-9]*|0)$/;

  if (arr.length === 4 && arr.every(v => (re.test(v) && v <= 255))) {
      return true;
  } else {
    return false;
    }
  }
              
            

Projects

CV. HTML, CSS & Git Basics