Harsh SInghharshwillblog.hashnode.dev路Jan 30, 2025Understanding Multithreading in Java: A Deep DiveIntroduction In today's fast-paced software world, performance and responsiveness are crucial, especially in complex applications handling vast amounts of data and multiple tasks concurrently. Java, being one of the most widely used programming langu...multithreading
Affan Shaikhsurabaffanshaikhsurab.hashnode.dev路Jan 28, 2025Exploring Flutter Magic: How Isolates and Compute Work Behind the Scenes!As we have learned about async/await, futures, and streams in our previous articles, you might remember that futures are things that happen sometime in the future. Let鈥檚 revisit this with an example: Imagine you ask your friend to bring water while y...Eploring Flutter: How Apps Come to LifeFlutter
Lim Woojaejaylog.hashnode.dev路Jan 27, 2025[Python] Deep Dive Into ThreadWhat Is a Thread? A thread is a way to run multiple tasks concurrently in the same program. Real-life example: Let鈥檚 say you are going camping with friends, and you are the driver. In this example, we need to look at three key things: Project - Wh...Pythondaemon thread
kondala Uma Maheshwara Raoumamaheshdesignchronicles.hashnode.dev路Jan 26, 2025Multithreading and ConcurrencyLets start with questions. what, why and when the multithreading is required?Writing a multithreaded program is easy, but ensuring data correctness and fair use of threads is important. This means all threads should perform an equal amount of work. O...51 readsmultithreading
Huzaifa Vakilhuzaifavakil.hashnode.dev路Jan 20, 2025Simple Parking System - JavaThis is a standard interview question when it comes to testing a candidate鈥檚 java oops and multi-threading knowledge. The solution I am providing is nowhere near perfect and can be implemented in several different ways but its a starting point in whi...26 readsJava
jaydattgeekyjedy.hashnode.dev路Jan 19, 2025Multi-threading in JavaScript with Web Workers and WebSocketWhy you should use Multi-Threading ? As we know, JavaScript is a single-threaded, synchronous language. When implementing a WebSocket on the main thread, it can lead to performance issues, especially if the WebSocket is handling heavy computations. T...1 likeJavaScript
Jyotiprakash Mishrablog.jyotiprakash.org路Jan 19, 2025Introduction to Multithreading in JavaIn modern computing, performance is not just about executing one task faster but about doing more tasks simultaneously. Multithreading allows a program to execute multiple threads concurrently, effectively enabling multitasking within a single proces...745 readsJava
Adarsh Kamathkmt-engineering-blog.hashnode.dev路Jan 10, 2025Load Balancer Internals Pt 2 - Handling HTTP RequestsWhen the load balancer receives a HTTP request, the following events occur: It applies a load balancing algorithm, like round-robin, to choose a server to which the request must be forwarded. Once a server has been chosen, the load balancer must se...41 readsLoad Balancer InternalsLoad Balancing
Ayush Singh Kushwahayroid.hashnode.dev路Jan 6, 2025Memory Management ParadigmsAt the time of publishing this article, I am learning about Rust, and what fascinates me most is its emphasis on secure code practices. One of the main reasons for this security is Rust's unique memory management system, which introduces the concepts...1 likeRust
Ashutosh Rathashublog.hashnode.dev路Dec 30, 2024Building a Multi-threaded Proxy Server in Python: A Deep DiveIntroduction In today's interconnected digital landscape, proxy servers form the backbone of modern web infrastructure. They act as crucial intermediaries, managing and controlling network traffic between users and the vast expanse of the internet. B...10 likes路29 readsProxy Server