Sidharth Shuklasidharthhhh.hashnode.dev·Oct 26, 2023Socket Library for PythonSocket A socket is an endpoint of a bidirectional inter-process communication channel. Sockets are used to provide communication between processes on the same machine, or between processes on different machines over a network. In other words, it is a...Discuss·1 like·45 readsPython
Claude Omosaomosa.hashnode.dev·Oct 23, 2023A TCP Chat Application with a pure Elixir server and a simple Java ClientIn this blog, we'll go through the process of building a chat system using Elixir servers and connecting to it with a simple Java client. We'll dive into the architecture and functionality. Through this, you can better your knowledge of Elixir proces...Discuss·27 reads Elixir-atedElixir
Aniruddha Balbudheaniruddha2846.hashnode.dev·Sep 18, 2023! TCP vs UDP ! What's the difference?I am sure that in your student life, you might have been in a class in which the professor's only concern was to complete the syllabus as quickly as possible without giving a damn whether the students understood the topic or not. On the other hand, t...Discuss·11 likescomputer networking
Cosmicoppaicosmicoppai.hashnode.dev·Sep 12, 2023Understanding Sockets and UDP with a SHOUT Server ExampleNetworking is a fundamental concept in computer science, enabling communication between devices over a variety of protocols and mediums. One of the key elements in networking is the use of sockets, which act as the endpoints for data communication. I...Discuss·14 likes·54 readsPython
Davit Tabidzedtabidze.hashnode.dev·Aug 30, 2023Messenger Web AppBuilding a Real-Time Messenger with Flask and Socket.IO: In this guide, we'll create a real-time messenger app using Flask and Socket.IO. We'll dive into the mechanics of sockets and how they make real-time communication possible. Unveiling the Powe...DiscussChat
Pravin M.Dpravinmd.hashnode.dev·Aug 10, 2023Beginner's Guide to Socket Programming in PythonAre you interested in learning how computers communicate with each other over a network? If so, you're in the right place! In this beginner-friendly guide, we'll explore the fascinating world of socket programming using the Python programming languag...DiscussPython
92_prajak senblogoverflow.hashnode.dev·Jul 18, 2023Zero-Copy I/O for Streaming Sockets in C++: Efficient Data Transfer with Pre-Allocated BuffersIn network programming, efficient data transfer is crucial for achieving high-performance applications. One approach to optimizing data transfer is through zero-copy I/O, which eliminates unnecessary memory copies during input and output operations. ...Discuss·10 likes·101 readsZero copy networking
92_prajak senblogoverflow.hashnode.dev·Jul 18, 2023Unveiling the Power of Multi threading: Revolutionizing Scalability in Single-Client Server Design"Exploring the Simplicity of Single-Client Server Design and the Potential for Scalability Challenges" In this article we will design the server that handles only one client at a time, which is a big assumption if one wants to develop any scalable se...Discuss·10 likesclient-server
Krishna Kumarikrikrishna.hashnode.dev·Jun 5, 2023Building Real-Time Applications with Node.js: A Comprehensive Socket.io TutorialIn today's fast-paced digital world, real-time applications are becoming increasingly popular. Whether it's chat applications, collaborative tools, or live streaming platforms, users expect instant updates and seamless interactions. Node.js, with its...DiscussNode.js
Khyati Hingukhyatihingu.hashnode.dev·May 15, 2023Using SocketIO with PostmanLet’s start! So, what is SocketIO? It is a library which allows you to do event-based communication between client and server. Today, we’ll see how to connect and test SocketIO with Postman. Setting up Server and SocketIO First, you’ll need to set up...Discuss·3 likes·1.4K readsSocketIO