Tag

timers

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Jun 10, 2025 · Frontend Development

Master PyQt5 Event Handling and Timers: From Signals to Custom Filters

This article explains PyQt5's event system, covering both high‑level signal‑slot mechanisms and low‑level event handling, lists common event types, demonstrates five event‑processing techniques, and provides step‑by‑step examples of implementing custom event filters and timers using QTimer and timerEvent.

Event HandlingPyQt5Python GUI
0 likes · 10 min read
Master PyQt5 Event Handling and Timers: From Signals to Custom Filters
Deepin Linux
Deepin Linux
Nov 23, 2024 · Fundamentals

Understanding the Linux Time Subsystem: Architecture, APIs, and Implementation

This article provides a comprehensive overview of the Linux time subsystem, covering its hardware foundations, time concepts, user‑space and kernel APIs across multiple generations, timer implementations, scheduler tick interaction, and the overall design of the system clock.

APIKernelRTC
0 likes · 40 min read
Understanding the Linux Time Subsystem: Architecture, APIs, and Implementation
58 Tech
58 Tech
May 26, 2022 · Frontend Development

Advanced Timer Techniques in Frontend Development

This article examines the challenges of timer precision in front‑end scenarios such as e‑commerce flash sales, explains the limitations of native setInterval and setTimeout, and introduces a frame‑based timer using requestAnimationFrame, requestIdleCallback and compensation strategies to achieve high‑accuracy scheduling.

JavaScriptfrontendperformance
0 likes · 19 min read
Advanced Timer Techniques in Frontend Development
Laravel Tech Community
Laravel Tech Community
Aug 25, 2020 · Frontend Development

Why You Should Avoid Using setInterval in JavaScript

Using setInterval for repeated tasks in JavaScript can lead to unhandled errors, ignore network latency, and provide no guarantee of execution timing, causing request overloads and missed intervals; replacing it with setTimeout and dynamic scheduling ensures more reliable, controlled, and error‑resilient timing behavior.

JavaScriptfrontendperformance
0 likes · 5 min read
Why You Should Avoid Using setInterval in JavaScript
Sohu Tech Products
Sohu Tech Products
Nov 20, 2019 · Fundamentals

Deep Dive into Linux Timekeeping Architecture: System Time, Timers, and Hardware Oscillators

This article provides an in‑depth exploration of Linux’s timekeeping subsystem, covering how the kernel initializes and maintains system time, reads timestamps via vDSO and sequential locks, manages timers with various algorithms, and explains the underlying quartz crystal oscillator that generates the hardware clock.

HardwareKernelOperating Systems
0 likes · 22 min read
Deep Dive into Linux Timekeeping Architecture: System Time, Timers, and Hardware Oscillators
Hujiang Technology
Hujiang Technology
Dec 22, 2016 · Frontend Development

Understanding JavaScript Timers, the Event Loop, and setTimeout Execution

This article explains how JavaScript’s execution stack, heap, event loop, and setTimeout work together, illustrating their behavior with visual diagrams and examples that reveal common pitfalls such as blocking code and minimum timer delays.

AsynchronousEvent LoopJavaScript
0 likes · 8 min read
Understanding JavaScript Timers, the Event Loop, and setTimeout Execution