Giter VIP home page Giter VIP logo

Header image

curl -X GET \
    -H "Content-Type: application/json" \
    "http://sudo-von.com/api/v1/user/username/sudo-von"
{
    "id": "60603a5aaa037f0008ed81f9",
    "name": "Jesús Ángel Rodríguez Martínez",
    "email": "[email protected]",
    "username": "sudo_von",
    "workplaces": [
        {
            "id": "649b478da7e8c4033849e8a7",
            "company": "Intel Corporation",
            "positions": ["Full stack engineer", "Cybersecurity researcher", "Frontend subject matter expert"]
        },
        {
            "id": "649b4806d1a3e5ddcdbd4c00",
            "company": "Tredicom",
            "positions": ["Full stack developer"]
        },
        {
            "id": "649b4806d1a3e5ddcdbd4c00",
            "company": "Evotek",
            "positions": ["Full stack developer"]
        },
    ],
    "about": {
        "title": "Computer systems engineer",
        "position": "Software engineer",
        "certifications": ["Certified ethical hacker and security professional (C|EHSP)"],
        "interests": ["Javascript fanatic", "Typescript enthusiast", "Passionate about ethical hacking"],
        "quote": "At first, dreams seem impossible, then improbable, and eventually inevitable"
    }
}
import { FC } from 'react';
import { useUser } from '@user/hooks';
import { Loader, Error } from '@common/components';
import { Profile, Workplaces, About } from '@user/components';

type UserProps = {
    id: string;
};

const User: FC<UserProps> = ({ id }) => {
    const { data, isLoading, error } = useUser(id);

    if (isLoading) return <Loader />;

    if (error) return <Error message={error} />;

    const { name, email, username, workplaces, about } = data;

    return(
        <>
            <Profile name={name} email={email} username={username} />
            <Workplaces workplaces={workplaces} />
            <About about={about} />
        </>
    );
};

export default User;

VoN's Projects

augmented-reality-javascript icon augmented-reality-javascript

Personal project where alicia-granados and I will be using javascript to experiment with augmented reality on https://sudo-von.github.io/augmented-reality-javascript/.

capture-the-flag icon capture-the-flag

I used github and then moved to medium to share my cybersecurity writeups. However, I no longer use either platform. As a result, I am currently developing my own blog to circumvent any subscription fees associated with medium.

von icon von

My portfolio is the culmination of my continuous learning journey.

web-server icon web-server

This repository contains my own web server from scratch using NodeJS and Typescript.

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.