whoami ?



Parlons de moi !

L’open-source me passionne, j’adore l’infosec.
J’utilise linux en OS main depuis mes 13 ans. Je défends l’accès à la documentation libre, à l’entraide et à la protection.

Vous avez besoin de me contacter pour X raison ? Vous pouvez m’ajouter sur matrix: @aliascdrm-rf:matrix.org, ou me trouver sur discord: pwnwithlove#1984

Voici une présentation codée en C. Merci pour la lecture ! ( ˶^ᗜ^˵ ) ✿)
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);

}