Skip to content
View EGROJ182's full-sized avatar
🤩
🤩

Block or report EGROJ182

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

HackerRank Linkedin GitHub StackOverflow Facebook Instagram YouTube Twitter Hotmail

Hi 👋, I'm Jorge Vega

A passionate fullStack developer from Colombia

  • 🔭 I’m currently working on Freelance

  • 🌱 I’m currently learning various technologies

  • 👯 I’m looking to collaborate on creative and innovative projects

  • 🤝 I’m looking for help with English

  • 📝 I regularly write articles on technologies

  • 💬 Ask me about Java, Python, JavaScript, SQL, HTML, CSS, React, Angular

  • 📫 How to reach me jorgevega182@hotmail.com

  • 📄 Know about my experiences https://www.linkedin.com/in/jorge-edilson-vega-acosta-279415129/

  • ⚡ Fun fact I am passionate, outgoing, responsible, honest and with the ability to learn quickly.

Connect with me:

https://www.linkedin.com/in/jorge-edilson-vega-acosta-279415129/ 21076535 https://www.facebook.com/alucardegroj egroj182 https://www.youtube.com/@alucard5785/featured @jorgevega182

egroj182

egroj182

egroj182

Python -------------------------------------------------------------------------------------------------------------
egroj182 = {
    'info': {
        'full_name': 'Jorge Vega',
        'birth_date': '1994-01-28',
        'pronouns': ['he', 'hem'],
        'interests': ['developer', 'games', 'language learning', 'anime', 'motorcycles'],
        'motivation': [
            'Learn day by day, to make our lives simpler, more enjoyable, and more fun and help our planet. Giving back something of so much that we have taken from him.',
            'I love all technology, through it and in good hands anything can be achieved, there is no barrier to it; The limit is in your mind.'
        ]
    }
}
JavaScript ----------------------------------------------------------------------------------------------------------
const egroj182 = {
    info: {
        full_name: 'Jorge Vega',
        birth_date: '1994-01-28',
        pronouns: 'he' | 'hem',
        interests: ['developer', 'games', 'language learning', 'anime', 'motorcycles'],
        motivation: [
            'Learn day by day, to make our lives simpler, more enjoyable, and more fun and help our planet. Giving back something of so much that we have taken from him.',
            'I love all technology, through it and in good hands anything can be achieved, there is no barrier to it; The limit is in your mind.',
        ]
    }
}
Java ----------------------------------------------------------------------------------------------------------------
import java.util.ArrayList;
import java.util.List;

public class Egroj182 {
    public static void main(String[] args) {
        Info info = new Info();
        info.setFullName("Jorge Vega");
        info.setBirthDate("1994-01-28");
        info.setPronouns("he");
        info.setInterests(new ArrayList<String>() {{
            add("developer");
            add("games");
            add("language learning");
            add("anime");
            add("motorcycles");
        }});
        info.setMotivation(new ArrayList<String>() {{
            add("Learn day by day, to make our lives simpler, more enjoyable, and more fun and help our planet. Giving back something of so much that we have taken from him.");
            add("I love all technology, through it and in good hands anything can be achieved, there is no barrier to it; The limit is in your mind.");
        }});

        Egroj182 egroj182 = new Egroj182();
        egroj182.setInfo(info);
    }

    private Info info;

    public Info getInfo() {
        return info;
    }

    public void setInfo(Info info) {
        this.info = info;
    }
}

class Info {
    private String fullName;
    private String birthDate;
    private String pronouns;
    private List<String> interests;
    private List<String> motivation;

    public String getFullName() {
        return fullName;
    }

    public void setFullName(String fullName) {
        this.fullName = fullName;
    }

    public String getBirthDate() {
        return birthDate;
    }

    public void setBirthDate(String birthDate) {
        this.birthDate = birthDate;
    }

    public String getPronouns() {
        return pronouns;
    }

    public void setPronouns(String pronouns) {
        this.pronouns = pronouns;
    }

    public List<String> getInterests() {
        return interests;
    }

    public void setInterests(List<String> interests) {
        this.interests = interests;
    }

    public List<String> getMotivation() {
        return motivation;
    }

    public void setMotivation(List<String> motivation) {
        this.motivation = motivation;
    }
}
Kotlin --------------------------------------------------------------------------------------------------------------
data class Info(
    var fullName: String = "",
    var birthDate: String = "",
    var pronouns: String = "",
    var interests: List<String> = emptyList(),
    var motivation: List<String> = emptyList()
)

fun main() {
    val info = Info().apply {
        fullName = "Jorge Vega"
        birthDate = "1994-01-28"
        pronouns = "he"
        interests = listOf("developer", "games", "language learning", "anime", "motorcycles")
        motivation = listOf(
            "Learn day by day, to make our lives simpler, more enjoyable, and more fun and help our planet. Giving back something of so much that we have taken from him.",
            "I love all technology, through it and in good hands anything can be achieved, there is no barrier to it; The limit is in your mind."
        )
    }
    val egroj182 = Egroj182().apply {
        setInfo(info)
    }
}

class Egroj182 {
    private var info: Info? = null

    fun getInfo(): Info? {
        return info
    }

    fun setInfo(info: Info) {
        this.info = info
    }
}

@jorgevega182

Pinned Loading

  1. App-Tiempo App-Tiempo Public

    Monitoreo de tiempo en actividades diarias

    CSS

  2. app-invima-EGROJ182 app-invima-EGROJ182 Public

    Esta aplicación la cree con el fin de conectar con la API de Datos Abiertos que aloja la información de entidades públicas en bases Soql en SOCRATA para realizar consultas INVIMA

    JavaScript 1

  3. Juego-de-Memoria-EGROJ-APP Juego-de-Memoria-EGROJ-APP Public

    Juego realizado en Reto de Frontend Mentor

    JavaScript

  4. Register-Task Register-Task Public

    Solución Jorge Vega NetCore6 SQLite

    C#

  5. RegisterTask RegisterTask Public

    Solución Prueba ITBF