Skip to content
View thangnc's full-sized avatar

Block or report thangnc

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
thangnc/README.md
package thangnc;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class AboutMe {
    public Map<String, String> getCurrentWorkplace() {
        Map<String, String> currentWorkplace = new HashMap<>();
        currentWorkplace.put("company", "Est Rouge United");

        return currentWorkplace;
    }

    public Map<String, List<String>> getTechnologies() {
        Map<String, List<String>> techs = new HashMap<>();
        techs.put("back-end", Arrays.asList("Java", "NodeJS", "Python"));
        techs.put("front-end", Arrays.asList("Angular", "VueJS"));
        techs.put("mobile", Arrays.asList("Android", "Flutter"));
        techs.put("test", Arrays.asList("JUnit", "Selenium", "Gatling"));
        techs.put("databases", Arrays.asList("MySQL", "MongoDB", "SQLite", "Presto"));
        techs.put("devops", Arrays.asList("AWS", "Ansible", "Docker", "Jenkins", "CircleCI", "TravisCI", "Hashicorp Vault", "Datadog", "Sentry", "EFK", "ELK"));
        techs.put("os", Arrays.asList("Linux", "MacOS"));

        return techs;
    }
}

Popular repositories Loading

  1. luc-hao-bat-quai luc-hao-bat-quai Public

    Lục Hào Bát Quái — Vietnamese I Ching Divination Claude Plugin

    3

  2. ai-chatbot ai-chatbot Public template

    Forked from vercel/chatbot

    A full-featured, hackable Next.js AI chatbot built by Vercel

    TypeScript 1

  3. playframework playframework Public

    Forked from playframework/playframework

    Play Framework

    Scala

  4. pomelo pomelo Public

    Forked from NetEase/pomelo

    A fast,scalable,distributed game server framework for Node.js.

    JavaScript

  5. redis redis Public

    Forked from redis/redis

    Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes

    C

  6. reds reds Public

    Forked from tj/reds

    light-weight, insanely simple full text search module for node.js - backed by Redis

    JavaScript