Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
2k views

What is the different between Normalize.css and Reset CSS?

I know what CSS Reset is, but recently I heard about this new thing called Normalize.css What is the difference between Normalize.css and Reset CSS? What is the difference between normalizing CSS ...
16
votes
6answers
10k views

How can I normalize a URL in python

I'd like to know do I normalize a URL in python. For example, If I have a url string like : "http://www.example.com/foo goo/bar.html" I need a library in python that will transform the extra space ...
14
votes
7answers
402 views

CSS “Normalizer” tool?

I need to maintain & improve an existing website and I am drowning in the redundancy I have discovered in its CSS stylesheet. Given the existing redundancy and non-methodlogical ordering of ...
8
votes
3answers
284 views

Can .NET convert Unicode to ASCII to remove “smart quotes”, etc?

Some of our users use e-mail clients that can't cope with Unicode, even when the encoding, etc. are properly set in the mail headers. I'd like to 'normalise' the content they're receiving. The ...
7
votes
4answers
4k views

Normalizing from [0.5 - 1] to [0 - 1]

I'm kind of stuck here, I guess it's a bit of a brain teaser. If I have numbers in the range between 0.5 to 1 how can I normalize it to be between 0 to 1? Thanks for any help, maybe I'm just a bit ...
5
votes
7answers
321 views

Denormalizing for sanity or performance?

I've started a new project and they have a very normalized database. everything that can be a lookup is stored as the foreign key to the lookup table. this is normalized and fine, but I end up doing ...
3
votes
2answers
98 views

Unusually low floating point accuracy when normalizing a vector

I have a short method in my code to normalize a vector (actually a PCL point) which produces results of low accuracy. The code: void normalize(pcl::PointXYZ::PointXYZ * p){ float nf = ...
3
votes
1answer
237 views

LINQ Normalizing data

I am using an OMS that stores up to three line items per record in the database. Below is an example of an order containing five line items. Order Header Order Detail Prod 1 Prod 2 Prod 3 ...
2
votes
2answers
189 views

Android: sqlite: cursor: getColumnIndex

I've got a fairly complicated query (multiple joins) on a normalized sqlite database. The query does a SELECT * to enable some automated attribute selection logic (so I can't eliminate the "*") The ...
2
votes
2answers
722 views

Normalizing histogram bins in gnuplot

I'm trying to plot a histogram whose bins are normalized by the number of elements in the bin. I'm using the following binwidth=5 bin(x,width)=width*floor(x/width) + binwidth/2.0 plot 'file' using ...
2
votes
2answers
498 views

Removing diacritics in Silverlight (String.Normalize issue)

I did create a function that transforms diacritic characters into non-diacritic characters (based on this post) Here’s the code: Public Function RemoveDiacritics(ByVal searchInString As String) As ...
2
votes
4answers
604 views

How to have normalize data around the average for the column in MATLAB?

I am trying to take a matrix and normalize the values in each cell around the average for that column. By normalize I mean subtract the value in each cell from the mean value in that column i.e. ...
2
votes
2answers
2k views

How can I draw a log-normalized imshow plot with a colorbar representing the raw data in matplotlib

I'm using matplotlib to plot log-normalized images but I would like the original raw image data to be represented in the colorbar rather than the [0-1] interval. I get the feeling there's a more ...
2
votes
2answers
812 views

Normalizing a list of items in MSBuild

I am trying to get a list of all unit test assemblies under the root of my project. I can do this as follows: <CreateItem Include="**\bin\**\*.UnitTest.*.dll"> <Output ...
1
vote
0answers
52 views

Which needs more memory(RAM) in MySQL InnoDB: performing large join, or including extra data in the first table to avoid the need to join

So I've been searching the web exhaustively, looking through blogs w/ benchmarks, the mysql docs, etc. (I've even read through the book "Mysql High Peformance, 2nd Ed."). But I'm still unclear about ...
1
vote
1answer
27 views

How To Normalize Reviews Based On Score

What is the best way to normalize reviews? I.E. lets assume we have products that users can vote from 1-5 stars. Simply taking the average is not a good way, because it does not account for the ...
1
vote
1answer
86 views

Normalizing a vector error in HLSL

I have completely re-written this first post to better show what the problem is. I am using ps v1.4 (highest version I have support for) and keep getting an error. It happens any time I use any type ...
1
vote
1answer
86 views

SQLite: Performance of Rows VS Columns

I have a database table where each row (movie) has a couple of numeric tags (movie categories). Currently I put all these tags in the same column as a string, and search for them using %LIKE%, which ...
1
vote
1answer
204 views

Problem with parsing DOM on Android 2.1

I am Android newbie and I made simple application which reads data from XML RSS feed, and presents it to the user. It works fine on telephone with android 2.2 or greater and on emulator with android ...
1
vote
2answers
207 views

normalized compression distance C code

does anybody knows if there is already a code in C that calculates the NCD (normalized compression distance) for two files or I need to write the code by myself? Thanks in advance!
1
vote
1answer
153 views

svmlib scaling vs. pyml normalization, scaling, and translation

What is the proper way to normalize feature vectors for use in a linear-kernel SVM? Looking at LIBSVM, it looks like it's done by just rescaling each feature to a single standard upper/lower range. ...
1
vote
1answer
97 views

SQL Server views - simulating a table from a normalized source

