Coder Social home page Coder Social logo

Welcome to my github profile

About me

I`m a 26 years old Frontend Developer very passionate about my technologies and software Development. I can use the following languages, libraries, frameworks or technologies.

image image image image image image image image image image image image image image image image

You can contact me through these links

image image image image image

class FrontendDev {

  private name: string;
  private age: number;
  private technologies: string[]; // List of all Frameworks, languages, libraries and general knowledges
  private languages: { name: string, level: string }[]; // Languages that I speak
  private wishlist: string[]; 
 
  constructor(name: string, age: number, technologies: string[], languages: { name: string, level: string }[], wishlist: string[]) {
    this.name = name;
    this.age = age;
    this.technologies = technologies;
    this.languages = languages;
    this.wishlist = wishlist;
  }
 
  greet(): string {
    return `Hello, my name is ${ this.name } and I'm ${ this.age } years old`
  }
  
  
  myTechnologies(): string {   
    return `As a developer I have knowledge about those things: ${ this.technologies.join(', ') }`
  }
  
  myLanguages(): string {
    let answer: string[] = []
    this.languages.forEach((language: any) => {
      answer.push(`${ language.level } ${ language.name }`)
    })
    return `I can speak and write ${ answer.join(', ') }`
  }
  
  returnWishlist(): string {
    return `I wish to ${ this.wishlist.join(', ') }`
  }
}
 
let me = new FrontendDev(
  'Arthur Nassar',
  26,
  ['HTML', 'CSS', 'Bootstrap', 'SASS', 'Javascript', 'VueJS', 'Vue Router', 'Vuex', 'React', 'Redux', 'React Router', 'Typescript', 'MongoDB', 'NestJS', 'PHP'],
  [ { name: 'Portuguese', level: 'native' }, { name: 'English', level: 'advanced' }, { name: 'French', level: 'beginner' } ],
  [ 'Finish my ongoing React pathfinder project', 'Write an academic article about front-end technologies', 'Participate in a software development presencial event' ]
  );
  
  console.log(me.greet())
  // Hello, my name is Arthur Nassar and I`m 26 years old
  
  console.log(me.myTechnologies())
  // As a developer I have knowledge about those things: HTML, CSS, Bootstrap, SASS, Javascript, VueJS, Vue Router, Vuex, React, Redux, React Router, Typescript, MongoDB, NestJS, PHP
  
  console.log(me.myLanguages())
  // I can speak and write native Portuguese, advanced English, beginner French
  
  console.log(me.returnWishlist())
  // I wish to Finish my ongoing React pathfinder project, Write an academic article about front-end technologies, Participate in a software development presencial event

image

image image image image

Arthur Nassar's Projects

copiacaixa icon copiacaixa

DEPRECATED: Copy from a bank Web App with Pure JS functions

golang-docker icon golang-docker

Challenge that consists in creating a golang app and dockerize it

jogodavelha icon jogodavelha

Projeto simples utilizando conhecimentos em Javascript para criar um jogo da velha utilizando o método Model View Controller (MDC)

mancala-back icon mancala-back

Repository for backend of Mancala Game fullstack project

mancala-front icon mancala-front

Repository for the front end code of Mancala game fullstack project

nftcard icon nftcard

This is a NFT Card preview made using HTML and CSS

node-nginx icon node-nginx

Docker compose node app with nginx reverse proxy

space-tourism icon space-tourism

Site com tema de turismo espacial (desafio do Frontend Mentor)

vendaebook icon vendaebook

Site para captura de clientes com integração ao MailChimp

vue-autonumeric icon vue-autonumeric

A Vue.js component that wraps the awesome autoNumeric input formatter library

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.