Ayush Sharmaiayushcodes.hashnode.dev·Jan 13, 2025Understanding TCP 3-Way HandshakeHello Learners! Ever wondered how the browser (client) & server ensure that the connection over which they are communicating is reliable? Is the connection sufficient enough to carry on the communication? If yes, then you have come to the right place...2 likes·150 readsChaiCode
Samuel A.samcoder.hashnode.dev·a day agoEfficient Video Streaming in Next.js: Handling Range RequestsIn modern web applications, delivering large media files like videos efficiently is crucial for performance and user experience. Next.js provides the flexibility to implement server-side logic, making it possible to handle video streaming with suppor...40 readsNext.js
Jones Beachblog.fromscratchcode.com·Jan 13, 2025Typed integers in Rust for safer Python bytecode compilationShortly after I shared my previous post, a helpful redditor pointed out that the typed integers I alluded to is known as the newtype pattern in Rust, a design that allows you to define types purely for compile-time safety and with no runtime hit. And...MemphisRust
Rahul Singhrksingh.hashnode.dev·Jan 12, 2025Day 14 : Python Data Types and Data Structures for DevOpsData Types in Python Python has several built-in data types, which are categorized into different groups based on their behavior and purpose. Here’s an overview: 1. Numeric Types These data types represent numbers. int: Represents integers (e.g., 1...Python
Dhruv Nakumdhruvnakum.xyz·Jan 10, 2025From Zero to Go Hero: Learn Go Programming with Me - Part 4Introduction Heyy Gophers!!! Welcome to the Part 4 of Learning Go with Me. Thanks for coming alone to till here. I hope you are learning and enjoying this series. Till now we almost covered the fundamentals of Go and now we are ready to write out t...31 readsGo Language
Ivanbyteup.co·Jan 10, 2025Python's Unstoppable Rise, Dominating The Modern Backend EnvironmentIntroduction This field of backend development has shown a remarkable transformation over the past decade, with Python emerging as the undisputed leader in this dynamic field. What started as a simple scripting language has advanced into the backbone...Python
Dhruv Nakumdhruvnakum.xyz·Jan 9, 2025From Zero to Go Hero: Learn Go Programming with Me - Part 3Introduction Welcome to Part 3 of the Learning Go with Me series. I hope you like it so far and learned from it. Because that’s the most important thing. If you have any doubts or comments please feel free to comment it. I will try to help you out. ...Go Language
João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025How to Manage Your APIs Across Multi-Cloud Environments1. Introduction To manage APIs across muli-cloud environments we need an API gateway. Kong provides this using Kong KONNECT. In this article, we’ll look into ways to make that a reality and work with them. 2. Configure API Gateways in Each Cloud Prov...kuma-mesh
João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025What is the Purpose of the Main Dispatcher?If you have this question, perhaps you are a long time server-side developer and are wondering what the Main Dispatcher is doing in the Kotlinx coroutines library? Well, the Main Dispatcher exists as kind of interface, but its implementation isn't re...main dispatcher
João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025Why the Global Scope isn't advised to be used?The GlobalScope is a kind of scope in the world of Kotlin coroutines that challenges a lot of developers and prompts many to say that it is not useful, and it was probably a bad idea to introduce it in the kotlix standard library any ways since the u...main scope