Skip to content
View Dujuniorrr's full-sized avatar
🐲
Focusing
🐲
Focusing
  • Brasil
  • 23:21 (UTC -03:00)

Block or report Dujuniorrr

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
dujuniorrr/README.md
export class Dujuniorrr {

    private role: string = 'Web Developer';

    private greetingTitle: string = 'Hello everyone!';

    private aboutMe: string = `I am a web developer with a passion 
                              for programming and designing systems with clean and modular architectures. 
                              I enjoy being involved in all stages of software engineering during a project 
                              — from requirements elicitation, modeling, and planning to development, testing, and deployment.`;

    private mainStack: Technology[] = [
        { name: 'PHP', category: 'language' },
        { name: 'Laravel', category: 'framework' },
        { name: 'JavaScript', category: 'language' },
        { name: 'Vue.js', category: 'framework' },
        { name: 'MySQL', category: 'database' },
        { name: 'Docker', category: 'devops' }
    ];

    private otherTechnologies: Technology[] = [
        { name: 'TypeScript', category: 'language' },
        { name: 'Node.js', category: 'ambient' },
        { name: 'Python', category: 'language' },
        { name: 'Django', category: 'framework' },
        { name: 'Java', category: 'language' },
        { name: 'Spring', category: 'framework' },
        { name: 'PostgreSQL', category: 'database' },
        { name: 'MongoDB', category: 'database' }
    ];

    public getPresentationData(): PresentationData {
        return {
            role: this.role,
            greeting: this.greetingTitle,
            about: this.aboutMe,
            mainStack: this.mainStack,
            otherTechnologies: this.otherTechnologies
        };
    }
}

type Technology = {
    name: string;
    category: 'ambient' | 'database' | 'devops' | 'language' | 'framework' | 'tool';
};

type PresentationData = {
    role: string;
    greeting: string;
    about: string;
    mainStack: Technology[];
    otherTechnologies: Technology[];
}

Pinned Loading

  1. ReminderFriendly ReminderFriendly Public

    ReminderFriendly is an web app for creating humorous reminders. You can add reminders using natural language and link them to fictional characters. The reminders are sent with messages in the chose…

    PHP 1

  2. PowerMap PowerMap Public

    PowerMap is a mobile app designed to help electric and hybrid vehicle drivers find nearby charging stations and plan their trips. It provides real-time station availability and calculates whether t…

    Java 1