Raj Aryanrajaryan.hashnode.dev·Nov 26, 2023Designing a Generic DB Scheduler in Spring Boot: A Comprehensive GuideHi folks !! Recently during my internship, I was assigned a task to write a Generic DB Scheduler. The use case was to schedule various kinds of jobs mainly OneTimeTask in a generic way so that we don't have to explicitly create a bean of all the task...Discuss·1 like·59 readsSpringboot
Pratik MaliforThe Tech Deckthetechdeck.hashnode.dev·Nov 25, 2023How to Use Notion as a Student to Stay OrganizedNotion is a versatile productivity and organization tool that can be incredibly useful for students. With its flexible databases, wiki-style pages, and powerful integration capabilities, Notion enables students to keep all their schoolwork neatly org...Discussnotion
Farheen ShaikhforHuddle01huddle01.hashnode.dev·Oct 4, 2023Huddle01 Video Meet: The Need for Privacy-Focused SolutionsSchedulers—aren't they the most convenient organizing tools, helping us juggle our daily tasks and commitments with ease? But you know what the most annoying thing with these schedulers is? All the meetings scheduled via them are powered by centraliz...Discuss·29 readsscheduler
Asad Javeddevioand.hashnode.dev·Sep 23, 2023Mastering Firebase Function Scheduling (Cron Job) 🎉Hello, fellow developers! If the idea of having your code automatically check and update your e-commerce store's stock interests you, you've landed in the right place. Today, we're diving deep into how you can harness Firebase cron jobs and scheduler...DiscussFirebase
Chop Codingchopcoding.com·Jul 3, 2023Automating Tasks in Flask: A Comprehensive Guide to Apscheduler IntegrationAre you looking to automate tasks in your Flask application and store the results in MongoDB? Look no further than apscheduler. This powerful Python library enables you to schedule and run tasks at specific intervals or times. By combining apschedule...Discuss·127 readsscheduler
Adil Shaikhadilshaikh165.hashnode.dev·Jun 30, 2023CRON Expressions using EventBridgeScheduling expressions for rules You can create rules that self-trigger on an automated schedule in EventBridge using cron or rate expressions. All scheduled events use UTC time zone and the minimum precision for schedules is 1 minute. EventBridge su...Discuss·39 readsAWS Event Driven ArchitectureAWS
Harsh Mangeharshmange.hashnode.dev·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.dev·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__': ...Discuss·36 readsprocess
Harsh Mangeharshmange.hashnode.dev·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...Discuss·34 readsoperating system
Ujjwal Tyagityagidatawizard.hashnode.dev·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