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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. playframework playframework Public

    Forked from playframework/playframework

    Play Framework

    Scala

  2. pomelo pomelo Public

    Forked from NetEase/pomelo

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

    JavaScript

  3. 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

  4. reds reds Public

    Forked from tj/reds

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

    JavaScript

  5. NodeBB NodeBB Public

    Forked from NodeBB/NodeBB

    Node.js based forum software built for the modern web

    JavaScript

  6. passport passport Public

    Forked from jaredhanson/passport

    Simple, unobtrusive authentication for Node.js.

    JavaScript