Posts

PDF shop privacy policy

 **Privacy Policy** Ftechiz Solution pvt ltd built the PDF Shop app as a Free app. This SERVICE is provided by Ftechiz Solution pvt ltd at no cost and is intended for use as is. This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service. If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at PDF Shop unless otherwise defined in this Privacy Policy. **Information Collection and Use** For a better experience, while using our Service, we may require you to provide us with certain personally identifiable information. The in...

Ludo Champ Privacy Policy

  Privacy Policy Ankita Bhatt built the Ludo Champ app as a Free app. This SERVICE is provided by Ankita Bhatt at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Ludo Champ unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to Read, Writ...

Top 9 basic commands of Docker

Image
Hello users, In this article we are going to see top basic commands of Docker. If you not yet read my previous article i recommend you to read that ( click here to read) .  * In this article we are going to use ubuntu system.  * open terminal ( I assume that you already install docker if not please visit my previous article ) 1. docker pull ImageName :  using this command we can pull any image file from docker hub , eg. " docker pull ubuntu ": this will pull the docker image file and saved it to your local repo. 2. docker images : this command will show all downloaded images .    # Note : we can create any number of container using a single image file . 3.  docker run -it ImageName : This command will run your image file and create a running container, here -it is combination of two flags -i and -t , -i is stand for interactive and -t is for terminal. eg. " docker run -it ubuntu " now you can do anything with this conta...

Intro to docker

Image
Hello all, In this article we are going to see "what is a Docker ?". In this we just see the  basic of docker "definition and installation" and in next article of this series we will see the technical part of the docker " Top commands to get familiar with docker ". Let's began, #Definition  ------------------------------------------------------------------------------------------------                   1. Why need of docker occur                * In every SDLC when the project moves from production to developer it will cause many dependencies issues example: A project is working well in a developer's system but when the project is deployed to the server then many things will not work well * solution for above problem: Most of the people uses Virtual machine to solve this dependencies issues and a VM can easily solve this dependencies issues. A deve...