aktas@home:~$

  • RSA Algorithm

    What is the RSA algorithm? RSA (Rivest-Shamir-Adleman) is an asymmetric encryption algorithm often used in situations such as internet traffic and VPN networks. The RSA algorithm relies on the difficulty of factoring the product of large prime numbers. This feature ensures the security of RSA. Linux users like me know...

  • Linux useful commands

    I’m saving these useful commands here so that you can easily access them when needed. CUT cut -d " " -f 1 notes cut -d " " -f 1-10 notes cut -d " " -f 1 test.txt --complement # returns fields other than the selected fields. cut -c-1-10 test.txt #...

  • Graph Data Science With Networkx

    In this article, I will explain the graph theory used in data science projects. We will use the networkx library in python for this. What is the graph theory? What is it used for? Graph theory is a discipline based on structures represented by nodes called graphs and the edges...