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

learn more… | top users | synonyms

0
votes
5answers
60 views

Formula to calculate average number on expanding data array

Say, if I had a final array of numbers, say: {1, 5, 7, 2} the average for them will be: (1 + 5 + 7 + 2) / 4; //Or, sum of all elements, divided by their number But what if my array is ...
2
votes
2answers
46 views

What does bit rate do? [closed]

I want to make a video transcoder as a holiday project in Java. I was looking into the basics of video files and came across terms like containers, bit rate, bit depth and so on. I have questions ...
0
votes
1answer
30 views

Table Rate Shipping

I want to use Table Rate as a shipping method. I enable and import table rate. But in checkout/cart page. When I click 'Get a Qoute', nothing happen. And it doesn't show in One Step Checkout. Have ...
0
votes
0answers
13 views

issue with rate in registerListener method of SensorManager

All, i recently came across rather strange situation. when i tried to register sensor with 1 second interval (i am using version 4.1) using registerListener i received calls onSensorChanged within a ...
0
votes
1answer
51 views

catch data from javascript using json to make a query in PHP

Hello im using a code from a javascript tutorial wich works great.. its a rating star system, so i can ask my users, your skills on something and they can "answer" using this rating system,.... So i ...
-1
votes
0answers
41 views

Calculate/Determine Price Per Hundred (CWT) For a Class and Weight Group (Base Rates) (LTL Freight) [closed]

How is this calculated or determined? According to http://www.smartfreightware.com/wp-content/uploads/2011/12/Demystifying-Deficit-Weight-Bumping-Dec2011.pdf this is "based on many factors." ...
1
vote
3answers
31 views

How to measure the rate of events through a system

I need to measure that rate at which a software system is consuming messages from a message queue and report on that periodically. Specifically, messages arrive from a message queueing system and I ...
0
votes
1answer
29 views

Difference between Propagation Time and Propagation Delay

I have found several answers to Propagation Delay but none come up when we talk about Propagation time. Are they the same thing? Propagation Delay: propagation delay is the amount of time it ...
0
votes
0answers
35 views

Mapping rates from 2 databases, best way to do this?

