Let’s talk about me !
I’m passionate about open-source, I’m in love with cybersecurity. I’m using linux since I was 13yo.
I defend the access to free documentation, help and protection.
You want to contact me ? You can do add me on matrix: @aliascdrm-rf:matrix.org
or simply discord: pwnwithlove#1984
There is a little presentation of myselft, made with C. ( ˶^ᗜ^˵ ) ✿
char *name[] = {"use linux","do cybersec", "programmation", "and make electronics"};
int ft_tablen(char *tab[])
{
int len = 0;
while(tab[len])
len++;
return(len);
}
int main(void)
{
int i = 0;
bool being_skilled = false;
printf("No skills, still learning\n");
bool time = true;
printf("I ♥ to ");
while(i < (ft_tablen(name) - 1))
{
printf("%s, ", name[i]);
i++;
}
printf("%s.\n", name[i]);
return(0);
}