Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
16k views

Percentage width in a RelativeLayout

I am working on a form layout for a Login Activity in my Android App. The image below is how I want it to look like: I was able to achieve this layout with the following XML. The problem is, it's a ...
13
votes
4answers
769 views

What are the advantages of using ems instead of % in CSS?

I understand the advantages of using ems in favor of static measurements like pixels and points, but why do most of the CSS people out there (SO excepted) prefer using ems instead of % values? ...
11
votes
5answers
8k views

CSS: Setting width/height as Percentage minus pixels

I've seen this question asked in a couple other contexts on SO, but I thought it would be worth asking again for my particular case. I'm trying to create some re-usable CSS classes for more ...
10
votes
4answers
847 views

jQuery positioning differences between Chrome(webkit) and Firefox

While working on a jQuery UI range slider, I was mainly debugging in chrome. I needed to make the range have a limit so I would grab the left position of one of the handles like so: $el.css('left'); ...
8
votes
2answers
5k views

SQL Server: Appropriate datatype for holding percent values?

What is the best datatype for holding percent values ranging from 0.00% to 100.00%?
7
votes
1answer
48 views

complicated mysql query issue

i want to show in my dashboard the top 5 product, on each product i want to show the total of order, views and the percentage of where that product is based on others ex: Game 1 for Xbox (200 orders ...
7
votes
4answers
4k views

What should be the best way to store a percent value in SQL-Server?

I want to store a value that represents a percent in SQL server, what data type should be the prefered one?
6
votes
3answers
128 views

How can I return the numerical boxplot data of all results using 1 mySQL query?

[tbl_votes] - id <!-- unique id of the vote) --> - item_id <!-- vote belongs to item <id> --> - vote <!-- number 1-10 --> Of course we can fix this by getting: the smallest ...
6
votes
3answers
166 views

Retrieving percentage CSS values (in firefox)

I have a problem retrieving the exact css property value (in '%') on firefox. Suppose we have this extremely simple markup: <div id="box">box</div> and this css: #box{ ...
5
votes
5answers
342 views

Percentage width for fixed elements?

I have html like this: <div id='content'> <div id='first'>...</div> <div id='second'>...</div> </div> #content { width:100%; position:relative; ...
5
votes
3answers
971 views

number to percentage in JavaScript

Give me a native (no jQuery, Prototype, etc. please) JavaScript function that converts numbers as follows: input: 0.39, 2.5, 4.25, 5.5, 6.75, 7.75, 8.5 output: 0.39, 2.50, 4.25, 5.50, 6.75, 7.75, ...
5
votes
7answers
3k views

Console based progress in Java

Is there are easy way to implement a rolling percentage for a process in Java, to be displayed in the console? I have a percentage data type (double) I generated during a particular process, but can I ...
5
votes
5answers
883 views

Increment, decrement by percentage

I'll try to explain this problem the best way i can with code: double power = 5000; //picked up 5 power ups, now need to increase power by 10% per powerup power += 5 * (power * .10); //later ...
5
votes
13answers
4k views

Limiting certain processes to CPU % - Linux

I have the following problem: some processes, generated dynamically, have a tendency to eat 100% of CPU. I would like to limit all the process matching some criterion (e.g. process name) to a certain ...
4
votes
3answers
61 views

Function that returns, dynamically, how much code has been executed?

I want to do a 'loading screen' that reflects exactly what percentage of my code has executed. I know that is how: distributing 'flags' by the code, and these flags would assume the value of the ...
4
votes
5answers
1k views

javascript: calculate x% of a number

I am wondering how in javascript if i was given a number (say 10000) and then was given a percentage (say 35.8%) how would I work out how much that is (eg 3580)
4
votes
4answers
799 views

CSS: How does Width work as a percentage?

I'm having what I think is a weird problem. I have one div, inside a parent div, and I'm giving the child div a width of 100%, but it's not growing to the size of the parent div. The parent div does ...
4
votes
7answers
2k views

