Hello World , I am Lazy Swapper , today We conducted Glug meet about Version Control System . What is “version control” , and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the files being version controlled, though in reality you can do this with nearly any type of file on a computer. Consider you a part of a team creating website for your college event . you have been given a task to complete the frontend for a particular event . At the same time other members of the team will concentrate on some other work . When you complete the system , you will share the folder with your team leader. He will be collecting it from you and from all others for their respective tasks . So there are many copies of the files occur in our system . Which may cause a mess with project . Also consider a si...
How do you communicate through internet ? what protocol do you use ? How the connection is established ? Well , today we are going to see about establishing a simple tcp connection between client and the server . In the client side , we are gonna to establish a connection with server (send a request ) For that we need to do 3 things , 1.socket() -- create a socket . 2.connect() -- make a connection with the server . 3.recv() -- for receving data from server . below picture tells the needs for tcp client . In tcp server , we are going get the response from the client and response to it . For establishing a tcp server connection we need to do 4 things , 1: socket() -- create a socket connection . 2: bind() -- bind with ip , server_address , port . 3: listen() -- listen for any connections that are active . 4: accept() -- for accepting the client request . For video reference : tcp client tcp server
Python : Is Just a Hype ? Python continues to climb the ranks of the world's most popular programming languages. Following last year's finding by developer hub Stack Overflow that Python was the world's fastest-growing programming language, Python has now claimed fourth place in the TIOBE index for the first time. By the survey conducted by Jetbrains on overall python Developers all over the world many of them use it as a Main Language and also as a secondary language . Over 9,500 developers from almost 150 different countries participated to help us map out an accurate landscape of the Python community. Python Climbs the tower higher and higher as its versatality is been growing wide . From the survey we are came to know about that many of the Python Developers are using it in the following order , 1. Web Development : It provides a many web frameworks such as Django (https://www.djangop...
Comments
Post a Comment