Jan 2 · 5 min read · Source: https://sairashgautam.com.np/blog/2025-12-25/ I’ve been working with Golang for about three years now, but my roots are actually in dynamic languages like JavaScript, Python, and PHP. Go was my first real introduction to static typing even be...
Join discussion
Oct 20, 2025 · 4 min read · Have you ever wondered how real-time chat applications like WhatsApp, Discord, or Slack send and receive messages instantly — without refreshing the page? Recently, I learned a magical technology called Socket.io, and it completely changed how I thin...
Join discussion
Oct 15, 2025 · 4 min read · I was reading about network programming and sockets with Beej’s Guide to Networking Programming, and we ended up writing a simplified version of the nslookup program in C. This program takes a domain name and finds the IPs associated with it by query...
Join discussion
Jun 29, 2025 · 2 min read · In the world where data travel in mere seconds across the globe , ensuring the privacy of message is no longer an option -— it’s a necessity . Whether professional or friends , sending the documents and files need a strong shield that guards the sens...
Join discussionMay 31, 2025 · 4 min read · Phoenix Channels enable developers to build scalable, real-time applications in Elixir. Backed by the concurrency power of the BEAM, Channels allow you to create chat apps, live dashboards, games, and more with low latency and high throughput. In thi...
Join discussion
May 9, 2025 · 2 min read · Add WebSocket Middleware In .NET 8, middleware configuration can stay outside Program.cs if you organize it into dedicated classes or handlers. Let’s write a WebSocketHandler class. 📄 WebSocketHandler.cs using System.Net.WebSockets; using System.Tex...
Join discussionMar 18, 2025 · 4 min read · Real-time applications are becoming more common, from chat applications to live notifications and collaborative tools. In this blog, we will explore how to integrate sockets with Express.js using socket.io to enable real-time communication and connec...
Join discussion
Feb 12, 2025 · 5 min read · You can find the github repo here In this article, we will build a single-threaded TCP server from scratch using Rust. We will explore the different kernel-level system calls involved in creating a TCP server. We won't use standard libraries like net...
NDNischay and 1 more commented
Feb 8, 2025 · 3 min read · Inter-Process Communication (IPC) is a fundamental concept in operating systems that enables processes to exchange data and synchronize their actions. Since processes run in their own memory space, IPC mechanisms allow them to communicate efficiently...
Join discussion