Skip to content
View ramonjoaquim's full-sized avatar
  • Betha Sistemas
  • Brasil
  • 12:29 (UTC -03:00)

Organizations

@nomasys
Block or Report

Block or report ramonjoaquim

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
ramonjoaquim/README.md
public class Main {
    public static void main(String[] args) {
        System.out.println("Bio: " + getBio());
        System.out.println("Current Workplace: " + getCurrentWorkplace());
        System.out.println("Daily Knowledge: " + Arrays.toString(getDailyKnowledge()));
        System.out.println("Future Goal: " + getFutureGoal());
    }

    public static String getBio() {
        return "Bachelor in Information System, Full Stack Developer with knowledge about DevOps culture, " +
                "API development and also functional and automated tests.";
    }

    public static String[] getDailyKnowledge() {
        return new String[]{
                "Java",
                "Angular",
                "Kubernetes",
                "Javascript",
                "MongoDB",
                "NestJS",
                "AWS",
                "GitLab",
                "React"
        };
    }

    public static Workplace getCurrentWorkplace() {
        return new Workplace("Betha Sistemas", "Full-Stack developer");
    }

    public static String getFutureGoal() {
        return "To be a Java expert";
    }
}

class Workplace {
    private final String company;
    private final String position;

    public Workplace(String company, String position) {
        this.company = company;
        this.position = position;
    }

    public String toString() {
        return company + " - " + position;
    }
}

Pinned Loading

  1. fakeend fakeend Public

    Fake-end is a application made in Spring Boot + mongoDB that's provide a fake end server.

    Java

  2. spring-graphql spring-graphql Public

    Study about graphQL in spring boot framework

    Java

  3. datafy datafy Public

    Datafy log in on your spotify account and get the stats like top artists, songs and genres

    JavaScript

  4. pokedex-angularJS pokedex-angularJS Public

    Projeto AngularJS RESTful Pokémon API

    JavaScript

  5. proj-springboot-angular proj-springboot-angular Public

    TypeScript