Okay so i need to Map rates, I have done it with a nested for-each loop like this: foreach (OPricingRate oRate in oPricingList) { foreach (APricingRate anvilRate in ...
-1
votes
1answer
29 views

I want payment in paypal with dynamic price entered by user

I want payment in paypal with dynamic price entered into textbox in wordpress. can anyone help me?according to user choices and price rate list,total price will change and will be calaulated by ...
-3
votes
0answers
64 views

Woocommerce - Flat Rate Shipping Domestic Vs. International [closed]

I am trying to get woocommerce to allow me to do a flat rate for domestic (Say $2.50 for US and Canada) and $5.00 for all other countries.. How can I do that? thanks!
1
vote
0answers
18 views

Global download limit within Apache2

is it possible to limit the download rate globally for apache2 and not per user via eg. mod_bw or mod_cband? And to allow only one download per user? Thanks!
0
votes
0answers
56 views

rails3 user can only vote once per day

class Rate < ActiveRecord::Base attr_accessible :image_id, :rate, :user_id belongs_to :image belongs_to :user validate :user_can_rate_after_one_day before_save :default_values def ...
0
votes
2answers
42 views

Testing actual rating booster using Askingpoint SDK

I integrated Askingpoint framework and prompted testing rating booster, which is working fine, but i want to check the actual booster. I am not getting actual booster even all conditions met. I ...
-2
votes
1answer
84 views

iOS App Store Rater best practice [closed]

Im using a pre defined class to do the "rate my app" functionality i want to know what is the best time to show to the user the rate message; is it related to the time user uses the application, or ...
0
votes
0answers
19 views

how can I limit the download rate of copyToLocal command on hadoop?

I'm want to download file from hadoop to local server , and the local server’s rate-limit is 10m。When the download rate exceed 10m,the local server will give an alarm 。 But I cannot find the ...
0
votes
1answer
41 views

UK VAT And how to charge at the correct rate if any [closed]

Paypal and method to charge the correct VAT if any. I'm based in UK and VAT registered, I sell membership to use my site. I have a payment form that gets submitted via Paypal API for recurring ...
0
votes
0answers
64 views

Upload issue with traffic shaping linux [closed]

So I want to limit the download and upload speed of a specific ip adress in a local network. To do this I are using a bach script running in a linux OS (Ubuntu 11.04). The issue here is that the ...
0
votes
1answer
39 views

How to set I/O sampling rate to more than 65535 ms (FFFF)

I'm using an XBee module series 2 with firmware ZNET2.5 ROUTER/END DEVICE API. I would send an ADC sample, but I saw that the IR parameter can be at the maximum 65535 milliseconds; I read about the ...
0
votes
0answers
11 views

0 FP Rate value in ROC Curve

I have implemented my own algorithm which gives me following result. In many data-set I am getting FP Rate as 0 and TP Rate as 1 so MY roc Curve is in reverse direction. IS it true ???
1
vote
0answers
114 views

Low frame time for CPU and GPU, low frame rate?

I am having some trouble grasping why my app performance is at 24fps as opposed to the usual 30fps. The frame time for both CPU and GPU varies between 6-18 ms, and the GPU utilization never surpasses ...
0
votes
1answer
42 views

Record audio loops through sample rates?

I am trying to read and understand audio in Android. In my search I came along this article. Here he has wrote a code to record audio in wav format. But there is one thing I don't fully understand, ...
1
vote
1answer
196 views

I hit the rate limit for twitteR even from the first request

As I say in the title, I always hit the rate limit (supposedly) even from the first request. Therefore, I cannot download anything from twitter. Here is my example code in R: tweets = ...
1
vote
2answers
97 views

+1 click is not working in Android integration with Google+

I followed this link to use the +1 button in my Android application to +1 a link or a website, but unfortunately it doesn't work as expected and it doesn't do anything when I click on it. I tried to ...
0
votes
1answer
80 views

iRate in Button Click event

I am using IRate in my ios application. I had coped two classes of iRate in my code. This is my code in appDelegate + (void)initialize { //set the bundle ID. normally you wouldn't need to do ...
1
vote
1answer
174 views

500MHz machine how many execute instruction in one clock cycle? [closed]

If a 500 MHz machine takes one clock cycle to fetch and execute an instruction, then what is the instruction execution rate of the machine?
3
votes
1answer
54 views

Changing the play back rate of a buffer in C?

I am using an Altera DE2 FPGA board and playing around with the SD card port and audio Line Out. I'm programming in VHDL and C, but the C portion is where I'm stuck due to lack of ...
0
votes
1answer
126 views

“market://details?id=” says item not found

I am trying to add rating feature in my app https://github.com/codechimp-org/AppRater but, the every time I click on the rate now it says The item you requested could not be found. How do I get out of ...
0
votes
1answer
52 views

Spam prevention (rate limiting)

To sign up, the end user submits an email form, only email form, after which they receive an "activation" link which points them to an form where they can fill in the password and full name. I do ...
0
votes
2answers
309 views

How to implement Rate App feature in iOS iPad app

I am using Appirater to implement Rate app feature in my iPad app. There is following link in Appirater for this purpose. ...
0
votes
1answer
55 views

Dynamically changing the price of an item based on the exchange rate

I am building a website in which I need to display the price of certain items.The price needs to be updated daily based on the exchange rate. How do I go about doing this in asp.net?
1
vote
1answer
76 views

Controling the animated scroll rate in a UIScrollview - IOS development

I've implemented some code, which is working nicely, to scroll a UIScrollview automatically based on a timer being triggered. Here it is: .... CGPoint offset; .... offset = scroller.contentOffset; ...
4
votes
0answers
146 views

quicker WiFi scan rate to obtain rssi changes android

I am trying to increase the wifi scan rate but with the method wifi.startscan and getting the info of the list result returned, i dont see that the rssi change each 2 seconds. My question is if it is ...
0
votes
0answers
63 views

Ios/Objective C. Slow Framerate in scrollview / laggy Scrollview

In my Scrollview i have a view and many subviews. Each of the view is about 50x50px and contains a label and a button. I add them in a loop with [myview insertSubview:childview ...
0
votes
1answer
55 views

received udp data rate measurement

I want to measure the udp packets rate which I receive on my pc on a particular port. Is there any application which can show the received udp throughput and its variation with the passage of time. ...
2
votes
1answer
59 views

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, ...
0
votes
1answer
87 views

Get the Read and Write Speed of a Flash Drive

How can I find out the reading and writing transfer rate of an usb flash drive? I wonder if there is a way to get this without copying a large file and measuring the time. Even if I had to do that, ...
1
vote
0answers
118 views

Limiting rate of concurrent greenlets

To achieve greenlet throttling I used gevent.queue.Queue to implement a token bucket. Turned the pattern into a function decorator: from functools import wraps from timeit import default_timer import ...
1
vote
4answers
153 views

Prevent duplicate anonymous Voting

How can I recognize duplicate voting or rating for a comment or article? For Example when you Vote up a comment, you can't vote anymore in that comment. i want the user can vote up a comment, this ...
5
votes
1answer
52 views

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 ...
1
vote
0answers
70 views

I got a dozen 1-star reviews on day one! I suspect these are fake competition ratings [closed]

My iOS app got a bunch of 1-star reviews on day one only to slowly recover ratings in the following days. The strange thing is that mone of these reviews had a comment and every country showed the ...
3
votes
3answers
318 views

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 ...
1
vote
4answers
127 views

Generate random text files at a specific speed in C#

I have created a C# console app which continuously creates text files with randomly created strings. Time (in minute) is given as an input to the app and it runs for that number of minutes to generate ...
0
votes
1answer
131 views

Rating an app in WP7 app [duplicate]

Possible Duplicate: Is there a way to check if a user has really rated your app? I am planning to use a nag screen to get my app rated. User can be directed using MarketplaceReviewTask. ...
2
votes
0answers
137 views

“Rate this app” stopped working on iOS

The "rate this app" link stopped working from all my iOS published apps. Now when I hit the "rate it" button I get the following error message from the app store: "Error Cannot connect to iTunes ...
0
votes
0answers
89 views

How to stop my reminder alert coming up?

I have written the code for my rate app alert, but have a problem. As the best view for my alert to show up in is my Launch screen. I have set a counter to ensure it does not hassle people. The ...
0
votes
1answer
142 views

VHDL - setting sampling rate for a sensor

Fellow SO users, I'm trying to sample my resistive humidity sensor at a frequency of 5Hz (5 samples a second). I'm using an ADC to read the output. Now, I've been told that you can run the ADC at any ...
0
votes
0answers
105 views

SQL Accrual Challenge

I've got this TSQL view with a join that produces a this select with all Absent days this fiscal: Name, HireDate, StartingVacationDays, StartingSickDays, AbsentType, AbsentStartDate, AbsentDays ...
0
votes
1answer
304 views

Rate and Review within an app take the user to app store thus leave our app - Totaly Undesired

Refering questions URL for sending a user to the app review page on device's app store Rating and reviews from within an IOS app Direct "rate in iTunes" link in my app? All the ...
0
votes
1answer
86 views

Setting Frame Rate? Is this a good idea? [duplicate]

Possible Duplicate: What's the usual way of controlling frame rate? I'm an amateur when it comes to programming, but I wanna ask if this is an efficient way of handling things. Right ...

1 2 3