Git Product home page Git Product logo

Thiago Souza


πŸ“ƒ Github Stats


Thiago's Github Stats Thiago's Top Languages
Note: Top languages is only a metric of the languages my public code consists of and doesn't reflect experience or skill level.

⚑ Main Technologies



πŸ“œ Resume (Nodejs + Mongoose)


const Experience = require('./models/Experience');
const Graduation = require('./models/Graduation');
const Project = require('./models/Project');
const User = require('./models/User');

async function getAndShowSomeInformations({ username }) {
  // USER DETAILS -----------------------------------------

  const user = await User.findOne({ 
    username, 
  });

  console.log(user); 
  /* {
    _id: '5a093631713c0900019b0000',
    name: 'Thiago Souza',
    username: 'thrsouza'
    title: 'Full Stack Developer',
    alias: ['ZeroDois', 'Rezim', 'Mizer'],
    hobbies: ['Music', 'Games', 'Movies', 'Series'],
  } */


  // CURRENT JOB ------------------------------------------

  const currentJob = await Experience.findOne({ 
    userId: user._id, 
    endDate: null, 
  });

  console.log(currentJob); 
  /* {
    _id: '5b093631713c0900019b0001',
    userId: '5a093631713c0900019b0000',
    title: 'Full Stack Technical Leader',
    companyName: 'Golfleet Tecnologia',
    employmentType: 'Full-time',
    location: 'Londrina, PR - Brazil',
    startDate: '2020-01-16',
    endDate: null,
  } */


  // GRADUATION -------------------------------------------

  const graduation = await Graduation.findOne({ 
    userId: user._id 
  });

  console.log(graduation);
  /* {
    _id: '5c093631713c0900019b0002',
    userId: '5a093631713c0900019b0000',
    school: 'Campus Virtual Cruzeiro do Sul Educacional',
    fieldOfStudy: 'AnΓ‘lise e Desenvolvimento de Sistemas',
    startDate: '2018-01-01',
    endDate: '2020-12-31',
  } */


  // OPEN SOURCE PROJECTS ---------------------------------
  
  const projectsOpenSource = await Project.find({ 
    userId: user._id, 
    openSource: true 
  });

  console.log(projectsOpenSource);
  /* [
    { 
      _id: '5d093631713c0900019b0003',
      userId: '5a093631713c0900019b0000',
      name: 'neutronjs', 
      repository: 'https://github.com/neutronjs/neutron',
      openSource: true, 
    }, 
    { 
      _id: '5d093631713c0900019b0004',
      userId: '5a093631713c0900019b0000',
      name: 'cheesecakejs', 
      repository: 'https://github.com/thrsouza/cheesecake', 
      openSource: true, 
    },
  ] */
}

getAndShowSomeInformations({ username: 'thrsouza' });



Thiago Souza's Projects

gobarber-app icon gobarber-app

GoBarber: This project was created along the second module of Nodejs (GoStack - Rocketseat).

karma icon karma

Find leaked emails with your passwords. demo:

marketplace-api icon marketplace-api

Marketplace API: This project was created along the third module of Nodejs (GoStack - Rocketseat).

meetapp icon meetapp

This project was created to Bootcamp final challenge. (GoStack - Rocketseat)

metrics icon metrics

πŸ“Š An infographics generator with 30+ plugins and 200+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!

native-feed icon native-feed

This project was created along the first module of React Native (GoStack - Rocketseat).

neutron icon neutron

Neutron is a CLI developed to help developers create new react projects with Redux + Redux Saga and offers well-structured code standardization.

neutron-website icon neutron-website

This website project was creted to record key information about Neutron JS installation, commands, contributing and code of conduct.

next-pwa icon next-pwa

Zero config PWA plugin for Next.js, with workbox 🧰

node-api-with-tdd icon node-api-with-tdd

This project was created along the fifth module of Nodejs with Test Driven Development (GoStack - Rocketseat).

node-books-api icon node-books-api

This project was created as an example of "How to Create a Nodejs API" for educational porposes.

of-age icon of-age

This project was created along the first module of Nodejs (GoStack - Rocketseat).

open-wc icon open-wc

Open Web Components: guides, tools and libraries for modern web development and web components

rocketbook icon rocketbook

This project was created along the first module of ReactJS (GoStack - Rocketseat).

ths-theme icon ths-theme

THS is a new theme for Visual Studio Code based on Dracula.

uesp-esoapps icon uesp-esoapps

A variety of Windows applications related to ESO and the UESP.net.

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.