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 is supported. This note will only be visible to 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:

Frontend basics:

html5 css3 sass javascript typescript

Vue ecosystem:

vue vuex pinia vue router vue test utils quasar

Frameworks & libraries:

react Tailwind CSS Apache ECharts

Build & testing:

vite vitest jest webpack gulp

Backend & data:

nodejs express signalr mongodb

DevOps & CI/CD:

teamcity argocd

Tools & design:

git bash npm postman figma

I'm interested in:

Frameworks:

nuxt nestjs angularjs svelte nextjs

Styling & charts:

bootstrap chartjs

Databases:

mariaDB postgresql redis

API:

graphql

DevOps & cloud:

docker kubernetes 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

    🔖 English Irregular Verbs - Table with Search & Pronunciation

    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