Jagberry VisionforEmbedded & AIjagberry.com·Sep 28, 2024Generating Delays Using TIMERS on STM32F411 Discovery Board (using HAL - Hardware Abstraction Layer)Hello Creators!!In this article, we'll learn how to use TIMERS to generate delays through the Hardware Abstraction Layer (HAL). In the next article, we'll explore programming TIMER peripherals from scratch, using bare-metal programming. For this sect...Discuss·80 readsSTM32F411VE
Abhishek Gurjarabhishekgurjar.hashnode.dev·Aug 14, 2024Build a Countdown Timer WebsiteIntroduction Hello, fellow developers! Today, I'm excited to share a project I recently completed: a Countdown Timer. This project is a great way to learn and practice JavaScript, particularly in the areas of time manipulation and DOM updates. Whethe...DiscussHTML
Anjali Srivastavamyknowledge.hashnode.dev·Jun 6, 2024Role of Countdown Timer and Text Box in eCommerce Mobile AppIn mobile applications, countdown timers and text boxes serve distinct yet complementary roles that enhance functionality and user experience. https://www.youtube.com/watch?v=1XrKKJj_PIo Here’s an overview of their roles in eCommerce Mobile App: Co...Discussmobileapp
jean joel Nteppblog.nameksoft.xyz·Mar 22, 2024Angular Observables: building an account activation countdown timer.Introduction One of the approaches generally used to validate a user’s email address during signup is to send a n-digit code to this address. He is then asked to provide this code within a relatively short time in minutes. The problem we want to solv...Discuss·10 likesAngular
Deepak SinghforDeepak Singhdeepaksingh1301.hashnode.dev·Mar 14, 2024Understanding useRef Hook in React: A Simple Countdown Timer ExampleToday, during an interview session, I encountered an interesting scenario. I asked the candidate to create a simple countdown timer using React. However, despite his knowledge of React basics, he struggled to implement the timer functionality correct...Discuss·264 readsCountdown Timer
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Jan 20, 2024Mastering OTP Verification in React Native: A Step-by-Step GuideIn the dynamic landscape of mobile app development, user authentication is a pivotal aspect, and nothing quite beats the effectiveness of One-Time Password (OTP) verification. In this comprehensive guide, we'll explore the intricacies of building a r...Discuss·31 readsReact Native
Barbarageekiebarbs.hashnode.dev·Aug 18, 2023Build a Countdown app with Vue.js using Composition APIRecently I started learning Vue.js, and to my luck, it was being taught at the Sailscast community workshop. In the workshop, we were asked to build a countdown watch as a take-home assignment. Recognizing the value of documenting my journey, I decid...Discuss·10 likes·914 readsVue.js
Andrew Dassandrewdass.hashnode.dev·Aug 12, 2023How to make a Timer in PythonOverview This article will explain how to write a Python script to create a countdown timer by using the "datetime" module. An optional module that is also used in this script is "time" which creates a delay between executing consecutive commands. Ma...Discuss·91 readsPython
Grace Oluwaseguntechylawyer.hashnode.dev·May 31, 2023A Beginner's Guide to Dates in JavaScriptIntroduction JavaScript, known as JS for short, is one of the most popular programming languages. It is mainly used for creating web applications and almost all websites today are built with JavaScript. JavaScript can also be used for server-side ren...Discuss·90 readsJavaScript
Tushar Mukherjeetusharmukherjee.hashnode.dev·Oct 26, 2022useEffect with setInterval to make a timer.If you are using setInterval with useEffect, you may have got some weird bugs on the run. If you wanted to make a timer, you would create it like this at first, const [time,setTime] = useState(60); useEffect(()=>{ setInterval(()=>{ setTime(ti...Discuss·38 readsuseEffect