Skip to content
View proxzr's full-sized avatar
:accessibility:
Working.
:accessibility:
Working.
  • Luxembourg / France

Block or report proxzr

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
proxzr/readme.md
GIF description

prox@sec ~ $ whoami

#include <stdio.h>
#include <stdbool.h>

typedef struct s_prox {
    char *name;
    char *school;
    char *passions[4];
    bool always_learning;
}   t_prox;

void introduce(t_prox me)
{
    int  i;

    i = 0;
    printf("πŸ‘‹ Hi, I'm %s, a student at %s.\n", me.name, me.school);
    printf("πŸ” Passions:\n");
    while (me.passions[i])
    {
        printf("  - %s\n", me.passions[i]);
        i++;
    }
    if (me.always_learning)
        printf("πŸ“š Always curious and learning something new!\n");
}

int main(void)
{
    t_prox me = {
        .name = "prox",
        .school = "42 Luxembourg",
        .passions = {"Linux", "Cybersecurity (OSINT, web, reverse)", "C programming", "Python/Bash scripting", NULL},
        .always_learning = true
    };

    introduce(me);
    printf("\n🎯 My goal: Keep pushing my limits and mastering cybersecurity.\n");

    return 0;
}

printf(tech_stack);

Popular repositories Loading

  1. searchloupe searchloupe Public

    SearchLoupe lets you perform a single search and get results from different search engines.

    Python 18 3

  2. instacheck instacheck Public

    A simple tool to check if an email is associated with an Instagram account. Useful for OSINT and verifying account existence. πŸ•΅οΈβ€β™‚οΈβœ¨

    Python 16 1

  3. proxzr proxzr Public