Coder Social home page Coder Social logo

Hi, I'm Carlos Guzman!

Future Software Enginner
Java Junior Developer

About me

I consider myself a person with a good performance in programming with a desire to learn, a good attitude for team and individual work, creative, responsible, honest, punctual and disciplined.

My strong programming language is JAVA with the following technologies JPA, Hibernate and Spring Boot (Framework). On the other hand, in the area of databases I use the MySQL and PostgreSQL engines.

package carlos.me;

import java.time.LocalDate;
import java.time.Period;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.List;

public class Me {
    private String name;
    private int age;
    private String currentProfession;
    private List<String> languages = new ArrayList<String>();

    public Me() {
        this.age = getAge();
        this.name = "Carlos Guzman";
        this.currentProfession = "Java Junior Developer";
        this.languages.add("Java");
    }

    public int getAge() {
        DateTimeFormatter fmt = DateTimeFormatter.ofPattern("dd/MM/yyyy");
        LocalDate dateToday = LocalDate.now();
        LocalDate birthdate = dateToday.parse("02/05/2001", fmt);
        Period age = Period.between(birthdate, dateToday);
        return age.getYears();
    }

    public List<String> getLanguages() {
        return languages;
    }


    @Override
    public String toString() {
        return "Me{" +
                "name is ='" + name + '\'' +
                ",my age is =" + age +
                ", currentProfession is ='" + currentProfession + '\'' +
                ",My languages are =" + languages +
                '}';
    }
}
package carlos.me;

public class App {
    public static void main(String[] args) {
        Me carlos = new Me();
        carlos.getLanguages().add("Html");
        carlos.getLanguages().add("Css");
        carlos.getLanguages().add("TypeScript");
    }
    /**
     * Me{name is ='Carlos Guzman',my age is =19, 
     * currentProfession is ='Java Junior Developer',
     * My languages are =[Java, Html, Css, TypeScript]}
     */
}    

Twitter: carlose96008362 Linkedin: carlose96008362 GitHub carlose96008362

- I'm learning Angular

My Skills

Main programming language

Generic badge

Other languages

Generic badge Generic badge Generic badge Generic badge

馃捊 Database technologies & Structured Query Language

Generic badge Generic badge

馃搶 Other tools

Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge

Carlos Esteban Guzman Baquero's Projects

app-super-heroes icon app-super-heroes

Esta aplicaci贸n ha sido creada con el prop贸sito , de aprender angular de manera autodidacta

ejemplotemplateissues icon ejemplotemplateissues

Este ejemplo sirve para ver como se crean plantillas para las issues en github para crear los requerimientos

spotiapp icon spotiapp

Aplicaci贸n creada con fines educativos .

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    馃枛 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 馃搳馃搱馃帀

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google 鉂わ笍 Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.