Saravana Rajablog.saravanaraja.in·Oct 27, 2024🚀 Introduction to Real-Time WebFor those of us after years into this dev life: 💻 "The weekend is for upskilling!" (then promptly opens Netflix) ☕ Filter coffee - the actual backbone of my productivity 🌙 Midnight message: “Available for Quick Call?” 👥 Catching up with friend...Discuss·66 readsrealtime
AL Hasibalhasib.hashnode.dev·Oct 12, 2024ওয়েব সকেট কমিউনিকেশন প্রটোকলওয়েব সকেট কি? ওয়েব সকেট একটি কমিউনিকেশন প্রটোকল। যেটি ক্লায়েন্ট এবং সার্ভারের মাঝে ফুল ডুপ্লেক্স কানেকশন এস্টাবলিশ করার মাধ্যমে একটি একক কানেকশন তৈরি করে। যেখানে HTTP প্রটোকল বারবার রিকুয়েস্ট রেসপন্সের মাধ্যমে তথ্য আদান-প্রদান করে। সেখানে ওয়েব স...DiscussWeb Development
Ruchir Dixitruchirstechblogs.hashnode.dev·Jun 14, 2024Build Chat Application using JavaIntroduction Socket programming is an essential concept in network communications, enabling devices to connect and share data over a network. By using sockets, you can build robust applications that communicate efficiently, whether on a local network...Discuss·36 readsJava
Ronit Pandaronit.dev·Jun 1, 2024Setup "Poke"Hey everyone!, finally after setting up push and pull, we are mostly done, but there is one vital piece of the puzzle pending. Right now you can push mutations to our server and on every 60 seconds interval our client pulls and our client is in sync ...Discuss·44 readsBuilding RealTime WebAppsrealtime apps
Gaurav Kumargauravbytes.hashnode.dev·May 7, 2024Quick and Simple Method for Building a WebSocket Server in Node.jsImagine working on a document with colleagues simultaneously. You type a sentence, and it instantly appears on everyone else's screens, no refresh button is needed. This seamless collaboration is made possible by a powerful technology called WebSocke...Discuss·85 readswebsockets
Mayank Sahaicodingmoon.hashnode.dev·May 5, 2024Understanding WebSocket and creating from Scratch with JavaScriptAs developers, we often find ourselves on quests to understand new technologies. This past weekend, while battling a particularly stubborn bug (coffee wasn't helping!), I stumbled upon a cryptic note from my past self: "Explore WebSockets." Curiosity...Discuss·60 readswebsockets
Ayoub Toubablog.yaffalab.com·Mar 17, 2024ESP32/Arduino Sensor Data Visualization on Web Apps: A Beginner's Guide with Directus: Part 2Welcome back! In Part 1, you built the ESP32 circuit and verified that your sensor works properly. Now, it's time to connect your ESP32 to the web world and visualize those sensor readings! In this part, we'll focus on sending data from your ESP32 to...Discuss·1 like·88 readsarduino
Ayoub Toubablog.yaffalab.com·Mar 16, 2024ESP32/Arduino Sensor Data Visualization on Web Apps: A Beginner's Guide with Directus: Part 1Ever wanted to build a project that bridges the physical world with the web, but coding a web application seems daunting? This guide is for you! We'll embark on a journey to create a system that collects sensor data and displays it on a user-friendly...Discuss·1 like·198 readsESP32
whowinwhowin.cn·Mar 9, 2024使用epoll()进行socket编程处理多客户连接的TCP服务器实例在网络编程中,当需要使用单线程处理多客户端的连接时,常使用select()或者poll()来处理,但是当并发数量非常大时,select()和poll()的性能并不好,epoll()的性能大大好于select()和poll(),在编写大并发的服务器软件时,epoll()应该是首选的方案,本文介绍epoll()在网络编程中的使用方法,本文提供了一个具体的实例,并附有完整的源代码,本文实例在 ubuntu 20.04 下编译测试完成,gcc 版本号 9.4.0。 1 基本概念 在『网络编程专栏』中...Discuss网络编程Linux
Pravin M.Dpravinmd.hashnode.dev·Feb 4, 2024Get to know Remote Server IPv4 Address in a Pythonic WayPython is loved ❤️ by all sorts of people from Web Developers to Machine Learning Enginneers and Systems Programmers to Game Developers. So it's no surprise that Python can do Network Programming too. Ever wondered about the IP addressess of the webs...DiscussPython