What's the best way to create a percentage value from two integers in C#?

I have two integers that I want to divide to get a percentage. This is what I have right now: int mappedItems = someList.Count(x => x.Value != null); int totalItems = someList.Count(); ...
4
votes
1answer
3k views

Format decimal for percentage values?

What I want is something like this: String.Format("Value: {0:%%}.", 0.8526) Where %% is that format provider or whatever I am looking for. Should result: Value: %85.26.. I basically need it for ...
4
votes
6answers
7k views

C++ What does the percentage sign mean?

I got this c++ macro and wonder what they mean by code%2 (the percentage sign) ? #define SHUFFLE_STATEMENT_2(code, A, B) switch (code%2) { case 0 : A; B; break; case 1 : B; A; break; }
4
votes
8answers
6k views

How to format a number as percentage without the percentage sign?

How do I in .NET format a number as percentage without showing the percentage sign? If I have the number 0.13 and use the format string {0:P0} the output is 13 %. However I would like to get 13 ...
4
votes
4answers
1k views

Algorithm to keep a list of percentages to add up to 100%

(code examples are python) Lets assume we have a list of percentages that add up to 100: mylist = [2.0, 7.0, 12.0, 35.0, 21.0, 23.0] Some values of mylist may be changed, others must stay fixed. ...
3
votes
1answer
71 views

How to get a percentage of an array?

I'm wondering how to get a determined percentage of an array. Let's say: $array = array ("I","am","not","a","professional","coder","so","please","help","me"); It's composed of ten values. I'd ...
3
votes
4answers
119 views

How to convert character of percentage into numeric in R

I run into a problem when converting character of percentage to numeric. E.g. I want to convert "10%" into 10%, but as.numeric("10%") returns NA. Do you have any ideas?
3
votes
2answers
123 views

Efficient assignment of percentile/rank in MYSQL

I have a couple of very large tables (over 400,000 rows) that look like the following: +---------+--------+---------------+ | ID | M1 | M1_Percentile | +---------+--------+---------------+ | ...
3
votes
1answer
201 views

web page elements overlapping each other even when using percentage values in css

i have a page with structure like this. i want to divide the page into 6 sections so i have made 6 outer divs. <div id="header"> <img /> </div> <div id="pageTitle"> title ...
3
votes
2answers
281 views

How can I center using percentages?

As an experiment, I've been trying to center a DIV in a BODY tag using percentages in CSS. I think I had it figured out at one point, but thanks to the magic of TopStyle not having a history once you ...
3
votes
1answer
158 views

Percentage in a single SQL query

I currently have two almost identical SQL queries, which I use against my SQLITE3 database. Find total count of matching records. SELECT COUNT(runner.id) FROM entry JOIN runner ON runner.entry_id = ...
3
votes
1answer
261 views

Extract ZipFile using Python, display Progress Percentage?

I know how to extract a zip archive using Python, but how exactly do I display the progress of that extraction in a percentage?
3
votes
3answers
517 views

Using jQuery to create bar graphs based on user comments

I am still learning jQuery and have come up against something I just can't get my head around? (I'm not great at math!). I know that there is probably a graph type plug-in out there I could use but I ...
3
votes
2answers
7k views

CSS Div width percentage and padding without breaking layout

