About 168,000 results
Open links in new tab
  1. How to create a batch file countdown timer in min:sec format that uses ...

    3 I am trying to create a countdown timer that is in min: sec format which uses a variable taken from a text document and uses it as the finish time and uses the current time (time the .bat was started) as …

  2. Using SCCM to force a reboot via powershell doesn't show the …

    Feb 5, 2025 · I'm trying to trigger the SCCM reboot countdown timer on a Windows machine using PowerShell. The countdown window appears as expected, but when the timer reaches 0, the system …

  3. while loop - Simple Countdown Python - Stack Overflow

    May 4, 2017 · I wrote this code, which I found in the book 'Python for dummies' countdown = 10 while countdown: print countdown, countdown -= 1 print "Blastoff!" It should print 10 9 8 7 6 5 4 3 2 1 Bl...

  4. javascript - How to ensure countdown timer updates the page title …

    Nov 27, 2024 · Google's countdown timer effectively updates the time in the browser tab's title, even when users navigate to other tabs. This seamless functionality relies on efficient background …

  5. How to write a countdown timer in JavaScript? - Stack Overflow

    Just wanted to ask how to create the simplest possible countdown timer. There'll be a sentence on the site saying: "Registration closes in 05:00 minutes!" So, what I want to do is to create a s...

  6. Batch countdown but WITH showing countdown - Stack Overflow

    Feb 27, 2021 · Batch countdown but WITH showing countdown Asked 4 years, 10 months ago Modified 4 years, 10 months ago Viewed 9k times

  7. javascript - How make react countdown timer - Stack Overflow

    Dec 12, 2019 · How make react countdown timer Asked 6 years ago Modified 3 years, 5 months ago Viewed 25k times

  8. Implementing a countdown timer in React with Hooks

    Jul 21, 2019 · Implementing a countdown timer in React with Hooks Asked 6 years, 5 months ago Modified 1 year, 6 months ago Viewed 75k times

  9. How to make a countdown timer in Android? - Stack Overflow

    Apr 5, 2012 · 226 I have two EditTexts in XML. In one EditText, the user can put a number as minutes and in another EditText, a number as seconds. After clicking the finish button, the seconds EditText …

  10. javascript - Countdown timer in React - Stack Overflow

    Nov 30, 2016 · I have seen lots of countdown timers in JavaScript and wanted to get one working in React. I have borrowed this function I found online: secondsToTime(secs){ let hours = …