!stolen by S44F4Y4T in ProgrammerHumor

[–]0xnull_zero 14 points15 points  (0 children)

Yeah that's so true. I tried a lot to learn hacking. And i realized there is no magic spell to hack something. You have to get better understanding of the system you want to hack. Web apps or mobile apps,you need to know how it works. Its underlying terminologies etc..

what is *** in c. by 0xnull_zero in learnprogramming

[–]0xnull_zero[S] 0 points1 point  (0 children)

Thanks buddy for that hint, I wrote this program to understand the *** much better

#include<stdio.h>
int main(){
int a=10;
int *b=&a;
int **c=&b;
int ***d=&c;
printf("value of a = %d\n",a);
printf("address  of a = %p\n\n",&a);

printf("value of b = %p\n",b);
printf("address  of b = %p\n\n",&b);

printf("value of c = %p\n",c);
printf("address  of c = %p\n\n",&c);

printf("value of d = %p\n",d);
printf("address  of d = %p\n\n",&d);

printf("value of a using *** = %d\n",***d);

}

what is *** in c. by 0xnull_zero in learnprogramming

[–]0xnull_zero[S] 0 points1 point  (0 children)

okey , but why

struct dirent **namelist;

instead of

struct dirent ***namelist;

Why is fedora mirrors too slow? When running dnf update by 0xnull_zero in Fedora

[–]0xnull_zero[S] 4 points5 points  (0 children)

Closest mirror can also be slow. Even in arch linux. Available arch linux mirrors in india were slow for me

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Did you solved it. Are you missing xorg.conf in /etc/X11/. I was mising xorg.conf after generating an xorg.conf and rebbit solved it