What would cause a site to be slow to load but only for the first try?AAnandTech Forums: Technology, Hardware, Software, and Deals [Un…·8h ago·1 min readNetworkingAnything Forums - Anything Forumshttps://uogateway.com
Announcing the Networking WorkgroupSwift.org [Unofficial]·2d ago·2 min readSwiftNIOAsyncHTTPClientswift-http-typesNetworking vision
Ethernet connection dropping after reboot, just started todayTom's Hardware Forum [Unofficial]·2d ago·1 min readNetworking
Fix your Wi-Fi dead zones with TP-Link’s extender for $80, its lowest price everPCWorld [Unofficial]·4d ago·2 min readNetworkingView DealTP-Link’s AX3000 Wi-Fi Range Extender is now $79.99 at Amazon
Will this network setup work?AAnandTech Forums: Technology, Hardware, Software, and Deals [Un…·May 20·1 min readNetworking
How Internet Works | Connecting the DotsDdid:plc:4dntpnr4yf2cpjn3idwxn3qg·Feb 11·4 min readDHCPIP AddressIPv6ARP (Address Resolution Protocol)
SSH sagaComplete SSH setup guide: key pairs, authorized_keys, sshd_config, ssh_config, known_hosts, agent forwarding, and hardening for secure remote access.Redowan Delowar·Dec 17·4 min readFollowShellUnixNetworkingSecurity
How to use Cloudflare Warp with a UDM ProIf you’re considering using Cloudflare Wrap for specific machines on your network, you can easily install the Warp client directly on them. It supports various operating systems, including Windows, Li…tiernano.bsky.social·Dec 12·3 min readFollowcloudflarenetworkingubiquitiudmpro
Writing a circuit breaker in GoBuild a production-ready circuit breaker in Go from scratch with closed, open, and half-open states to prevent cascading failures.Redowan Delowar·Oct 6·6 min readFollowNetworkingGoDesign Patterns
Notes on building event-driven systemsDeep dive into event-driven architecture patterns. Learn publish-subscribe, CQRS, outbox pattern, eventual consistency, and handling microservice coupling.Redowan Delowar·Sep 21·12 min readFollowNetworkingDistributed SystemsDesign Patterns
HTTP requests via /dev/tcpMake raw HTTP requests with Bash's /dev/tcp file descriptor. Build health check scripts without curl or wget using TCP socket connections.Redowan Delowar·Aug 8·2 min readFollowTILShellUnixNetworking
Protobuffed contractsDefine service contracts with Protocol Buffers for non-gRPC systems. Generate serializers, maintain self-documented APIs, and ensure cross-language compatibility.Redowan Delowar·May 10·3 min readFollowAPINetworkingDistributed Systems
Some network Upgrades going onI’m currently in the midst of a significant network upgrade for the CloudShed. I’ve purchased two Ubiquiti Unifi Hi-Capacity Aggregation Switches, a 24-port Switch Pro POE, a Switch Enterprise 8 PoE, …tiernano.bsky.social·Apr 29·1 min readFollowcloudshedunifiupgradeHomelab
Crossing the CORS crossroadTroubleshoot CORS errors with this practical guide. Learn Access-Control-Allow-Origin headers, preflight requests, and domain allowlisting in Go.Redowan Delowar·Mar 12·4 min readFollowNetworkingGoWeb
Rate limiting via NginxImplement rate limiting at the infrastructure layer with Nginx reverse proxy. Protect Go services from DDoS with leaky bucket algorithm.Redowan Delowar·Jan 6·6 min readFollowGoNetworkingDocker
Dummy load balancer in a single Go scriptBuild a working round-robin load balancer in Go with goroutines and the standard library. No dependencies needed for this educational prototype.Redowan Delowar·Aug 30·5 min readFollowGoTILNetworking
Using DNS record to share text dataShare data via DNS TXT records using dig and base64 encoding. Learn limitations, security concerns, and practical use cases for DNS tunneling.Redowan Delowar·Jul 17·2 min readFollowShellUnixTILNetworking
Implementing a simple traceroute clone in PythonBuild a traceroute clone in Python using UDP and ICMP sockets to trace network packet routes and measure hop latency with TTL manipulation.Redowan Delowar·Jun 1·6 min readFollowPythonNetworkingShellUnix
Building a CORS proxy with Cloudflare WorkersBuild your own CORS proxy using Cloudflare Workers to bypass browser CORS restrictions. Includes deployment with GitHub Actions automation.Redowan Delowar·May 21·8 min readFollowJavaScriptNetworkingGitHub
Fixed-time job scheduling with UNIX 'at' commandSchedule one-time commands with UNIX at command. Learn job queuing, remote scheduling via HTTP API, and managing atd/atrun daemons.Redowan Delowar·May 14·7 min readFollowShellUnixJavaScriptNetworking
Pushing real-time updates to clients with Server-Sent Events (SSEs)Stream real-time server updates to web clients using Server-Sent Events (SSE) as a simpler alternative to WebSockets for unidirectional data flow.Redowan Delowar·Apr 8·10 min readFollowPythonNetworkingWeb
Tinkering with Unix domain socketsBuild Unix domain socket servers and clients with Python and socat. Access Docker API via UDS, create HTTP servers, and optimize inter-process communication.Redowan Delowar·Mar 11·7 min readFollowPythonShellUnixNetworking
Signal handling in a multithreaded socket serverGracefully shutdown Python's ThreadingTCPServer with signal handlers for SIGINT, SIGTERM handling and client notification on server shutdown.Redowan Delowar·Feb 26·8 min readFollowPythonNetworkingConcurrency
Pausing and resuming a socket server in PythonBuild a pausable socket server with Python's socketserver module using threading for intermittent request handling and background tasks.Redowan Delowar·Feb 5·5 min readFollowPythonNetworkingConcurrency
Stream process a CSV file in PythonProcess large CSV files without OOM errors by streaming content line-by-line with HTTPX and concurrent.futures for parallel processing.Redowan Delowar·Jul 1·4 min readFollowPythonNetworkingConcurrency