Skip to content
View niclqs's full-sized avatar

Block or report niclqs

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


export default class Attributes {
  /**
   * Returns languages spoken and the user's age.
   * @returns A tuple containing an array of languages and the user's age.
   */
  static life(): [string[], number] {
    const languages = ['German', 'English', 'Russian'];
    const age = 22;
    return [languages, age];
  }

  /**
   * Returns coding skills, specializations, and development tools.
   * @returns A tuple containing skill levels, specializations, and development environment tools.
   */
  static coding(): [{ expert: string[]; intermediate: string[]; learning: string[] }, string[], string[]] {
    const skillLevels = {
      expert: ['TypeScript', 'Java', 'Lua 5.4'],
      intermediate: ['PHP', 'C#'],
      learning: ['C++']
    };
    const specializations = ['Fullstack', 'AI', 'Automation'];
    const tools = ['Cursor', 'Postman', 'PostgreSQL'];
    return [skillLevels, specializations, tools];
  }

  /**
   * Returns contact information.
   * @returns A friendly message to reach out.
   */
  static contact(): string {
    return 'If you know me, reach me :)';
  }
}

Skills

@niclqs's activity is private