Ahmad Gazaliahmadgaz.hashnode.dev·Jan 9, 2025JavaScript Promises are Kinda ConfusingWhen I first started learning JavaScript (questionable life choice), I spent ages feeling completely baffled by the event loop, Promises, and how callbacks tie everything together. I highly recommend Philip Robert’s JSConf EU talk regarding the JavaS...52 readsJavaScript
Jorge Castrosouthprojects.com·Jan 2, 2025Running several processes in PHPProblem I had to analyze and read 14739 folders using PHP, which took over half an hour. While PHP has some async functionalities, they don’t work in Windows. However, some solutions are still available, such as using CURL calls, exec calls, and COM...PHP
Rahul Sinhaoic.hashnode.dev·Jan 2, 2025Choosing Between Synchronous and Asynchronous Integrations in Oracle Integration Cloud (OIC)Introduction When designing integrations in Oracle Integration Cloud (OIC), one of the fundamental decisions you must make is whether to create a synchronous or asynchronous integration. Both integration patterns have specific use cases, strengths, a...Seamless Solutions: The OIC Series(Theoritical and Practical)#oic
RANIT MANIKranitmanik.hashnode.dev·Dec 30, 2024Asynchronous JavaScriptAsynchronous programming in JavaScript allows you to execute code that may take time (like fetching data from an API, reading files, or querying a database) without blocking the rest of the program. This makes JavaScript more efficient and responsive...asynchronous
Hoang Nguyen Vietvieth.hashnode.dev·Dec 27, 2024#3 Khi nào dùng Async? khi nào dùng Worker?Có bao giờ bạn phân vân về việc trường hợp nào thì chọn sử dụng Async trường hợp nào thì dùng Worker trong dự án? Việc chọn giữa Worker và Async phụ thuộc vào tính chất công việc và yêu cầu của hệ thống: Worker • Định nghĩa:Là một tiến trình hoặc ...41 readsasynchronous
Abdelfattah Ragababdelfattah-r.hashnode.dev·Dec 23, 2024Angular Observables and Promises: A Practical Guide to Asynchronous Programming by Abdelfattah RagabAngular Observables and Promises: A Practical Guide to Asynchronous Programming by Abdelfattah Ragab Welcome to the book “Angular Observables and Promises: A Practical Guide to Asynchronous Programming”. In this book, I explain how to use observables...performance
Sreerag Pavithranblog.iamsreerag.com·Dec 21, 2024Understanding JavaScript Promises: Simplifying Asynchronous CodeJavaScript promises are a powerful way to handle asynchronous operations, making your code cleaner and more manageable. Let's dive into how promises work and how to use them effectively. Creating a Promise A promise is an object that represents the e...JavaScript
Ademola Thompsonsuperhero.hashnode.dev·Dec 16, 2024Asynchronous Programming With Python: A Simple OverviewIn programming, two primary ways to handle tasks are synchronously and asynchronously. Synchronous programming is a form of programming that lets you run only one task at a time. It is the traditional way of handling tasks. If you call a synchronous ...7 likesPython
Chetan Choudharychoudharycodes.hashnode.dev·Dec 16, 2024FastAPI Unveiled: Mastering the Magic of Lightning-Fast Python APIsFastAPI is a modern, high-performance web framework for building APIs with Python. It’s designed to be easy to use, fast to code, and capable of handling production workloads. In this beginner-friendly guide, we’ll explore how FastAPI works behind th...Python
Adegoke Ayobami Seunayobamiseun.hashnode.dev·Dec 14, 2024Simplify Asynchronous Programming with AsyncWrapperIntroduction Asynchronous programming has transformed how we build modern applications by enabling us to handle complex tasks without blocking operations. However, managing asynchronous code can sometimes be daunting, especially when juggling multipl...JavaScript