Tagged Questions
The ticks tag has no wiki summary.
20
votes
6answers
21k views
Get timer ticks in Python
I'm just trying to time a piece of code. The pseudocode looks like:
start = get_ticks()
do_long_code()
print "It took " + (get_ticks() - start) + " seconds."
How does this look in Python?
More ...
8
votes
1answer
5k views
jQuery Flot data/axis labels on top of graph
Is there a way to overlay the x-axis and y-axis numeric labels onto a jQuery Flot graph. So, I want the labels to not be outside, next to the graph, but on top of the graph itself.
The following ...
5
votes
2answers
353 views
How to implement simple tick-based engine in c++?
I'm writing a text game and I need a simple combat system, like in MUDs, you issue commands, and once in a while "tick" happens, when all those commands execute, player and monsters deal damage, all ...
4
votes
1answer
67 views
Differences in Elapsed Ticks property of Stopwatch
ElapsedTicks & Elapsed.Ticks are properties of Stopwatch, which I think should be same.
And in case they are same, why they should give different outputs ?
Code :
Stopwatch spwt = ...
4
votes
7answers
1k views
Exactly fire tick event on completion of hour in C# Timer
I want the tick event to fire every hour exactly on completion of the hour. For e.g. it should tick on 8 am then on 9 am then on 10 am etc.
It's simple that I need to set the Interval to 3600000.
...
3
votes
5answers
6k views
Getting the System tick count with basic C++?
I essentially want to reconstruct the getTickCount() windows function so I can use it in basic C++ without any non standard libraries or even the STL. (So it complies with the libraries supplied with ...
3
votes
1answer
544 views
how do php's declare(ticks) really work?
i created a signal handling class using pcntl_signal which now i want to use
for sigalrm
the problem i have is that my phpunit test for testing the signalclass works (where im only using declare ...
3
votes
3answers
308 views
In PHP, what is a Tick?
I know that Ticks are not PHP specific and are somewhat related to timing and/or number of operations, but I lack all the understanding that would otherwise allow me to work with them.
Can someone ...
2
votes
2answers
69 views
Using ticks to measure absolute time
I need to way to get a very precise measurement of current time. The tick value seems to be perfect for this, but the most common way to get it (DateTime.Now) seems to have a fairly loose tolerance ...
2
votes
1answer
171 views
R Plot Specify number of time tickmarks
I was wondering how I could plot more tick marks when plotting time on the x-axis.
Basically, a time equivalent to pretty. Pretty obviously doesn't work so well with times, as it uses factors of ...
2
votes
2answers
147 views
Windows kernel equivalent to FreeBSD's ticks or Linux' jiffies in the latest WDK
I am working on a Windows NDIS driver using the latest WDK that is in need of a millisecond resolution kernel time counter that is monotonically non-decreasing. I looked through MSDN as well as WDK's ...
2
votes
4answers
270 views
Any class in C# that can tell me clock tick, seconds consumed by a function
Is there a class in C# that can give me clock ticks, seconds consumed by a method? I guess I have two wrap that functionality around function to time the ticks and seconds taken up.
2
votes
2answers
671 views
How to use string values in place of ticks on WPF Tickbar?
I wish to customize the appearance of the basic WPF TickBar. I was wondering if there was a simple way to do this using a control template:
I wish to have numbers in place of ticks along the ...
2
votes
1answer
701 views
How to plot data against specific dates on the x-axis using matplotlib
I have a dataset consisting of date-value pairs. I want to plot them in a bar graph with the specific dates in the x-axis.
My problem is that matplotlib distributes the xticks over the entire date ...
2
votes
1answer
959 views
core-plot: still do not understand how to have custom label AND ticks
I have this problem since a long time and I cannot find anything to solve this. I read several forum but was not able to find a working solution. I have the following code:
// Adjust graph using ...
2
votes
1answer
1k views
Convert date to ticks in SQL Server
Does anyone know how to convert a DATETIME COLUMN to TICKS in SQL Server?
2
votes
1answer
803 views
MATLAB: Can axes tick labels be accesed as text objects?
I'm curious is it possible to change text properties of tick labels independently of axes properties. Do they have handles? I'd like to control their position better, alignment, color, fonts, etc.
I ...
2
votes
3answers
359 views
Is it possible for tick marks on an image to be centered around the -edge- of a pixel?
If I make a 4 pixel by 4 pixel image in Matlab using the image() command, it centers the tick marks in the middle of the pixels. I want the tick marks to be centered on the lower left corner of the ...
2
votes
2answers
2k views
Hide ticks at Min and Max in WPF Slider
I want to display a Slider ranging from 0.5 to 1.5 with only one tick mark at 1.0 to mark the center and default value. I have defined a Slider as follows:
<Slider Minimum="0.5" Maximum="1.5"
...
2
votes
3answers
1k views
Is it possible to read the internal CPU tick counter from C#?
I have a multithreaded C# program where I need to log how many ticks each thread spends in a specific spin wait lock.
I know there are methods for doing that from C or assembler, but is it possible ...
2
votes
1answer
44 views
Is it possible to measure a timespan that could span over several machine restarts not using the DateTime class?
I have a bit of a strange problem.
I'd like to be able to measure a timespan independently of the system datetime.
We basically have a system with one central server and multiple local servers ...
2
votes
1answer
471 views
Running code upon Response.TransmitFile completion
I'm using Response.TransmitFile to retrieve a file from a web service. I'd like to measure the amount of time this process takes from the server's perspective.
I've tried grabbing the tick count ...
2
votes
1answer
165 views
Is there a way to count the number of seconds since bootup?
Is there a way to count the number of seconds(ticks?) since bootup even if a user change the time on computer?
1
vote
1answer
34 views
matplotlib how to start ticks leaving space from the axis origin
I need to plot non-numeric data against dates as a simple line graph. I am using matplotlib.
Here's some sample code.
import matplotlib.pyplot as plt
xticks=['Jan','Feb','Mar','April','May']
...
1
vote
3answers
81 views
Adding to arrays C++
just wondering how I would go about adding ints to an array in the following way;
I am getting average framerate for my game, but from what I understand if I create an int array of [10], I have no ...
1
vote
3answers
52 views
SQL Server: GROUP BY datetime without ticks
I have a query, that returns all entries, with unique datetime with ticks:
select t.date, count(*) as Count
from table t
group by t.date having count(*) = 1
I need a query that will return ...
1
vote
1answer
82 views
How to Convert TimeStamps to Ticks (PPQ) - Real Time Midi
I'm currently reading in MIDI messages in real-time from my midi keyboard using a class that implements Receiver, and outputting the notes played.
The only information i receive when I press a note ...
1
vote
3answers
156 views
PHP Equivalent of C# ticks
I am currently converting a ASP.NET C# application to PHP. The service uses DateTime Ticks and I was wondering if there is an equivalent in PHP.
If not what is the best way for me to calculate a ...
1
vote
1answer
441 views
python matplotlib colorbar setting tick formator/locator changes tick labels
users,
I want to customize the ticks on a colorbar. However, I found the following strange behavior. I try to change the tick formator to the default formator (I thought this should change nothing at ...
1
vote
1answer
343 views
Windows CE, .NET - how to get CPU ticks or current time in (micro) milliseconds?
I would like to test how difficult are lines of code I wrote. I need to know how long (or how many CPU ticks) it takes to complete them.
I use Windows CE, compact .NET framework 2, VB.NET 2005
On ...
1
vote
2answers
655 views
How can I store the current timestamp in SQLite as ticks?
I have a SQLite database where I store the dates as ticks. I am not using the default ISO8601 format. Let's say I have a table defined as follows:
CREATE TABLE TestDate (LastModifiedTime DATETIME)
...
1
vote
1answer
475 views
Manually specifying tick marks on a logarithmic axis in JFreeChart
Using JFreeChart I have a plot with a LogAxis with tick marks on the domain axis of an XYPlot that are determined automatically based on the width of the graph. My domain values are 0.01, 0.05, 0.1, ...
1
vote
3answers
113 views
Should I store DateTimes as a Long (Ticks) in a database?
Could life be made easier by saving DateTime values as a long instead? There always seem to be problems when working with null DateTime values, whether storing or retrieving - null DateTimes, invalid ...
1
vote
1answer
257 views
Can we convert Ticks to datetime in MySQL?
I have a column from a C# application whose value is in Ticks. Is there a MySQL query to convert it into DATETIME with milliseconds?
1
vote
1answer
1k views
Flot. Time Series. One Tick Per Day
I'm currently trying to create a flot graph where the x axis is a time series and has one tick per day. So for example if I was showing a graph for November I'd get a tick for each day in November.
...
1
vote
5answers
477 views
Compare DateTime ticks on two machines
Is it a viable option to compare two FileInfo.CreationTimeUtc.Ticks of two files on two different computers to see which version is newer - or is there a better way?
Do Ticks depend on OS time or are ...
1
vote
2answers
579 views
How to set custom ticks on a TTrackBar in Delphi 2010?
I tried to set the tick style to tsManual, the min and max position to 1 and 100 respectively and add ticks at 9, 19, 79 and 89 and no ticks are shown at all except the detault first and last which ...
1
vote
2answers
114 views
VB6 Application timing
I am attempting to profile a VB6 application.
Basically I wanted to work out at a method by method level how much time execution is taking.
However VB6 only supports times to 1 sec. Is there any ...
1
vote
2answers
946 views
convert ticks to time_t or Filetime()
how do i convert ticks to time_t or filetime().
Please suggest
thanks
1
vote
2answers
1k views
BASH Variables with multiple commands and reentrant
I have a bash script that sources contents from another file. The contents of the other file are commands I would like to execute and compare the return value. Some of the commands are have multiple ...
1
vote
1answer
952 views
jQuery Flot identical range ticks
Hi i want to add ticks that are not in a fixed range. i.e my ticks will be 1,2,3,3,3,3,4,5 how would i tell a data set for the graph type to plot points based on the tick number, instead of a fixed ...
0
votes
2answers
43 views
GNUPlot: How to set maximum number of x-ticks
I have an automated script that generates a graph every day using GNUPlot. The amount of data used for the graph grows every day, so my x-ticks get cluttered after a while. Can I somehow limit the ...
0
votes
2answers
88 views
PHP how to reset a timer every minute if there is no query to the database?
I have a basic server in PHP and from the mobile device I send data and save the server every 1 minute.
But when ever my mobile phone loses the connection, I would like to set a counter on the server ...
0
votes
1answer
84 views
How do I display the following in a 'readable' datetime format?
Database : SQLite
Column : SomeTable.Logged (DateTime)
Im using the System.Data.SQLite component. I save a datetime value in the Logged column as ticks. e.g. using c#
DateTime.Now.Ticks;
An ...
0
votes
3answers
158 views
C# Server side DateTime
Please tell me, is it good to store DateTime, for example createtime of posts, on server in ticks?
DateTime.Ticks
Your experience? any advices?
Thank you!!!:)
0
votes
3answers
1k views
convert date to c# ticks in java [closed]
Possible Duplicate:
C# DateTime.Ticks equivalent in Java
hello guys
can anybody tell me how to convert date to .Net ticks in java.
any help will be appreciative.
thanks
0
votes
1answer
354 views
Why is IDL adding it's own tick marks to my custom plot tick marks?
I'm trying to specify custom Y axis tick marks, but IDL is not cooperating.
http://i.imgur.com/BFqMO.png
In the top left, 1.0000 should be the max value, but IDL puts a 57 there. 57 is the max ...
0
votes
2answers
389 views
How do I put tick labels inside of a line graph in Flot
I essentially want to have the tick labels sitting inside the graph in their own column. Similar to how Campaign Monitor graphs are. But I can't find a way to do this. Is it possible?
0
votes
1answer
483 views
Flex - Timer event changes cursor
I have a timer event that updates certain things in my app (from a PHP Service) every 5 seconds. Every time this timer ticks, it makes the cursor blink to a clock and then back to the arrow. Since ...
0
votes
2answers
285 views
painting ticks on a zoomable timeline
i am creating a timeline where i want to paint the ticks at a certain timestep.
so depending on the available width i want to paint as much ticks as possible. but they should not be too close ...