This tag is for questions about using timers in code to make things happen in a certain order or for gathering amount of time elapsed.
5
votes
2answers
61 views
4
votes
1answer
128 views
Detecting the duration of a button press in a microcontroller project
I'm a C++ newbie and so far have written my code mostly in an not OO way. Since this is getting confusing I'd like to start creating libraries for some of the functionalities that I've implemented. ...
2
votes
1answer
31 views
XCTestCase#waitFalseExpectationUntilTimeout implementation
I am working on an iOS project and I'm in charge of testing most parts of it. As I write some tests, I often have the need to wait for an asynchronous method to finish, and then test that something ...
3
votes
0answers
48 views
Basic game engine: timer, FPS and logic loop
I'm creating a simple Java game engine (just for fun). The idea is to create a basic framework for developing any kind of 2D game, an abstract engine that does the hard work. Would you like to review ...
1
vote
0answers
39 views
Update method using timer in WinForms Poker app
I have a WinForms Poker app that needs to update some stuff and im doing this by using a timer:
...
3
votes
1answer
27 views
4
votes
3answers
111 views
A reusable AJAX polling function
I have written a small JavaScript function which performs an AJAX request every x seconds.
I was hoping some of you could give it a look over and give me any pointers on redundant code or bad ...
3
votes
1answer
51 views
Script to pick random answers for a vocabulary quiz
I am making a small script, which, when run in the console on Vocabulary.com, picks one answer (the third or fourth) and clicks. Then the code checks if the answer was wrong or right and goes to the ...
7
votes
1answer
63 views
Chess countdown timer for Arduino LCD Keypad
I'm very new to C++ and Arduino, with a background in Python. I've written this code for a countdown timer and a simple menu to set the time available to each player, using button handling code from ...
4
votes
2answers
132 views
Event timers database interaction layer
I've just started with the basics of OOP. At first it looked complicated, but once I just started with it, it seemed so easy and everything seems to work like a charm, and that's why I'm unsure if I'm ...
1
vote
2answers
56 views
Lower the volume of my computer over time in Python
I wrote a program to gradually lower the volume of my computer when I go to sleep so I can fall asleep with TV or music on. This was my first time using argparse and I feel like there should be a ...
2
votes
1answer
65 views
Custom countdown second timer
I'm making a card game and I found useful to include a 60 second countdown timer. Here is my approach:
...
1
vote
0answers
53 views
Restarting properly
I have an activity with a timer in it, which starts an activity when the timer goes down. Before, when onPause() would get called after a phone call, my activity ...
1
vote
0answers
52 views
Millisecond timer using plain standard C++98
For development I'm using timer classes that are based on Win32 functions like QueryPerformanceCounter() or the time stamp counter of Intel-compatible CPUs. ...
3
votes
2answers
116 views
setTimeout and setInterval
Problem statement
After 10 sec of execution of a program, start reading the property descriptors of each property of an object and continue reading all remaining properties each, every 3 ...
5
votes
1answer
151 views
Minimalist countdown timer with C#
I'm looking to add a module to one of my utility classes that functions as a countdown timer for tools that execute tasks after a certain amount of time. The code below is what I have working for PoC, ...
3
votes
0answers
28 views
Periodically monitor if record is not updated using Node, Event and setTimeOut
Here is my scenario:
Every user checks in every five minutes.
If some user doesn't check in after 5 minutes, I should be able to keep track of it.
If some user doesn't check in N number of times, an ...
12
votes
4answers
958 views
Rubik's cube timer & scrambler
This uses a linked list to store the data. I used a linked list as it's the only type of data structure that I know currently. Using chrono, I can get microseconds ...
4
votes
0answers
49 views
Precise timings with low jitter via RDTSC (for x86 and x64)
The Win32 API has a so-called 'high performance counter' (QueryPerformanceCounter() and friends) but often it is neither precise enough nor reliable enough, due to ...
1
vote
1answer
82 views
Executing periodic tasks
I am writing a code in Golang to execute a periodic function (every 2 second). According to documentation and an example I have written two programs. Can anybody tell which one is better? Also, is ...
2
votes
2answers
69 views
Pomodoro Timer in Javascript
I've made a Pomodoro Timer application. All it does is countdown from a time in minutes given by the user to 0:00. It does this first for a session time, and then switches to a break timer and ...
3
votes
1answer
141 views
sleep() function [closed]
I wrote a sleep() function in C, but I don't know is it harmless and cross-platform.
Here its code:
...
7
votes
3answers
479 views
Measuring performance of code using StopWatch
I have created a StopWatch class to measure the performance of any code. I use this StopWatch code in any of my multithreading projects as well.
...
12
votes
4answers
178 views
Simple stopwatch class
I'm not sure what the best way is when dealing with users calling start() multiple times or stop() before calling ...
2
votes
2answers
325 views
Writing C#'s analog of setTimeout, setInterval and clearInterval
I got tired of starting timer every time I need to do something simple as running some function 5 seconds after something in my code happens. So I tried to write a function (actually, 3 of them: ...
7
votes
3answers
354 views
Egg timer in Bash
I just started to learn programming, going through a lot of different tutorials, trying out different programming languages and I stumble in the same sort of questions all over the place.
I give you ...
3
votes
0answers
44 views
A version of the Pebble Big Time watch face that also displays the date
I'm seeking style pointers, bugs, memory leaks, incorrect usage etc.
...
2
votes
1answer
71 views
MyTimer based on QTimer
I needed a timer that fires in intervals for a given duration when e.g. a button is pressed. The button can be pressed several times thus I thought it would be easiest to create a new timer for each ...
6
votes
1answer
73 views
Rate limiting function calls
I wanted to write a function that when applied to another would rate limit it, but permit all calls to eventually make it through.
Comments and criticism welcome.
...
14
votes
3answers
578 views
“Ticker” for game timing
I designed a "Ticker" based on how I imagine Minecraft's tick system works. My ticker calls a method tickRate times a second and provides a Delta Time value (...
6
votes
1answer
112 views
Timer in pure JavaScript
I was working on a timer code in pure JavaScript and would like to know any pointers to improve:
Features
Start/ Stop/ Reset on click of a button.
Set limit to clock.
Update class name for warning ...
4
votes
2answers
97 views
Auctioneer calling “Going once… going twice… sold!”
I feel like the if-else combination isn't the most optimal and I'm also not sure if I need a loop
...
0
votes
1answer
280 views
Case of System.Timers.Timer vs System.Threading.Timer
I have a console application that I want to use to send an email notification every day at some time (call it 06:00 local time). To do so at the moment I am using a ...
2
votes
3answers
112 views
Simple JavaScript timer function
I've written a timer to start when the page loads, and to stop when the user clicks a "finished" button:
...
2
votes
0answers
62 views
Pomodoro Timer via setTimeout()
I've made my attempt to code timer entirely by hand using jQuery. No external libraries to manage time at all.
...
4
votes
1answer
125 views
Creating a Tomato Timer
I have completed a FreeCodeCamp exercise to create a tomato timer and chosen to do so with vanilla Javascript. Although it works, I don't like in how many places I am checking against two state ...
3
votes
1answer
67 views
Javascript: timer function
This is a function I made for a timer that counts down and performs a callback at the end. It seems to work fine, but I think the code is not very clean and has some unnecessary bits; also I would ...
3
votes
1answer
90 views
Ability System in my game
I'm writing a game in C# Monogame, and I've decided to make my project as modular as possible.
GitHub
At first, I've had a single project with a folder that's separated inside to other folders ...
6
votes
1answer
165 views
Task Reminder - Repeatedly notify every 6 hours
So I'm very much a beginner to Java and Android programming. I've worked a lot more with Python so I might have some quirks from there bleeding into my code here. I'd like a particular focus on ...
4
votes
1answer
1k views
Pomodoro Timer via setInterval
I'm hoping for some input on if my code is DRY or how I could have made it more efficient. I am pretty new in terms of jQ/JavaScript and this took me far longer than I care to admit. I will post the ...
6
votes
1answer
72 views
Creating an in-memory ViewCounter that commits to database every 10 minutes
This singleton is responsible for counting every pageview (called Routes in our case) we get by id, until the timer runs out and commits the results to the database in one query. Then the counter gets ...
11
votes
2answers
177 views
A low tech approach to measuring game speed
Whilst developing a game I needed a delay routine capable of doing delays
ranging from 0.5 sec to just a few msec. The obvious choice was to use
the BIOS delay function 86h on int 15h. In a true real ...
2
votes
1answer
140 views
Is a Timer the best way to achieve recursive in Android?
I'm changing the Viewpager items programmatically using mViewPager.setCurrentItem(position); with a regular interval of time recursively. Please tell me if this is ...
4
votes
1answer
72 views
4
votes
3answers
438 views
Debounce in Scala
This is my attempt at implementing debounce in Scala without any 3rd party library. How can I improve the code/make it more idiomatic (and any bugs I might have missed)?
...
5
votes
1answer
73 views
Abstracting test suite for simple performance evaluation in Java
Today, I sat down to write a tiny performance test to quickly assess a hunch I had regarding an optimization. The resulting code eventually got rather large for my taste; thus I subsequently tried to ...
7
votes
1answer
132 views
Portable method of getting time in C
Mac doesn't have the Unix clock_gettime so I am trying to create something that's really portable and only dependent on C.
So far I've come across this function:
...
2
votes
1answer
127 views
Hash table with “Time To Live” elements
Recently, I got a very interesting task: to realize the hash table that works in multi-process server in common memory, each element of which must have a TTL property. It was suggested to implement ...
3
votes
1answer
8k views
Countdown timer in PHP
Using PHP and jQuery, I was able to make this countdown timer. I've searched various books and obviously on Google, but couldn't find this type of approach as used by me here. I sincerely feel there ...
4
votes
1answer
4k views
Proper use of timer in windows service
I have following code to use timer (System.Timers.Timer) in windows service. The goal is that new time handler should not occur if previous one didn't finish its job. Here is how I achieve this:
...