There may be a simple fix for this, but it has troubled me for ages now... Let me explain the situation. I have a div with the ID 'container' that holds all the contents in the page (including ...
3
votes
5answers
402 views

C#: Storing percentages, 50 or 0.50?

When holding percentage values in variables is there a preference between holding them as whole numbers vs fractions. That is should the variable hold numbers between 0 and 100 or between 0.00 and ...
3
votes
3answers
185 views

Generating a random number but with a twist

I need to generate a random number. But the twist is that the % of lower numbers should be greater than the higher. For example. rand > 1 to 100 13, 15, 12, 16, 87, 15, 27, 12, 1, 12, 98, 12, 53, ...
3
votes
3answers
88 views

When selecting an amount of rows, how can I select a percentage of a percentage?

Fairly simple question: Say I want to use 30 percent of the rows in the table of my MySQL table. However I also have a user input where they can select a percentage of that percentage For example: ...
3
votes
5answers
2k views

Is there a django template filter to display percentages?

I would like something similar to the string formatting from the standard library. '%' Percentage. Multiplies the number by 100 and displays in fixed ('f') format, followed by a percent sign. ...
3
votes
3answers
580 views

How to get the current view size for an image in Delphi 2009

I wish to get the current size for an image being displayed with TImage, this object has the Proportional property set to True and is aligned to Client with main form. So, when resizing the form I ...
2
votes
2answers
47 views

password with percentage symbol always wrong iPhone

I'm developing an iPhone application in Xcode with a login function and I'm having trouble with the following code: NSString *post = [NSString ...
2
votes
3answers
38 views

php sql drop rate system

This question might seem a bit bizarre, but... I run a mafia style game site scripted in PHP. When players do crimes, theres a chance they'll get a 'drop', lets say a new weapon. How I have it ...
2
votes
1answer
102 views

Using percentage values to fill flexbox items

I use flexboxes in Google Chrome (only this browser has to be supported) to create a dynamic layout. I've got n child elements in one div element which should share the whole space with all the same ...
2
votes
1answer
55 views

How can I normalize units from CSSStyleDeclaration object?

I was working on a project transitioning the left CSS property of an element, which was defined as a percentage (e.g. 100% to 0%). I was developing in Chrome which was giving me style values for left ...
2
votes
1answer
152 views

Chrome css percentage problem

The problem is simple, webkit (or at least chrome) handle some percentage value badly. For example if I have an overall div with a width of 450px, if I had it two child with a width value of 7.117% ...
2
votes
3answers
190 views

Percentage properties in MVC 3

My application has many models, many of which contain percentage data. These are represented as decimal or decimal? structs in the model. However, not all properties with decimal structs are ...
2
votes
2answers
219 views

How to select count as a percentage over the total in Oracle using any Oracle function?

I have an SQL statement that counts over the total number of rows active packages whose end date is null. I am currently doing this using (x/y) * 100: SELECT (SELECT COUNT(*) FROM ...
2
votes
3answers
201 views

IE (bug) percentages with background-position

I'm having an issue in IE only with a background image for an element in a flexible/fluid layout. Basically, I need the background image (which is 1px by 1px) to tile vertically. When the layout is ...
2
votes
2answers
114 views

Refer to same input multiple times in string replacement?

I need to print something like this "a=name1,b=name2,c=name1,d=name2" While I have name1 and name2 in variable n1 n2 n1="name1" n2="name2" what I am trying to do "a=%s,b=%s,c=%s,d=%s" % ...
2
votes
4answers
211 views

apply() and calcuating proportion of first row for all dataframe rows

I have a dataframe as shown below listing the number of injuries by vehicle type: > trqldnum <- ...
2
votes
2answers
697 views

Android string-array display Percent Sign

I have a string-array in my strings.xml file that has multiple items in it. Only one of the items has multiple percetage "%" symbols that needs to be displayed. Seems none of the advice on how to ...
2
votes
2answers
237 views

Calculating transaction fees in Java

Lets say you have website that keeps balance for each user. You give each user option to deposit money into their balance from PayPal, Amazon FPS, Authorize.NET eCheck and Credit Card and maybe couple ...
2
votes
1answer
250 views

PHP Levenshtein Percentages

Can you explain why I need to use both the input string and the matching string when determining the levenshtein percentage? $str1len = strlen($str1); $str2len = strlen($str2); ...
2
votes
3answers
73 views

What is a good term for a percent (2%) being stored as 0.02 in a database? [closed]

I want to store 2% in a database as 0.02. This column was going to be called percent_off, but now I'm just wondering if math provides a better term for it. Any ideas?

1 2 3 4 5