Skip to content
View karroot's full-sized avatar

Block or report karroot

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

πŸ‘‹ γŠγ―γ‚ˆγ†δΈ–η•ŒοΌ

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

typedef struct {
    char *name;
    char *born_date;
    char *title;
    char *university[2];
    char *work_experience[2];
    char *interest[3];
} Human;

int main(void) {

   Human *Karroot = malloc(sizeof(*Karroot));

   Karroot->name = "Gabriele Gallotti";
   Karroot->born_date = "23/09/1997";
   Karroot->title = "Cybersecurity Auditor";
   Karroot->university[0] = "Polytechnic of Milan";
   Karroot->university[1] = "Bocconi University";
   Karroot->work_experience[0] = "Cefriel"; // as ICT security analyst & developer 
   Karroot->work_experience[1] = "Unicredit"; // as Cybersecurity Auditor
   Karroot->interest[0] = "Cybersecurity risk";
   Karroot->interest[1] = "Network security";
   Karroot->interest[2] = "Computer ethics";
   
   printf("\n%s can be defined as:\n\n", Karroot->name);
   printf("A funny guy born in %s, currently a %s at %s and he graduated at both %s and %s while working as intern at %s and "
   "he is currently interested in %s, %s and %s.",
   Karroot->born_date, Karroot->title, Karroot->work_experience[1], Karroot->university[0], Karroot->university[1],
   Karroot->work_experience[0], Karroot->interest[0], Karroot->interest[1], Karroot->interest[2]);

    return 0;
}

🧐 About me

Currently cybersecurity auditor at Unicredit S.p.a. I deal with digital ethics whenever possible.

Alumnus of Bocconi University and Politecnico di Milano.

Member of EticaDigitale where we publish relevant computer ethics news for the italian community.

Passionate about IT, cyber security and the impacts of new technologies on society. Now I'm studying for the Cisco CCNA routing and switching certification (200-301) and I keep myself informed on cyber developments in the world. Among other things I am passionate about anime/manga, fighting sports and theology.


πŸ•ΉοΈ My projects


πŸ”¦ Find me on

Popular repositories Loading

  1. ing-sw-2019-gallotti-gianchino-guidi ing-sw-2019-gallotti-gianchino-guidi Public

    HTML 3 2

  2. Hypermedia-2018-2019-Gallotti-Galli-Falconi Hypermedia-2018-2019-Gallotti-Galli-Falconi Public

    HTML 1

  3. Project-of-Logical-networks-Gallotti-Gianchino Project-of-Logical-networks-Gallotti-Gianchino Public

    VHDL 1 1

  4. kb-layout-converter kb-layout-converter Public

    Forked from vmrodt/kb-layout-converter

    A small python script to convert a text in english into such a gibberish that the characters correspond to the keys you would need to type if you were to type it in another keyboard layout that you…

    Python

  5. Algorithms-and-Principles-of-Informatics-AA2018-2019 Algorithms-and-Principles-of-Informatics-AA2018-2019 Public

    HTML

  6. Artificial-intelligence-for-security-network-and-android-malware Artificial-intelligence-for-security-network-and-android-malware Public

    Jupyter Notebook