Alright, so I have a table that I need to store in a database. The table is in the following format: Value | No Deductible | $100 | $250 | $500 | ============================================= ...
1
vote
4answers
518 views

matlab rescale matrix data to -1 to 1 [closed]

Possible Duplicate: MATLAB: how to normalize/denormalize a vector to range [-1;1] Hi, just started using Matlab and I would like to know how to rescale the data in a matrix. I have a matrix ...
1
vote
2answers
111 views

Normalize table

I am wondering how to normalize table like this: field1|field2|field3 text1 |txt2 | 1,2,5 other1|other2| 1,8,7 field1 will repeat many times , field2 is unique(won't repeat) , field 3 - users id. ...
1
vote
1answer
961 views

AVAudioRecorder normalize volume

I've got an app that records audio. I'm wondering how I can increase the gain. is there a way to normalize the audio or amplify it somehow? thanks, howie
1
vote
2answers
144 views

What's wrong with this string normilizer Python snippet?

It seems that every time I think I mastered encoding, I find something new to puzzle me :-) I'm trying to get rid of French accents from an UTF-8 string: >>> import unicodedata ...
1
vote
3answers
549 views

How can I normalize/collapse paths or URLs in Python in OS independent way?

I tried to use os.normpath in order to convert http://example.com/a/b/c/../ to http://example.com/a/b/ but it doesn't work on Windows because it does convert the slash to backslash.
1
vote
1answer
75 views

In xsl, is there a way to next a normalize-space call inside a sum?

I have an XML file that has a number of nodes, each of which contains a <current-fine> node. I need to sum these values but unfortunately they contain white-space so I end up getting NaN as the ...
1
vote
1answer
483 views

How to: select normalized view from denormalized data using CTE?

This is a very standard newbie question, but I am looking for an expert clever way to do this with little code. (I know how to do this long hand, with procedural code and cursors, so we can skip that ...
1
vote
3answers
6k views

Correct way to standardize/scale/normalize multiple variables following power law distribution for use in linear combination

I'd like to combine a few metrics of nodes in a social network graph into a single value for rank ordering the nodes: in_degree + betweenness_centrality = informal_power_index The problem is ...
1
vote
4answers
1k views

Is there an html css normalizer that works?

Long ago, I wrote a style 'normalizer' program to scan the ASP/HTML code of a big pile of classic ASP pages (most of which were originally generated from MS-Word documents, so naturally they were ...
0
votes
0answers
14 views

Normalizing Points of a Contour

How would you guys go about normalizing the points of a contour? I know one method is using the Intersection of a Line and a Circle algorithm, but are there any other methods for doing this? Also, ...
0
votes
3answers
67 views

normalize function renderscript

I am learning android renderscript and currently looking at the carousel example. Here, a function called "normalize" is used many times. For example: float3 eye, float3 center; float3 f = ...
0
votes
3answers
71 views

normalizing matrix in matlab

I have an rgb image matrix (height*width*3) represented in doubles. After some manipulations on the matrix, some values went biger then 1 or smaller then 0. I need to normalize those valuse back to 1 ...
0
votes
1answer
74 views

Function in Python to PHP

Does anyone know how to convert this function from Python to PHP? I have been around it but there is things in Python code I can't figure out. This function is used in the follow context: ...
0
votes
0answers
14 views

Normalize results of Lemur Index query

I'm using the Lemur Index apps to build an index and make some queries. Given a query, each result returned by Lemur has an associated integer value representing the level of accuracy. I'd like to ...
0
votes
0answers
111 views

Normalize 2D output in FFTW and c2r

I have built a spectrum in the frequency domain and want to use the library FFTW and the c2r function for inverse FFT. My dimensions are N x N and my complex array is of size N x (N/2 + 1). I didn't ...
0
votes
1answer
283 views

GLSL Normalize Mouse Input

i'm new in this shader world and just want to try out something. I want to do the following: In a specific radius around the mouse the texture in the background should rotate by 10°. The mouse ...
0
votes
1answer
204 views

How to normalise audio after resampling

I'm thinking of using libsamplerate to resample audio files which seems fairly simple. In the FAQ it states that after resampling that the audio should be normalised which I'm not sure how to do. ...
0
votes
1answer
82 views

Database Design: Defining Access Control

An application I am developing needs to provide access to data based on a list of cities defined for each client. A client can have: access to all cities in a country OR access to all cities in a ...
0
votes
1answer
867 views

C# code snippet calculating the surface and vertex normals

I need a C# code snippet calculating the surface and vertex normals. Kind of surface is triangulated 3D closed mesh. The required code snippet must be able to use a vertex set and triangleindices. ...
0
votes
1answer
396 views

Surface Normals

I have a request about surface normals. At the following code snippet is from the URL : http://www.kindohm.com/technical/wpf3dtutorial.htm private Model3DGroup CreateTriangleModel(Point3D p0, ...
-1
votes
1answer
94 views

Normalizing/unaccenting text in Java

How can I normalize/unaccent text in Java? I am currently using java.text.Normalizer: Normalizer.normalize(str, Normalizer.Form.NFD) .replaceAll("\\p{InCombiningDiacriticalMarks}+", "") But it ...
-4
votes
1answer
98 views

Can you help me normalize these 2 relations? Database Management [closed]

The purpose of this assignment is to normalize two relations - a Employee relation and a Mechanic relation. The first un-normalized relation is presented below. You can assume an employee works in ...