Skip to content
View mityaua's full-sized avatar
🍀
🍀

Block or report mityaua

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.

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

Just creating 🐞

My stack:

html5 css3 sass javascript typescript vue vuex pinia vue router vue test utils quasar vite vitest jest nodejs signalr Tailwind CSS Apache ECharts express mongodb bash git gulp npm postman figma teamcity react webpack

I'm interested in:

nuxt nestjs angularjs svelte nextjs bootstrap chartjs mariaDB postgresql graphql docker redis amazon

Drafts:

codesandbox codepen

mityaua

Pinned Loading

  1. nestjs-practice nestjs-practice Public

    Nest JS

    TypeScript 1

  2. irregular-verbs-table irregular-verbs-table Public

    🟣 List of irregular verbs

    Vue

  3. rps-game rps-game Public

    Rock Paper Scissors Game

    Vue

  4. nodejs-contacts-api nodejs-contacts-api Public

    Forked from goitacademy/nodejs-homework-template

    NodeJS Rest Api Application (MongoDB, Mongoose, Joi)

    JavaScript

  5. ESLint 9 Flat config example ESLint 9 Flat config example
    1
    import type { Linter } from "eslint";
    2
    
                  
    3
    import { globalIgnores } from "eslint/config";
    4
    import { defineConfigWithVueTs, vueTsConfigs } from "@vue/eslint-config-typescript";
    5
    import pluginVue from "eslint-plugin-vue";
  6. Luhn Algorithm - Credit Card Number ... Luhn Algorithm - Credit Card Number Checker
    1
    const checkByLuhn = (card: string): boolean => {
    2
      if (!card) {
    3
        return false;
    4
      }
    5