Skip to content
View sudo-von's full-sized avatar
🇨🇦
Determined to fulfill my ultimate ambition
🇨🇦
Determined to fulfill my ultimate ambition
Block or Report

Block or report sudo-von

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

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": "sudo.von.contact@gmail.com",
    "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;

Pinned

  1. sudo-von sudo-von Public

    Exploring my story and passions.

    3

  2. capture-the-flag capture-the-flag Public

    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 subscriptio…

    Python 18 9