Ivanbyteup.hashnode.dev·Dec 20, 2024Build Lightning-Fast Data Processing in Rust: From Single Thread to Parallel PerformanceIntroduction Following our deep dive into Rust's capabilities, I'll take you on a hands-on small project. In this project, we'll harness Rust's power, to build to generate a large dataset and compare performance between single-threaded and parallel p...Rust
Mihai Popescujavainterviewprep.hashnode.dev·Dec 9, 2024Java Threads: Basics and Modern Usage1. Basics of Threads A thread in Java is a lightweight process that enables concurrent execution of code. It allows multiple tasks to run in parallel within a single application. Key Concepts: Thread Lifecycle: New → Runnable → Running → Terminated ...Java
Maheshwar Ligadefortechwastitechwasti.com·Nov 24, 2024Virtual Threads vs Platform Threads vs OS Threads: A Practical Guide!With the advent of Project Loom, Java introduced Virtual Threads, a revolutionary new way to handle concurrency that stands in contrast to the traditional Platform Threads (also known as OS Threads). Understanding the differences between these types ...Java21
Shivani Yadavshivaniyadav.hashnode.dev·Nov 16, 2024Building a Real-Time Object Detection and Text Recognition System with YOLOS, TTS, and OCRIn the ever-evolving world of artificial intelligence, integrating computer vision with real-time functionalities is opening doors to smarter, interactive applications. In this blog, we will build a Real-Time Object Detection and Text Recognition Sys...31 likes·31 reads#Text recognition
Dilip Pateljavamastery.hashnode.dev·Nov 5, 2024Java ConcurrencyJava Threads Introduction Concurrency vs. Parallelism Processes and Threads Thread Management Creating and Starting Java Threads Pausing a Thread Joining a Thread Interrupting a Thread Java Virtual Threads Thread Safety Race Conditions an...Java ConcurrencyJava
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 30, 2024Threading and Multiprocessing in Python: An In-Depth GuideIntroduction Threading and multiprocessing are techniques to achieve concurrency in programs, allowing them to perform multiple tasks simultaneously. Understanding these concepts is crucial for optimizing program performance, especially in applicatio...pythonThreads
Snehangshu Bhattacharyablogs.snehangshu.dev·Sep 21, 2024Python Multitasking: Key Practices and ChallengesWhen I first encountered the Python language, I was amazed by what you could do with so little code, and it has been one of my favourite programming languages since. Some time ago, I faced a problem where I was trying to create something like a web s...120 readsgreenlets
Dipu Sahdipusah.hashnode.dev·Sep 5, 2024Diving Deep into JavaScript and Node.js Threading: A Comprehensive GuideJavaScript is single threaded or multi threaded and its event loop JavaScript is traditionally a single-threaded language. This means that it can only execute one task at a time in the main thread. Event Loop in JavaScript Though JavaScript is single...JavaScript
Aditya Dubeyadityadubey.tech·Sep 2, 2024Techniques for Faster API Calls for DynamoDB in PythonIntroduction Github: https://github.com/adityawdubey/Techniques-for-Faster-API-Calls-for-DynamoDB-in-Python With databases, how fast data operations work is important to overall performance — a point which matters even more when using cloud-based dat...11 likes·229 readsPython
Tarun Sharmatapstechie.hashnode.dev·Aug 14, 2024Understanding and Implementing the Singleton Pattern in Python: Key Concepts and ChallengesIntroduction The Singleton pattern is one of the most well-known design patterns in software engineering. It ensures that a class has only one instance and provides a global point of access to that instance. This article will guide you through the fu...2 likesDesign Patternborg-pattern