Tagged Questions
The calculate tag has no wiki summary.
13
votes
6answers
4k views
Calculate age in JavaScript
How can I calculate age in years from a date of format YYYYMMDD to today.
Is it possible using the Date() class?
Thank you.
EDIT:
I am looking for a better solution than the one I am using now:
...
7
votes
5answers
3k views
Determine total size of SVN directory/trunk
Is there a way to count/calculate the total size of a svn directory if you were to checkout a revision?
I have limited internet downloads so I need to know how big something is before I go and ...
6
votes
3answers
39k views
How do you get Excel to refresh data on sheet from within VBA?
How do you get spreadsheet data in Excel to recalculate itself from within VBA, without the kluge of just changing a cell value?
5
votes
2answers
3k views
How can I automatically calculate axis scale and intervals?
Does anyone know where I can find an algorithm that given a set of values (dates) for an axis I can calculate a reasonable scale and tick interval?
4
votes
1answer
74 views
calculate which timezones have a specific current local time on PHP
My application needs to send an email to all users at 6:00PM, on their local time.
The server is configured to GMT.
I have a function that is being called at the beginning of each hour.
How do I find ...
3
votes
2answers
60 views
How to restrict a data entry user to work only 8 hours on my website
I have developed a web application for one of my clients, my client requirement is that.
Every data entry user work in his working area only for 6 Hours not more than that. Otherwise he log out when ...
3
votes
6answers
40 views
Calculate Date/Time Difference in Java considering AM/PM
I want to calculate the difference between two date/time in java using Date and Calendar classes. The format that I have is "2012-01-24 12:30:00 PM".
I have implemented my own method and also google ...
3
votes
3answers
563 views
C# - Adding two numbers from a RichTextBox and a TextBox
I have a textbox that the user can input into. Right now the user can enter in anything, but I would like to limit the user.
I first need to only allow numbers from the user that are negative or ...
3
votes
3answers
308 views
Calculating the Ping of a WebSocket Connection?
small question. How can I calculate the ping of a WebSocket connection?
The server is set up using Node.js and node-websocket-server, if that matters at all.
3
votes
4answers
379 views
SQL calculate number of days of residency by month, by user, by location
I'm working on a query for a rehab organization where tenants (client/patients) live in a building when they first arrive, as they progress in their treatment they move to another building and as they ...
3
votes
3answers
173 views
A javascript calculating error?
Let's see this example.
<html>
<body onload="alert((0.1234*300));alert((0.00005*300))"/>
</html>
Why the results are not as should be 37.02 and 0.015 but 37.019999999999996 and ...
3
votes
3answers
659 views
Convert time to decimals in .net
Is there an easy way to present time (hh:mm) as a decimal value?
Example, 01:08 should become 1,13.
I have an asp:textbox masked (ajax) as time with the mask format "99:99". Next to this box I need ...
3
votes
1answer
1k views
How can I get the x/y coordinates of an SVG element(path etc) that does not have the X/Y attributes?
I am trying to get the position of SVG elements using Javascript.
I have managed to get the position on elements that have X/Y attribute set.
But elements, such as paths does not have this attribute.. ...
2
votes
2answers
41 views
Calculate speed per sec and time left of sending a file using sockets tcp c#
how can i calculate the speed per sec .. and .. time left in sec
i've tried to use
void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) {
long prevSum = 0;
while ...
2
votes
3answers
137 views
C double value round up
I have written a programm in C . Mostly, in the output is a point number. If I write "%.2lf" sometimes it round off but I would like that it allways round up. How can I do this?
2
votes
2answers
99 views
R: Calculate the relative distance
I have a dataframe like variable x.
x<-"start.x stop.x strand.x start.y stop.y strand.y
1 16954189 16963562 - 16954189 16963562 -
2 16954189 16963562 - ...
2
votes
3answers
142 views
calculate and replace special numbers in pages (javascript)
I am trying to change format of special numbers in my pages.
Numbers format is similar this: 11,111.00 AUD
And these changes should be applied on them:
Extract clean number from it: (11111)
...
2
votes
4answers
2k views
Javascript Age count from Date of Birth
I'm passing my calendar selected date of birth to following JS function for calculating Age:
var DOBmdy = date.split("-");
Bdate = new Date(DOBmdy[2],DOBmdy[0]-1,DOBmdy[1]);
BDateArr = ...
2
votes
2answers
261 views
How to generate normals for VBO?
I've implemented a wavefront (OBJ) file loader for my OpenGL app which provides me face, texture and vertex information. However, to use lighting I obviously need normal information. I know the ...
2
votes
0answers
415 views
Fail to automatically resize NSTextField under NSView (as menu item)
Greetings to the community, I am an inexperienced user trying to learn via the simple projects creation process... I request your assistance as I have not found a working solution for two whole days ...
2
votes
1answer
509 views
How to using Jquery with click & blur?
I have a form that uses a dash of Jquery to calculate a ticket price by number of tickets needed by cost of ticket. Very basic.
The number of tickets element is a dropdown menu (select) and works by ...
2
votes
1answer
208 views
Help Calculating Invoice
I need help with a calculation:
I need to do this:
Item ---- Qty ( 2 ) --- Rate ( $2 ) = Total ( $4 )
Item ---- Qty ( 3 ) --- Rate ( $3 ) = Total ( $9 )
SUBTOTAL = $13
SALES TAX ...
2
votes
3answers
677 views
Can I wrap each line of multi-line text in a span?
I've been trying to figure out how to do this (if it's even possible) and have drawn a blank...
I have some text that will wrap onto multiple lines. I want to detect each individual line, and wrap it ...
2
votes
2answers
272 views
How do I calculate the magnitude of the velocity of my mouse cursor, in Python?
http://dl.dropbox.com/u/779859/speedCalc_puradata.JPG
I achieved it in pure data, have a look at the schematic of what I'm thinking:
Recieving Midi Control input from ctlin 20 and 21
Pipe delays ...
2
votes
3answers
528 views
php calculate float HELP!
help!! i have weird math calculation here. hope someone will explain.
$a = 1.85/100;
$b = 1.5/100;
$c = 1.1/100;
$d = 0.4/100;
$e = 0.4/100;
$f = 0.4/100;
$g = 0.4/100;
$h = $a + $b + $c + $d + $e + ...
2
votes
1answer
58 views
What webservices are available to obtain miles between two addresses?
I need to find a way to get miles (not a straight line) between two locations by passing the post addresses.
If you consider the simplicity of implementation, efficiency and stability, which ...
2
votes
3answers
113 views
Calculate Javascript not working on PC, but works on Mac. Can someone point out the error?
I have a small javascript pricing calculation that is not working on a friend's PC, but it works fine on my Mac. I'm guessing it's a semi-colon or something small that's not in the correct spot? ...
2
votes
2answers
713 views
Sum values by year with MySQL/PHP
I've got a minor problem with a database admin page that I use to update values and totals in a MySQL database for generating various figures and data for a website.
A bit of background - the ...
2
votes
4answers
779 views
Calculate time between time-1 to time-2?
enter time-1 // eg 01:12
enter time-2 // eg 18:59
calculate: time-1 to time-2 / 12
// i.e time between 01:12 to 18:59 divided by 12
How can it be done in Python. I'm a beginner so I really have no ...
2
votes
2answers
464 views
How to calculate difference of two fields on form submit Ruby on Rails
I am new to Ruby on Rails and have been using Scaffolding. On one of the forms I want to be able to have two fields and then have the difference between the two submitted to the database.
Instead of ...
1
vote
2answers
43 views
jQuery calculate width, and apply width to desired container
I am attempting to calculate the viewport width, and then subtract a value from that then apply the result to the desired container. I've found some examples that are close and managed to cobble ...
1
vote
2answers
56 views
PHP calculation based on the array values
I'm trying to create a calculation based on the values of the array - imagine the following array:
$values = array(9, +, 10, *, 7)
I thought about the following approach:
$result = ...
1
vote
1answer
500 views
JQgrid total amount row
iv seen an example by @Oleg for row total sum in jqgrid but i tried to apply it and it wont work i have the following grid i need to calculate the amount value for it.
colNames: ['ID', 'FTE', ...
1
vote
1answer
54 views
MDX for calculating measure given equality of 2 member attributes from 2 different dimensions
I have the following structure of measures and dimensions, and some example data
Fact Table:
id_dim1 id_dim2 id_dim ...measure1
1 2 ...120
2 1 ...101
1 1 ...95
3 3 ...12
Dim1:
id_dim1 ...
1
vote
2answers
134 views
How to calculate values from input type=“text” and select element with jquery?
How do I calculate fields in a form with both input type and select element with jQuery?
For example
<input class="days" type="text" name="txt"/>
<select class="roomtype">
<option ...
1
vote
2answers
217 views
File age in Java
I need to find the age of a file based on its name. Alle the files keep to a naming convention like this: DD-MM-YYYY.
I can make a program to come up with the filenames based on how many days/months ...
1
vote
3answers
374 views
Calculate column width
I'm currently working on a tiny cms to improve my php knowledge and now I'm at a point where I don't know how to continue.
I'd to be able to set a container to a percentage of the total avaiable ...
1
vote
1answer
80 views
Iphone, calculating area within an image
Starting a new app and before i get to it would like to know your thoughts... What's the best way to go about calculating image areas.... lets say i have a square 100 X 100 pixels and it has another ...
1
vote
3answers
488 views
Comparing times and times operations in Java
Hello
I wanna create app that has different behaviors if it is morning, noon, afternoon, evening.
Now i wanna set some variables with the time for each
For example noon = 12:00
Now i wanna compare ...
1
vote
2answers
139 views
PDF Calculating the Height & Width of a drawed image
My program reads PDF files and needs to know which size (in user space units) an image drawed to a page has.
Can someone help me with the following example?
MediaBox = [0 0 612 792] (Page size in ...
1
vote
3answers
170 views
Calculation of two fields in ASP.NET (Visual Basic)
I have two money fields in a SQL database called TotalClaimed and PartialSettlementAmountRecd.
They are declared as Decimals like so:
Public PartialSettlementAmountRecd As Decimal
Public ...
1
vote
1answer
266 views
SINGLE Invoice for 2 or more orders in magento
It is possible to make an invoice for 2 or more orders at the end of the month? I can see only to option to make invoice for every order.
If not, I'm looking for an extension to calculate the total ...
1
vote
2answers
344 views
Calculate width of div within viewport
I need to calculate the width of a div within the viewport. If i use .css(width) on my div, it just calculates the complete width.
My current code for trying to calculate:
var $Windowwidth = ...
1
vote
1answer
299 views
How to calculate percentage of “equal or better” in mysql DB?
Figuring out a title for this question was hard, but the following is harder for me. I hope anyone can help.
I have a simple MySQL database table. This table is filled with records containing an ID ...
1
vote
2answers
765 views
Android: Time calculations, how to add a specified amount of minutes
I'd like to add 15 minutes to Time Object, so that 09:46 would become 10:01.
Time time = new Time();
time.hours = 9;
time.minutes = 46;
time.minute += 15;
This doesn't work... :-/
1
vote
3answers
295 views
Calculate median for each subject with update on ties?
I have data which looks like this (this is test data for illustration):
test <- matrix(c(1, 1, 1, 2, 2, 2 , 529, 528, 528, 495, 525, 510,557, 535, 313,502,474, 487 ), nr=6, ...
1
vote
2answers
676 views
calculate in struts 2 tag?
I have an iterate and i want to calculate sum of the values like this :
<s:iterator value="myValues" status="myStatus">
<s:property value="value" />
</s:iterator>
...
1
vote
2answers
213 views
calucating the total of the price field in an array
( [0] => Array
( [0] => Array (
[0] => Array ( [price] => 76 )
[1] => Array ( [price] => 200 )
[2] => Array ( [price] => 500 )
[3] => Array ( [price] => 67 )
...
1
vote
3answers
768 views
jQuery: Count children of several elements and calculate
I'm making a website for a restaurant, where they want to make "room" in the menu, by starting the numbering with the following "5".
Example:
Starter
1.
2.
Salads
5.
6.
7.
8.
9.
10.
11.
Pizza
15.
...
1
vote
3answers
641 views
Calculating total width of all list items?
I have a standard UL as follows:
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
<li><a ...