Sarah Akinolasarah-devblog.hashnode.dev·Dec 21, 2024Understanding the Basics of Threads, Processes, Programs, and SchedulersIntroduction In computing, the concepts of programs, processes, threads, and schedulers are fundamental to the functioning and management of software applications and system resources. These components are the unsung heroes, working behind the scenes...Threads
Nettribe Medianettribe.hashnode.dev·Dec 18, 2024Threads Tests Post Scheduling Feature to Streamline Content CreationMeta’s Threads, the microblogging platform launched to compete with X (formerly Twitter), is testing a highly anticipated feature: post scheduling. This new capability allows users to compose posts and schedule them to go live at a specific date and ...technology
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
Santhoshprogrammerzero.hashnode.dev·Dec 2, 2024Threads and Cores: How the Operating System Manages WorkloadsWhen you look at your computer's specs, you might see something like a 16-core, 32-thread CPU. It sounds like a lot of power (in-fact it is powerful 💪😜), but what exactly does that mean, and how does the operating system handle all those threads? L...33 readsThreading the Needle: A Deep Dive into OS Thread Managementmultithreading
David Fernández Ortizdavidivad96.hashnode.dev·Nov 8, 2024How I integrated Clerk and Threads API: Part 1✨ Introduction Lately I’ve been working on a side-project called DualPosts. It's a tool that lets users cross-post between the X and Threads platforms. The idea came when I found myself constantly copy-pasting the same thing from one site to another,...Clerk.dev
BestWeb VenturesforBestWeb Ventures's Blogblog.bestwebventures.in·Nov 4, 2024Ruby on Rails 8 Concurrency Guide: Modern Parallel ProcessingIn today's digital landscape, web applications face unprecedented demands for performance, scalability, and responsiveness. Modern Ruby on Rails applications must handle multiple concurrent users, process large amounts of data, and maintain real-time...1 like·1.3K readsRuby
BestWeb VenturesforBestWeb Ventures's Blogblog.bestwebventures.in·Nov 3, 2024Understanding Ruby 3.3 Concurrency: A Comprehensive GuideRuby 3.3, released with significant improvements in concurrency capabilities, marks a pivotal shift in how Ruby applications handle parallel processing and concurrent operations. This advancement is particularly crucial as modern applications increas...2 likes·4.5K readsractors
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
Nihal Wasimwal64.hashnode.dev·Oct 20, 2024Understanding and Leveraging Go's sync.Pool for Efficient Object ReuseGo/Golang, is a statically typed, compiled language designed for simplicity and efficiency. One of its powerful concurrency features is the sync package, which includes various synchronization primitives. Among these is sync.Pool, a powerful tool for...76 readsGo Language
Mukesh Rajputrajputmukesh748.hashnode.dev·Oct 6, 2024Mastering async and await in Kotlin CoroutinesWhat Are async and await? In Kotlin, the async function is used to launch a coroutine that performs some asynchronous task. It returns a Deferred result, which can be thought of as a future result that will be available at some point. To get this res...async/await