Skip to content
View mqJose's full-sized avatar
🏠
🏠
Block or Report

Block or report mqJose

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
mqJose/README.md

Hello, I'm Jose David! 🔭

Software Developer at Universidad Mayor de San Andres

GitHub mqJose

A little more about me...

const jodamaqui = {
  principles: {
    YAGNI: "You arent gonna need it", 
    SOC: "Separation of concerns", 
    LOD: "Low of demeter", 
    KISS: "Keep it simple stupid",  
    DRY: "Dont repeat yourself",
    SOLID: [
      "Single Responsability Open",
      "Closes Principle",
      "Liskov Substitution",
      "Interface Segregation",
      "Dependency Inversion"
    ] ,
  },
  code: {
    languages: [Javascript, Typescript, HTML, CSS, Python, Java, Dart, Php],
    technologies: {
      frontend: [
        ReactJs, Angular, VanillaJs, ReactNative, Ionic, Flutter
      ],
      design: ['CSS Pure', Tailwindcss, Bootstrap, Styled, Figma, 'UX/UI'],
      backend: [
        NodeJs, Nestjs, 'Loopback 4', Expressjs, Prisma, SpringBoot, Flask, Laravel
      ],
      testing: [Jasmine, Jest, Enzyme],
      automation: [GithubActions, JMeter, Cypress],
      qa: ['Case Tests', Mantis],
      devOps: [AWS, GCP, IBMCloud, ],
      adminitration: [
        Trello, Jira, ClickUp, FocusToDo, Scrum, Kanban
      ],
      others: [GraphQL, ApolloClient, ApolloServer, Webpack, Esbuild, Vite]
    }
  },
  architecture: [
    "microservices", 
    "event-driven", 
    "design system pattern", 
    "jamStack",
  ],
  companies: "JD7",
  services:[
    Inventory, CRM, ERP, BPM, RRHH, Accounting, Website, Stocktaking, LandingPage, Support
   ],
  challenge: "I am focused on react, loopback4 on typescript now"
}

mqJose

mqJose

I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :)


⭐️ From @mqJose

Pinned

  1. react react Public

    Forked from facebook/react

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

    JavaScript 1

  2. loopback-next loopback-next Public

    Forked from loopbackio/loopback-next

    LoopBack makes it easy to build modern API applications that require complex integrations.

    TypeScript

  3. JavaScript To Convert Bytes To MB, K... JavaScript To Convert Bytes To MB, KB, Etc
    1
    // from http://scratch99.com/web-development/javascript/convert-bytes-to-mb-kb/
    2
    function bytesToSize(bytes) {
    3
        var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
    4
        if (bytes == 0) return 'n/a';
    5
        var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
  4. next-swr-axios-ssr next-swr-axios-ssr Public

    Implementation of Server Web Rendering, axios and Server Side Rendering in a Next.js project.

    JavaScript

  5. Get multer Storage Config with uuid Get multer Storage Config with uuid
    1
    import multer from 'multer';
    2
    import {v4 as uuid} from 'uuid';
    3
    
                  
    4
      private getMulterStorageConfig(pathStorage: string) {
    5
        let filename = '';
  6. graphql-lb4 graphql-lb4 Public

    Base backend to start with graphql and loopback 4, with in-memory examples and models consumed from a database

    TypeScript