Christian Loza Peraltachristianloza.dev·Feb 2, 2025[Quarkus] - Entendiendo el @Nonblocking (BabySteps)Discusión Si bien Quarkus se convirtió uno de los frameworks de alguna forma más demandados debido a su versatilidad con reactividad asi como la promesa de ser un marco nativo para Kubernetes y que puedan construirse tanto en JVM o GraalVM, también d...guias y notasquarkus
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’s 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
Lim Woojaejaylog.hashnode.dev·Jan 23, 2025[CS Fundamentals] Thread Synchronization: Semaphore, Mutex, and LockSemaphore vs Mutex Semaphore In a multi-threaded environment, your program might run into a problem if more than one threads are trying to acquire a shared resource at the same time. Semaphore is a synchronization tool used in programming to manage a...CS fundamentalsThreads
Chetan Mittalblog.railsforgedev.com·Jan 18, 2025Understanding Ruby 3.4 Concurrency: A Comprehensive GuideRuby 3.4, 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...132 readsConcurrency in Ruby
Shashi Shekhardynamicmemoryallocation.hashnode.dev·Jan 9, 2025OS ComponentsThe operating system is divided into several layers, each performing specific tasks: Kernel: The core of the OS that manages resources (CPU, memory, I/O devices). Types: Monolithic Kernel: All OS services run in kernel space (e.g., Linux). In a m...operating system
Hemant Besracodeinjava.hashnode.dev·Dec 30, 2024Java Developer Roadmap: A Step-by-Step Guide for FreshersStarting your journey as a Java developer can feel complicated, but with a clear plan, you can build a strong foundation. Here’s a systematic roadmap to help you get started. All the topics mentioned below are available for free. You can find tutoria...44 readsRoadmap
Alessandrofailing2build.hashnode.dev·Dec 29, 2024Integrating Python in Delphi: A Guide to Boosting Development EfficiencyOverview The purpose of this article is to create a Delphi FMX application that runs a Python application in a thread without locking the UI. We need to have Embarcadero’s Delphi installed (I am using version 12.2 for this build), and having Python4D...python4delphi
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
Shashi Shekhardynamicmemoryallocation.hashnode.dev·Dec 17, 2024Multithreading and DeadlockMultithreading is a core concept in modern programming that allows a program to perform multiple tasks concurrently by creating multiple threads of execution. Synchronization ensures that these threads interact safely and correctly, especially when t...C++