data

Financial Market Data for commercial site

Hello, I have to get the following information but from an online api or service. Now before anyone mentions yahoo finance I can't go down that road as this has to be on the up and up. I know google doesn't care about commercial or non-commercial but they don't have all this info. I also looked into YQL however that just uses finance....

problem with nspropertylistserialisation

not getting the data to the array variable NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *path=[documentsDirectory stringByAppendingPathComponent:@"Employees.plist"]; NSData *datas = [NSData dataWithContentsOfFile:path]; ...

How to best store lines in a kd-tree

I know kd-trees are traditionally used to store points, but I want to store lines instead. Would it be best to split the line at every intersection with the splitting of the kd-tree? or would storing just the end-points into kd-suffice for nearest neighbor finding? ...

Data structure for a navigational sequence

I have a Silverlight LOB application that has a page that will need to be visited 4 times before moving on to the next page. I want a data structure to hold a marker to the point in that sequence. I might render a display to show where you are like this: o---●---o---o I tried an enum, but I need to associate each point with small int ...

How to display a table (rows and columns of data) in an iPhone native app?

I want to display a table like the following in an iPhone app ` Recommendations History Current 1 Month Ago 2 Months Ago 3 Months Ago Strong Buy 29 27 27 26 Moderate Buy 5 4 4 4 Hold 3 4 3 3 Modera...

Saving map data in a 2d ORPG

I'm trying to figure out how I can best save the map data for a 2d ORPG engine I am developing, the file would contain tile data (Is it blocked, what actual graphics would it use, and various other properties). I am currently using a binary format but I think this might be a bit too limited and hard to debug, what alternatives are there...

get records from json store extjs

i have a json store loaded , i need to grab one record from it i used ; getAt(index) , find() , getById() , but no results this is my code : var appSettingReader = new Ext.data.JsonReader({ root: 'results', },[ {name: 'id', type: 'int', mapping: 'id'}, {name: 'projetId'...