Skip to content
View Novpa's full-sized avatar
🏠
Working from home
🏠
Working from home
  • San Francisco, California
  • Instagram novpa_a

Organizations

@Minpro-dev @Finpro-dev

Block or report Novpa

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.

Content in all repositories owned by your account will be closed.
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
Novpa/README.md
class NovpaGithubProfile {
    private static name = 'Novpa'
    public static role = 'Software Engineer'
    public static motherTongueFE: string[] = ["English"]
    public static motherTongueBE: string[] = ["Logic"]
    public static skills = ["Debugging in Stack Overflow with no AI"]
    public static totalProjects = 5

    constructor() {}

    public static addLanguage(language: string, type: "BE" | "FE"): void {
        if (type === "BE") {
            this.motherTongueBE.push(language)
        } else if (type === "FE") {
            this.motherTongueFE.push(language)
        }
    }
  
    public static printProfile(): void {
        console.log(`I'm ${this.name}, a${this.role}`)
        console.log(`Skills: ${this.skills.join(', ')}`)
        
        console.log(`\nMother Tongue FE:`)
        this.motherTongueFE.forEach(lang => console.log(`> ${lang}`))
    
        console.log(`\nMother Tongue BE:`)
        this.motherTongueBE.forEach(lang => console.log(`> ${lang}`))
    }
}

const feSkills = ["TypeScript", "React.js", "Vue.js", "Next.js", "Tailwind"]
const beSkills = ["Node.js", "Express.js", "SQL", "NoSQL", "Git", "Docker", "Redis"]

feSkills.forEach(skill => NovpaGithubProfile.addLanguage(skill, "FE"))
beSkills.forEach(skill => NovpaGithubProfile.addLanguage(skill, "BE"))

NovpaGithubProfile.printProfile()

Snake Game

Pinned Loading

  1. nvim-config nvim-config Public

    Editor is my second home tbh & somehow, fewer buttons make more sense.

    Lua

  2. Finpro-dev/freshora-backend Finpro-dev/freshora-backend Public

    TypeScript 1

  3. Finpro-dev/freshora-frontend Finpro-dev/freshora-frontend Public

    TypeScript 1

  4. Minpro-dev/ibentix Minpro-dev/ibentix Public

    TypeScript 1