Skip to content
View phricardo's full-sized avatar
👨‍💻
I debug, therefore I am.
👨‍💻
I debug, therefore I am.

Block or report phricardo

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

phricardorj

phricardorj-Js phricardorj-Ts phricardorj-React phricardorj-Angular phricardorj-NextJs phricardorj-Docker phricardorj-Fastfy phricardorj-NestJs phricardorj-NodeJs phricardorj-Java phricardorj-HTML phricardorj-CSS


import lombok.Data;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Developer {
    private String employment;
    private String location;
}

@Data
@NoArgsConstructor
public class Profile extends Developer {
    private String name;
  
    public Profile() {
        super("Software Engineer at PicPay / Fintech", "Rio de Janeiro / RJ");
        this.name = "Pedro Ricardo";
    }
}

Popular repositories Loading

  1. SpringCleanBlocks SpringCleanBlocks Public

    This API is built in Java with Clean Architecture concepts.

    Java

  2. jpa-hibernate-persistence jpa-hibernate-persistence Public

    Exploring JPA and some persistence concepts

    Java

  3. schedule-technicians-api schedule-technicians-api Public

    This API allows the registration of technicians and customers to schedule a technical visit at the customer's address.

    Java

  4. java-for-beginners java-for-beginners Public

    Java

  5. spring-kafka spring-kafka Public

    I taught about messaging with Kafka to a group of friends. This is the material produced.

    Java

  6. mockecomm-api mockecomm-api Public

    MockEcomm is a CRUD developed in Java 21 with Spring Boot 3

    Java