Questions tagged [rate]

A measure, quantity, or frequency, typically one measured against some other quantity or measure.

A certain quantity or amount of one thing considered in relation to a unit of another thing and used as a standard or measure (e.g at the rate of 60 miles an hour).

489 questions
5
votes
4 answers

Magento "Unable to list current working directory"

http://www.keciadesign.dk I am trying to set up table rates in Magento 1.6.2.0. The problem occurs when I try to upload the file with table rates (CSV-file). Then the error "Unable to list current working directory" appears and I can't go any…
Christian
  • 111
  • 1
  • 1
  • 9
5
votes
3 answers

Calculate age standardised rates by sub-group with confidence intervals in R

I have a dataframe which looks like this: df <- data.frame ( time = rep(c("2010", "2011", "2012", "2013", "2014"),4), age = rep(c("40-44", "45-49", "50-54", "55-59", "60-64"),4), weight = rep(c(0.38, 0.23, 0.19, 0.12, 0.08),4), ethnic =…
Laura
  • 499
  • 5
  • 13
5
votes
1 answer

nginx limit_req does not work

I'm trying to implement a simple rate limiting system with nginx (v1.6.2) sites-available/mysite.com: limit_req_zone $binary_remote_addr zone=myzone:10m rate=2r/m; server { listen 80; server_name …
5
votes
3 answers

Linux perf command for cache references

I want to measure cache miss rate of my code. We can use perf list to show supported the events. My desktop has a Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz processor, the perf list contains cache-refrences, and cache-misses, like this: cpu-cycles OR…
Robert
  • 303
  • 1
  • 4
  • 10
5
votes
1 answer

WP7 how to rate a Song

I see that the Song class only contains IsRated and Rating property with Set method. However, I see that the default music player application in WP7 has the ability to rate a song So, how can I rate a Song ?
onmyway133
  • 45,645
  • 31
  • 257
  • 263
4
votes
1 answer

Why sensor sampling rate become too low when Android phone is still?

I write a simple app to read accelerometer data and I found that sampling rate is too low(even one sample 5 seconds) when I put phone on the table and keep quiet. I set sampling rate as FASTEST it's sampling rate always is high. I want to know why…
MoreFreeze
  • 2,856
  • 3
  • 24
  • 34
4
votes
3 answers

is their a direct link to review my Android app (not within)

there a lot of q&a about how users can rate my app within the app, but i need just a direct link to review\rate my app to send the user by mail and not to my app page in the market because there he need to cilck review then login and then write the…
gilush14
  • 485
  • 1
  • 9
  • 20
4
votes
1 answer

Android display refresh rate

I'm developing an Android app which acts like a movie clapperboard/clapboard/slate. Is there any way in which I can set the display's refresh rate? It is very important because when you edit the movie it's necessary to "land" on specific frames. The…
bboylalu
  • 129
  • 1
  • 8
4
votes
4 answers

rate control in java

I am looking for a good solution or probably an API to solve the following problem: My application does a task in a loop, for example it sends e-mails etc. I need to limit the average rate of messages to for example 100 messages per second or 1000…
Literadix
  • 1,379
  • 1
  • 18
  • 31
4
votes
2 answers

Rate limit with golang.org/x/time/rate api request

I already created a function for limiting to 50 requests for API logins in one day. var limit = 50 package middleware import ( "log" "net" "net/http" "sync" "time" "golang.org/x/time/rate" ) // Create a custom request…
agny reza
  • 137
  • 2
  • 7
4
votes
2 answers

Is there a rate calculator utility in unix/bash?

I am looking for a tool which does something similar to tail -f /var/log/some.log | grep EVENT1 |rate which keeps displaying the rate of the event.
sheki
  • 8,991
  • 13
  • 50
  • 69
4
votes
3 answers

LibGDX - Best way to adjust fire rate in a loop

I'm making a 2D platformer / shooter with LibGDX. I'm having this loop where holding fire-button down causes bullets to fly from the main character's gun the whole duration while the fire-button is pressed down (rapid fire). That part works…
Steve Waters
  • 3,348
  • 9
  • 54
  • 94
4
votes
1 answer

How do you get the sampling rate of an AudioFileID?

It is easy in iOS to get the number of bytes in a loaded .wav file: UInt64 dataSize = 0; // dataSize UInt32 ps = sizeof(UInt64); // property size if( AudioFileGetProperty(fileId, kAudioFilePropertyAudioDataByteCount, &ps, &dataSize) ) puts(…
bobobobo
  • 64,917
  • 62
  • 258
  • 363
4
votes
3 answers

Implementing "Rate application" functionality on a Windows Store app

I am trying to implement rating functionality in a Windows Store application using HTML / Javascript. I am showing a popup dialog similar to the one below within the application and when "Rate" is clicked I would like to redirect to the Marketplace…
Gergely Orosz
  • 6,475
  • 4
  • 47
  • 59
4
votes
1 answer

simple financial rate function in javascript

I'm looking for a simple javascript financial RATE function, and I found this one. But it seems too difficult to understand. I want to simplify this function, and I need your help. If anyone has a simplest function, please answer. (It's a excel RATE…
rabugento
  • 73
  • 2
  • 7
1 2
3
32 33