Skip to content
View DvdQzd's full-sized avatar
🏠
Working from home
🏠
Working from home
  • SoftServe
  • ValparaΓ­so, Chile.
Block or Report

Block or report DvdQzd

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
DvdQzd/README.md

Hi πŸ‘‹, I'm David Quezada

Yet another software developer

πŸ’« About Me:

πŸ”­ I’m currently working at SoftServe
🌱 I’m currently learning AWS and Unreal Engine 5
πŸ“« How to reach me david.quezada.m@gmail.com

🌐 Socials:

LinkedIn

πŸ’» Tech Stack:

C# C++ CSS3 GraphQL HTML5 Java JavaScript PHP Python TypeScript Python AdonisJS Bootstrap Django Express.js Insomnia jQuery JWT Laravel NPM NestJS NodeJS Pug UNREAL React Socket.io Spring Yarn Apache Jenkins Nginx AmazonDynamoDB MongoDB MySQL Postgres Redis SQLite Confluence Docker ESLint Jira Kubernetes Postman Swagger Trello

πŸ“Š GitHub Stats:



πŸ† GitHub Trophies

✍️ Random Dev Quote

πŸ” Top Contributed Repo


πŸ’° You can help me by Donating

BuyMeACoffee PayPal Ko-Fi

Pinned

  1. poc-auth poc-auth Public

    An authentication service proof of concept. It returns a JSON Web Token if the user exists.

    TypeScript

  2. poc-bff poc-bff Public

    A Backend for Frontend proof of concept. It checks for permissions in a valid JWT and returns the resource if has the necessary permission. If not, it returns a "Forbidden".

    TypeScript

  3. spotify-playlist-mixer spotify-playlist-mixer Public

    It merges Spotify playlist into one, for parties.

    JavaScript

  4. consulta-deuda-previsional consulta-deuda-previsional Public

    Recibe una lista de RUTs, obtiene deudas previsionales relacionadas y las guarda en una BD.

    Python 1

  5. StackOverPlop StackOverPlop Public

    Forked from ZeegCL/StackOverPlop

    THE forum for ProinChile (jk). Basic forum system used to learn AdonisJS.

    JavaScript 1 1

  6. LeetCode FizzBuzz Solution explained LeetCode FizzBuzz Solution explained
    1
    var fizzBuzz = function(n) {
    2
        // Start by creating an empty list to store our result
    3
        var result = []
    4
        // Then we iterate from 1 to the number input
    5
        for (let i = 1; i <= n; i++) {