Tagged Questions

13
votes
10answers
1k views

Why em instead of px?

I heard you should define sizes and distances in your stylesheet with em instead of in pixels. So the question is why should I use em instead of px when defining styles in css? Is …
10
votes
26answers
1k views

Do you use “kibibyte” as a unit of measurement in your programs?

For decades, in the field of computing (except disk manufacturers), a KB (kilobyte) was understood to mean 1024 bytes. In the past few years, there has been a movement to use KiB ( …
5
votes
2answers
133 views

Unit-safe square roots

I just wondered how it is possible to write a user-defined square root function (sqrt) in a way that it interacts properly with F#'s unit system. What it should be like: let sqr …
4
votes
6answers
1k views

Units of measure in C# - almost

Inspired by Units of Measure in F#, and despite asserting (here) that you couldn't do it in C#, I had an idea the other day which I've been playing around with. namespace UnitsOfM …
4
votes
5answers
294 views

What units of measure would you store engineering data in?

In our app, we currently live with the legacy of a decision to store all engineering data in our database in SI. I worry that we may run the risk of not having sufficient precisio …
2
votes
4answers
55 views

Representation of dimension units in a standardized way.

Suppose you want to write into a database that something is 30 meters long, or 50 feet, or the temperature was 50 kelvin, the speed was 50 kilometers per hour. How would you repre …
2
votes
2answers
102 views

F# Ununit - reunit inside a function

This question is closely related to these ones (1, 2, 3) I'm using an external library which doens't (yet) handle units of measure. I want to be able to 'ununit' values before I p …
2
votes
2answers
128 views

F# Units of Measure … Is there an example of TIME?

Is TIME used in F# Units of Measure?
2
votes
2answers
79 views

Built-in storage unit conversions utilty in Java?

Hi, there doesn't seem to be an existing util class for converting a storage unit from one to another in Java, am I right? Or is there one actually I wasn't aware of? What I was …
2
votes
4answers
155 views

Where to do Conversions - Time zones, unit of measure etc.

Where in code should conversions be done? client, server, business, or db? We currently do conversions of timezones and unit of measure in our database and the performance is kill …
1
vote
1answer
70 views

Reusing units of measure across different types

(Yes, still playing with units of measure) I've just started using units of measure for something other than float for the first time. After starting off complicated, I discovere …
1
vote
2answers
159 views

Datatype for unit of measurement in database

For my application I need to keep the prefered unit of measurement of a user. The possible units currently are: Liter (the unit the values in the rest of my database are stored …
1
vote
5answers
761 views

function for converting kilograms to pounds and ounces

I'd like to convert kilos into pounds and ounces e.g. if a user enters 10 kg then the function should return 22 lb and 0.73 oz Any ideas?
1
vote
2answers
203 views

F# Units of measure, problems with genericity

(I'm still banging on with units of measure in F#) I'm having a problem making 'generic' functions which take 'typed' floats. The following mockup class is intended to keep tabs …
1
vote
1answer
101 views

How to generically remove F# Units of measure

I've got some data manipulation code which spits out csv at the end. I started upgrading it to add units of measure everywhere, but I now have a problem with my csv function: val …

1 2 next
15 30 50 per page