Edwin Ayabiemadvirus.hashnode.net·Mar 25, 2023Scheduled Tasks in DjangoWhen building applications, the need for certain background tasks comes into place. Some of these tasks may be sending emails on a schedule, updating a model field or something else In Django, we have several options to settle this need but our main ...Discuss·11 likes·38 readscelery
Ifennaifenna.hashnode.net·Aug 29, 2022Repeated Task Scheduling in Python"History repeats itself" ~ Laptop and the Lady, Laptop and the Lady, Laptop and the Lady Introduction In this post, we'll go over what task scheduling is. You'll see examples of scheduled tasks, and we'll look at some approaches to scripting periodi...Syed Jafer K and 1 other are discussing this2 people are discussing thisDiscuss·4 likes·113 readsA Lady's guide to Software EngineeringPython
Olaoluwa Ajibadeajibaddemotiv.hashnode.net·Apr 3, 2023Node.js Task Scheduling With Agenda and MongoDBThe ability of an application to be able to set and schedule future tasks is a bonus and sometimes a must have feature for large scalable applications. In Node.js applications, future tasks can be scheduled to be executed using setTimers or clearTime...Discuss·4 likesNode.js
Harsh Mangeharshmange.hashnode.net·Apr 25, 2023Preemptive and Non-Preemptive AKA Cooperative scheduling/multitaskingPreemptive and cooperative multitasking are two different approaches to managing multiple processes or threads within an operating system. Preemptive multitasking involves the operating system interrupting a running process or thread and switching to...Discussoperating system
Harsh Mangeharshmange.hashnode.net·Apr 23, 2023Multiple Process Creation and Scheduling in OS: Practical Example with CodeHere's an example of how to create multiple processes, schedule them using priority scheduling, and execute a task in Python: import multiprocessing import heapq def worker_task(task): print("Executing task:", task) if __name__ == '__main__': ...Discussprocess
Harsh Mangeharshmange.hashnode.net·Apr 22, 2023Process Control Block (PCB): The Heart of Process Management in OSThe Process Control Block (PCB) is a data structure used by an operating system to store information about a running process. It contains information about the process's state, priority, resource usage, and other relevant details. Here's an example o...Discussoperating system
Ujjwal Tyagityagidatawizard.hashnode.net·Apr 13, 2023Unleashing the Magic of Job Schedulers: How to Tame Your Code and Save Your SanityOnce upon a time, in a land far, far away, software engineers were manually running their code on their machines like it was the Wild West🐎. But then, a hero emerged - the job scheduler!🔫 A tool that revolutionized the way developers manage their t...Discuss·1 likescheduler
Olaoluwa Ajibadeajibaddemotiv.hashnode.net·Apr 3, 2023Node.js Task Scheduling With Agenda and MongoDBThe ability of an application to be able to set and schedule future tasks is a bonus and sometimes a must have feature for large scalable applications. In Node.js applications, future tasks can be scheduled to be executed using setTimers or clearTime...Discuss·4 likesNode.js
Edwin Ayabiemadvirus.hashnode.net·Mar 25, 2023Scheduled Tasks in DjangoWhen building applications, the need for certain background tasks comes into place. Some of these tasks may be sending emails on a schedule, updating a model field or something else In Django, we have several options to settle this need but our main ...Discuss·11 likes·38 readscelery
Akanksha Raghavakank5ha.hashnode.net·Mar 6, 2023Demystifying Cron Expressions: The Ultimate Guide to Scheduling Tasks Like a ProHave you ever needed to schedule a task to run at a specific time, but weren't sure how to do it? Maybe you've heard of something called a cron expression, but have no idea what it is or how it works. Don't worry – you're not alone! In this blog post...Discusstask schedule
Jordi Ollé Ballestéjordi0lle.hashnode.net·Nov 25, 2022Building a price tracker (Part 3 - Scheduling)Shortcuts done 🎉. Last part, scheduling. For this part, I didn't do much myself. I found this post where it's very clear how to do it. I followed the steps and works perfectly. Likewise, I'll explain it to you with a few screenshots that I think are...Discuss·189 readsBuilding a price trackercalendar
Chinyere Ordorchinyereordor.hashnode.net·Oct 15, 2022How to build an email scheduler using Node.jsIn this article, we'll show you how to build an email scheduler using Node.js. This email scheduler will use the node-cron module to schedule the sending of emails at a specified time, and the nodemailer module to actually send the emails. Prerequisi...Discuss·1 like·28 readsNode.js
Shams Nahidshamsnahid.hashnode.net·Sep 10, 2022Utilizing Thread pools in Node.jsIf you are wondering about the title, All the methods of fs module in Node.js use thread pools Some methods of crypto module like pbkdf2 hash method use Node.js thread pool Depending of OS, Node.js make use of thread pools for different methods/modu...Discuss·133 readsNode.js & JavaScriptNode.js